forked from AndrewChubatiuk/serverless-diff-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.89 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "serverless-diff-plugin",
"version": "0.0.10",
"description": "Plugin for Serverless Framework v3.x which compares your local AWS CloudFormation templates against deployed ones.",
"main": "dist/lib/index.js",
"files": [
"dist",
"lib"
],
"scripts": {
"build": "tsc --project .",
"fmt": "tsfmt",
"lint": "eslint .",
"test": "jest"
},
"author": "Andrew Chubatiuk",
"maintainers": [
{
"email": "[email protected]",
"name": "Andrew Chubatiuk"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AndrewChubatiuk/serverless-diff-plugin"
},
"homepage": "https://github.com/AndrewChubatiuk/serverless-diff-plugin",
"keywords": [
"aws",
"diff",
"plugin",
"serverless"
],
"dependencies": {
"@aws-cdk/cloud-assembly-schema": "^2.53.0",
"@aws-cdk/cloudformation-diff": "^2.53.0",
"@aws-sdk/client-cloudformation": "^3.231.0",
"chalk": "^4.1.0",
"jsonpath-plus": "^7.2.0"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"aws-sdk-client-mock": "^2.0.1",
"coveralls": "^3.1.1",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"jest-extended": "^3.2.0",
"memfs": "^3.4.12",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"typescript-formatter": "^7.2.2"
},
"peerDependencies": {
"serverless": "^2.60 || 3"
},
"jest": {
"bail": true,
"collectCoverage": true,
"setupFilesAfterEnv": [
"jest-extended/all"
],
"coverageThreshold": {
"global": {
"branches": 85,
"functions": 85,
"lines": 85,
"statements": 85
}
},
"roots": [
"test",
"lib"
],
"preset": "ts-jest",
"verbose": true
}
}