-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
64 lines (64 loc) · 1.58 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "serverless-plugin-canary-deployments",
"engines": {
"node": ">=4.0"
},
"version": "0.8.0",
"description": "A Serverless plugin to implement canary deployment of Lambda functions",
"main": "serverless-plugin-canary-deployments.js",
"scripts": {
"test": "npm run lint && NODE_ENV=test ./node_modules/mocha/bin/mocha $(find ./ -name '*.test.js' -not -path '.*/node_modules/*')",
"watch": "NODE_ENV=test ./node_modules/mocha/bin/mocha -w $(find ./ -name '*.test.js' -not -path '*/node_modules/*')",
"lint": "standard"
},
"author": "David García <davidgf1987@gmail.com>",
"contributors": [
"Carlos Castellanos <me@carloscastellanosvera.com> (https://github.com/ccverak/)",
"Kartikeya Verma <kverma23@outlook.com> (https://github.com/kverma23/)"
],
"license": "ISC",
"repository": {
"url": "https://github.com/davidgf/serverless-plugin-canary-deployments.git",
"type": "git"
},
"dependencies": {
"flat": "^4.1.0",
"lodash": "^4.17.20",
"omit-empty": "^0.4.1"
},
"devDependencies": {
"chai": "^4.2.0",
"get-installed-path": "^4.0.8",
"husky": "^3.0.1",
"mocha": "^8.2.1",
"serverless": "^2.22.0",
"standard": "*"
},
"peerDependencies": {
"serverless": ">= 1.26.0"
},
"keywords": [
"aws",
"lambda",
"serverless",
"canary",
"gradual",
"deployments"
],
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"standard": {
"globals": [
"describe",
"context",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
}
}