-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.4 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@someimportantcompany/github-actions-slack-message",
"version": "1.3.0",
"description": "Send messages to Slack from GitHub Actions.",
"main": "index.dist.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"lint": "eslint .",
"test": "nyc mocha",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"author": "James D <james@jdrydn.com> (https://jdrydn.com)",
"license": "MIT",
"repository": "https://github.com/someimportantcompany/github-actions-slack-message",
"bugs": "https://github.com/someimportantcompany/github-actions-slack-message/issues",
"keywords": [
"github",
"actions",
"slack",
"message"
],
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"axios": "^1.2.0",
"debug": "^4.3.4"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"eslint": "^8.28.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-sort-requires": "^2.1.0",
"mocha": "^10.1.0",
"nock": "^13.2.9",
"nyc": "^15.1.0",
"rewire": "^6.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0"
},
"engines": {
"node": ">=10",
"npm": ">=6"
},
"mocha": {
"exit": true,
"spec": [
"./*.test.js"
],
"ui": "bdd"
},
"nyc": {
"exclude": [
"*.test.js"
],
"reporter": [
"lcov",
"text"
]
}
}