-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 732 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 732 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
{
"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 test",
"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": {
"lodash": "^4.17.14"
},
"devDependencies": {
"aws-sdk": "^2.463.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-lodash": "^2.7.0",
"eslint-plugin-promise": "^4.1.1",
"jest": "^24.8.0"
}
}