forked from chinatti/serverless-plugin-aws-alerts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 924 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 924 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
33
34
35
36
37
38
39
40
41
{
"name": "serverless-plugin-aws-alerts",
"version": "1.4.0",
"description": "",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"url": "https://github.com/ACloudGuru/serverless-plugin-aws-alerts.git",
"type": "git"
},
"author": "John McKim <[email protected]>",
"license": "MIT",
"peerDependencies": {
"serverless": "^1.12.0"
},
"dependencies": {
"lodash": "^4.17.10"
},
"devDependencies": {
"coveralls": "^2.11.16",
"eslint": "^4.7.1",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-node": "^4.0.0",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-standard": "^2.0.1",
"jest": "^19.0.2"
},
"engines": {
"node": ">=6.10.0"
},
"jest": {
"testMatch": [
"<rootDir>/src/**/*.test.js"
]
}
}