-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.05 KB
/
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
29
30
31
32
33
34
35
36
37
{
"name": "notify-slack-on-build",
"version": "0.0.0",
"private": true,
"description": "A GitHub Action to notify a Slack channel on a successful project build.",
"main": "dist/index.js",
"scripts": {
"package": "ncc build src/index.ts --source-map",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datadesk/notify-slack-on-build.git"
},
"keywords": [
"github-action",
"deployments",
"datagraphics"
],
"author": "Ryan Murphy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/datadesk/notify-slack-on-build/issues"
},
"homepage": "https://github.com/datadesk/notify-slack-on-build#readme",
"dependencies": {},
"devDependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@datagraphics/prettier-config": "^2.0.0",
"@slack/web-api": "^5.14.0",
"@zeit/ncc": "^0.22.3",
"prettier": "^2.2.1",
"typescript": "^4.1.2"
},
"prettier": "@datagraphics/prettier-config"
}