-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.44 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.44 KB
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-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": "nickdenengelsman@gmail.com",
"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-cdk/cloud-assembly-schema": "^2.53.0",
"@aws-cdk/cloudformation-diff": "^2.53.0",
"aws-sdk": "^2.1273.0",
"chalk": "^4.1.0",
"fs-extra": "^11.1.0",
"jsonpath-plus": "^7.2.0"
},
"devDependencies": {
"aws-sdk-mock": "^5.8.0",
"coveralls": "^3.1.1",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.3.1"
},
"peerDependencies": {
"serverless": "^2.60 || 3"
},
"jest": {
"bail": true,
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
},
"roots": [
"test"
],
"verbose": true
}
}