forked from sbstjn/serverless-sqs-alarms-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "serverless-sqs-alarms-plugin",
"description": "Serverless plugin to to configure CloudWatch alarms for SQS queues",
"main": "src/plugin.js",
"version": "0.0.0",
"author": "Sebastian Müller <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest test",
"test:cover": "jest test --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "standard | snazzy"
},
"repository": {
"type": "git",
"url": "https://github.com/sbstjn/serverless-sqs-alarms-plugin.git"
},
"bugs": {
"url": "https://github.com/sbstjn/serverless-sqs-alarms-plugin/issues"
},
"homepage": "https://github.com/sbstjn/serverless-sqs-alarms-plugin",
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"coveralls": "^2.13.0",
"dot-json": "^1.0.3",
"jest": "^19.0.2",
"snazzy": "^6.0.0",
"standard": "^9.0.2"
},
"standard": {
"envs": [
"node",
"jest"
],
"ignore": [
"node_modules/",
"coverage"
]
}
}