-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.38 KB
/
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
42
43
44
45
46
47
48
49
50
51
{
"name": "chlgr-action",
"version": "1.0.0",
"description": "Github Action that creates a changelog and provides the content via pull requests to be merged for a release",
"main": "index.js",
"scripts": {
"build": "ncc build index.js",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"lint": "eslint '**/*.js'",
"prettier": "prettier --write **/*.js",
"gendocs": "node helper/update-readme.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrickjahns/chlgr.git"
},
"author": "Patrick Jahns <[email protected]> (https://github.com/patrickjahns)",
"license": "MIT",
"bugs": {
"url": "https://github.com/patrickjahns/chlgr/issues"
},
"homepage": "https://github.com/patrickjahns/chlgr#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^2.2.0",
"@octokit/webhooks": "^10.2.0"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "27.5.1",
"lint-staged": "13.0.3",
"nock": "13.2.9",
"nodemon": "2.0.15",
"prettier": "2.7.1"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
}
}