forked from shapirov103/eks-blueprints-extension
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 986 Bytes
/
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
{
"name": "@snyk-partners/snyk-monitor-eks-blueprints-addon",
"version": "0.0.0-semantic-release",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"eks-ssp-patterns": "bin/main.ts"
},
"scripts": {
"build": "rm -rf dist; node node_modules/.bin/tsc; node node_modules/.bin/copyfiles lib/**/*.yaml dist/ -u 1",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "16.11.27",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"copyfiles": "^2.4.1",
"eslint": "^8.20.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "~4.7.4"
},
"peerDependencies": {
"@aws-quickstart/eks-blueprints": "1.1.0",
"source-map-support": "^0.5.21",
"aws-cdk": "2.33.0"
},
"publishConfig": {
"access": "public"
}
}