forked from nicka/serverless-plugin-diff
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 1.88 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.15",
"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.133.0",
"@aws-cdk/cloudformation-diff": "^2.133.0",
"@aws-sdk/client-cloudformation": "^3.537.0",
"chalk": "^4.1.2",
"jsonpath-plus": "^8.1.0"
},
"devDependencies": {
"@jest/globals": "^29.5.12",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"aws-sdk-client-mock": "^4.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"memfs": "^4.8.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3",
"typescript-formatter": "^7.2.2"
},
"peerDependencies": {
"serverless": "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
}
}