-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.16 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.16 KB
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
{
"name": "slack-test",
"version": "1.0.0",
"description": "",
"engines": {
"node": ">=18.19"
},
"main": "lib/deploy.index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"package:deploy": "NODE_OPTIONS=--openssl-legacy-provider ncc build lib/deploy.index.js -o dist/deploy",
"package:slack": "NODE_OPTIONS=--openssl-legacy-provider ncc build lib/slack.index.js -o dist/slack",
"build:package:all": "npm run build && npm run package:deploy && npm run package:slack",
"test": "jest",
"all": "npm run test && npm run build && npm run format && npm run package:deploy && npm run package:slack",
"prepare": "cd .. && husky install slack-javascript-action/.husky"
},
"author": "",
"license": "ISC",
"dependencies": {
"@actions/artifact": "^2.2.1",
"@actions/core": "^1.11.1",
"axios": "^1.6.0",
"intl": "^1.2.5"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.11.0",
"@vercel/ncc": "^0.31.1",
"axios-mock-adapter": "^1.21.2",
"husky": "^8.0.3",
"jest": "^29.7",
"prettier": "2.5.1",
"ts-jest": "^29.1",
"typescript": "^4.6.4"
}
}