forked from medikoo/serverless-plugin-vpc-eni-cleanup
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
{
"name": "serverless-plugin-vpc-eni-cleanup",
"version": "1.0.0",
"description": "Cleanup lambda VPS EC2 Network Interfaces on stack removal, to speed up the operation",
"author": "Mariusz Nowak <[email protected]> (http://www.medikoo.com/)",
"keywords": [
"serverless",
"plugin",
"lamdba",
"vpc",
"eni",
"network"
],
"repository": {
"type": "git",
"url": "git://github.com/medikoo/serverless-plugin-vpc-eni-cleanup.git"
},
"dependencies": {
"aws-sdk": "^2.140",
"bluebird": "^3.5.1",
"d": "1"
},
"devDependencies": {
"es5-ext": "^0.10.35",
"eslint": "^4.9",
"eslint-config-medikoo": "^1.28",
"event-emitter": "^0.3.5",
"istanbul": "^0.4.5",
"proxyquire": "^1.8",
"sinon": "^4.0.2",
"tape": "^4.8",
"tape-index": "^1.1"
},
"peerDependencies": {
"serverless": "1"
},
"eslintConfig": {
"extends": "medikoo",
"root": true,
"env": {
"node": true
}
},
"scripts": {
"coverage": "istanbul cover test/index.js",
"check-coverage": "npm run coverage && istanbul check-coverage --statements 100 --function 100 --branches 100 --lines 100",
"lint": "eslint --ignore-path=.gitignore .",
"test": "node test/index.js"
},
"license": "MIT"
}