-
Notifications
You must be signed in to change notification settings - Fork 31
/
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.38.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.4"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
}
}