forked from stevemac007/aws-to-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 959 Bytes
/
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
{
"name": "aws-to-slack",
"version": "1.3.0",
"description": "Forward AWS Notification Messages to Slack",
"main": "src/index.js",
"engines": {
"node": ">=10.16.3"
},
"scripts": {
"test": "jest --ci --reporters=default --reporters=jest-junit",
"watch": "jest test --watch",
"lint": "eslint . --ext .jsx --ext .js || exit 0"
},
"author": "Andre Rabold",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/arabold/aws-to-slack.git"
},
"dependencies": {
"aws-sdk": "^2.463.0",
"jest-junit": "^16.0.0",
"lodash": "^4.17.21",
"test": "^3.3.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-lodash": "^2.7.0",
"eslint-plugin-promise": "^4.1.1",
"jest": "^29.3.1"
},
"jest-junit": {
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}