-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.31 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
{
"name": "serverless-plugin-diff",
"version": "3.0.0",
"description": "Plugin for Serverless Framework v3.x which compares your local AWS CloudFormation templates against deployed ones.",
"main": "lib/index.js",
"scripts": {
"pretest": "eslint .",
"test": "jest"
},
"author": "Nick den Engelsman",
"maintainers": [
{
"email": "[email protected]",
"name": "Nick den Engelsman"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nicka/serverless-plugin-diff"
},
"homepage": "https://github.com/nicka/serverless-plugin-diff",
"keywords": [
"aws",
"diff",
"plugin",
"serverless"
],
"dependencies": {
"aws-sdk": "^2.6.15",
"fs-promise": "^0.5.0",
"json-diff": "^0.7.3"
},
"devDependencies": {
"aws-sdk-mock": "^1.5.0",
"coveralls": "^2.11.14",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1"
},
"peerDependencies": {
"serverless": "^2.60 || 3"
},
"jest": {
"bail": true,
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"roots": ["test"],
"verbose": true
}
}