forked from mvasigh/dispatch-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 856 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
{
"name": "dispatch-action",
"version": "1.1.6",
"main": "index.js",
"repository": "https://github.com/mvasigh/dispatch-action.git",
"author": "Mehdi Vasigh <[email protected]>",
"license": "MIT",
"scripts": {
"build": "ncc build ./src/index.js -o dist",
"build:commit": "yarn build && git add -A && git commit -m \"generate build\" ",
"test:watch": "jest --watch",
"test": "jest --collect-coverage",
"push": "./push.sh"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^2.1.1"
},
"devDependencies": {
"@zeit/ncc": "^0.21.1",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.9.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}