forked from archive/github-actions-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 983 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
{
"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",
"build-legacy": "NODE_OPTIONS=--openssl-legacy-provider 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.34.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.1.2",
"prettier": "^2.7.1"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
}
}