forked from archive/github-actions-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 894 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
{
"name": "github-actions-slack",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:archive/github-actions-slack.git",
"license": "MIT",
"scripts": {
"lint": "./node_modules/.bin/eslint --fix *.js",
"build": "ncc build index.js -o dist",
"test": "jest src --config=jest.config.js",
"test-debug": "node --inspect-brk node_modules/.bin/jest --runInBand src --config=jest.config.js",
"deploy-wip": "rm -f dist/index.js && yarn build && git ac wip && git push",
"deploy": "rm -f dist/index.js && yarn build && git ac build && git push"
},
"devDependencies": {
"@vercel/ncc": "^0.31.1",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.0.3",
"prettier": "^2.3.0"
},
"dependencies": {
"@actions/core": "^1.3.0",
"@actions/github": "^5.0.0"
}
}