-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 742 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 742 Bytes
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
{
"name": "action-slacker",
"version": "1.0.0",
"description": "send slack notification with advanced message format",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"package": "ncc build index.js -o dist",
"test": "eslint index.js && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cemkiy/action-slacker.git"
},
"keywords": [
"GitHub",
"Actions",
"Slack"
],
"author": "GitHub",
"license": "MIT",
"homepage": "https://github.com/cemkiy/action-slacker#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"slack-notify": "^0.1.7"
},
"devDependencies": {
"@zeit/ncc": "^0.20.5",
"eslint": "^6.3.0",
"jest": "^24.9.0"
}
}