-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.44 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
{
"name": "@someimportantcompany/github-actions-slack-message",
"version": "1.3.0",
"description": "Send messages to Slack from GitHub Actions.",
"private": true,
"scripts": {
"build": "esbuild index.js --outfile=index.dist.js --bundle --minify --platform=node --target=node16 '--define:process.env.NODE_ENV=\"production\"'",
"lint": "eslint .",
"test": "nyc mocha",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"author": "jdrydn <[email protected]> (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"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"esbuild": "^0.17.10",
"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"
},
"engines": {
"node": ">=18",
"npm": ">=8"
},
"mocha": {
"exit": true,
"spec": [
"./*.test.js"
],
"ui": "bdd"
},
"nyc": {
"exclude": [
"*.test.js"
],
"reporter": [
"lcov",
"text"
]
}
}