-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 2.06 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
{
"name": "eks-nodegroup-asg-tags-cdk",
"version": "1.2.0",
"description": "To apply tags to the ASG for an EKS nodegroup",
"license": "MIT",
"author": {
"name": "Isotoma Limited",
"email": "[email protected]",
"url": "https://isotoma.com"
},
"repository": {
"type": "git",
"url": "https://github.com/isotoma/eks-nodegroup-asg-tags-cdk"
},
"keywords": [
"aws",
"cdk",
"eks",
"nodegroup",
"asg",
"tags"
],
"scripts": {
"test": "jest",
"tsc": "tsc",
"clean": "rm -rf build/",
"compile": "npm run clean && npm run -- tsc --outDir build/ && npm run compile-provider && cp -R ./provider/build/ ./build/provider/ && cp package.json README.md ./build/",
"version": "auto-changelog --template ./changelog_template.hbs -p && git add CHANGELOG.md",
"_lint": "eslint 'index.ts' 'test/**/*.ts' 'provider/**/*.ts' jest.config.js",
"lint": "npm run -- _lint --fix",
"lint-check": "npm run -- _lint --max-warnings 0",
"clean-provider": "rm -rf provider/build/",
"compile-provider": "npm run clean-provider && npx esbuild --platform=node --target=node18 --minify-syntax --external:aws-sdk --bundle --outdir=./provider/build ./provider/index.ts"
},
"peerDependencies": {
"aws-cdk-lib": "^2.51.0",
"constructs": "^10.0.0"
},
"devDependencies": {
"@aws-sdk/client-auto-scaling": "^3.576.0",
"@aws-sdk/client-eks": "^3.576.0",
"@types/jest": "^24.0.0",
"@types/node": ">=10",
"@typescript-eslint/eslint-plugin": "5.50.0",
"@typescript-eslint/parser": "5.50.0",
"auto-changelog": "^1.16.2",
"aws-cdk-lib": "^2.51.0",
"constructs": "^10.0.0",
"esbuild": "^0.17.5",
"eslint": "8.33.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "~29.3.1",
"prettier": "2.8.3",
"ts-jest": "29.0.3",
"typescript": "^4.9.0"
}
}