-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.76 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
{
"name": "secure-default-vpc-security-group-cdk",
"version": "3.1.0",
"description": "Secure a default security group created for a VPC using CDK",
"scripts": {
"test": "jest",
"tsc": "tsc",
"clean": "rm -rf build/",
"compile": "npm run clean && npm run -- tsc --outDir build/ && (cd provider && npm ci && npm run compile) && 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 '*.ts' 'test/**/*.ts' jest.config.js --fix",
"lint-check": "eslint '*.ts' 'test/**/*.ts' jest.config.js --max-warnings 0",
"lint-all": "npm run lint && (cd provider && npm run lint)",
"lint-check-all": "npm run lint-check && (cd provider && npm run lint-check)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isotoma/secure-default-vpc-security-group-cdk.git"
},
"author": "Isotoma Limited",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/isotoma/secure-default-vpc-security-group-cdk/issues"
},
"homepage": "https://github.com/isotoma/secure-default-vpc-security-group-cdk#readme",
"peerDependencies": {
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.53",
"@types/node": "^14.0.10",
"@types/jest": "^24.0.0",
"@typescript-eslint/eslint-plugin": "4.8.2",
"@typescript-eslint/parser": "4.8.2",
"auto-changelog": "^1.16.2",
"aws-cdk-lib": "^2.15.0",
"constructs": "^10.0.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-prettier": "3.1.2",
"jest": "^26.0.1",
"prettier": "1.19.1",
"ts-jest": "^26.0.0",
"typescript": "^3.9.3"
}
}