-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 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
39
40
41
42
43
44
45
46
{
"name": "@indentinc/github-action-slack-notify",
"version": "0.0.0",
"private": true,
"description": "You can notify Slack of the completion of GitHub Actions.",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build lib/main.js --minify --out lib/action",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"publish": "npm run build && npm prune --production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indentinc/github-action-slack-notify.git"
},
"keywords": [
"actions",
"node",
"setup",
"chat",
"slack"
],
"author": "indentinc",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.0",
"@actions/github": "^1.0.0",
"@actions/io": "^1.0.0",
"@actions/tool-cache": "^1.0.0",
"@slack/webhook": "^5.0.1",
"semver": "^6.1.1"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"@types/semver": "^6.0.0",
"@zeit/ncc": "^0.20.5",
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
}
}