-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.34 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
{
"name": "aws-centralized-waf-and-sg-management",
"version": "1.0.0",
"description": "AWS Centralized WAF and VPC Security Group Management",
"scripts": {
"docs": "./node_modules/typedoc/bin/typedoc --out docs --name \"AWS Centralized WAF & Security Group Management\"",
"lint": "eslint . --ext .ts",
"prettier-format": "./node_modules/prettier/bin-prettier.js --config .prettierrc.yml '**/*.ts' --write",
"build:helper": "cd source/services/helper && npm run build:all",
"build:policyManager": "cd source/services/policyManager && npm run build:all",
"build:prereqManager": "cd source/services/preReqManager && npm run build:all",
"build:metricsManager": "cd source/services/metricsManager && npm run build:all",
"build": "npm run build:helper && npm run build:policyManager && npm run build:prereqManager && npm run build:metricsManager",
"test": "cd ./deployment && chmod +x run-unit-tests.sh && ./run-unit-tests.sh"
},
"author": "aws-solutions",
"license": "Apache-2.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5",
"typedoc": "^0.18.0",
"typedoc-plugin-no-inherit": "^1.1.10",
"typescript": "^4.0.2"
}
}