forked from arduino/create-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 985 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "create-changelog",
"version": "1.2.2",
"private": true,
"description": "Action to generate a changelog from a Git repository commit history.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"check": "prettier --check **/*.ts",
"pack": "ncc build --license LICENSE",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arduino/create-changelog"
},
"keywords": [
"actions",
"changelog"
],
"author": "Arduino",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.10",
"@vercel/ncc": "^0.25.1",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"node": "^12.19.1",
"prettier": "^2.2.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2",
"uuid": "^8.3.1"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/io": "^1.0.2"
}
}