-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.49 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
{
"name": "aws-fms-automations",
"version": "2.0.0",
"description": "AWS Firewall Manager Automations for AWS Organizations",
"scripts": {
"docs": "./node_modules/typedoc/bin/typedoc --out docs --name \"AWS Firewall Manager Automations for AWS Organizations\"",
"lint": "./node_modules/eslint/bin/eslint.js . --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:complianceGenerator": "cd source/services/complianceGenerator && npm run build:all",
"build": "npm run build:helper && npm run build:policyManager && npm run build:prereqManager && npm run build:metricsManager && npm run build:complianceGenerator",
"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": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"typedoc": "0.20.36",
"typedoc-plugin-no-inherit": "1.3.0",
"typescript": "^4.2.2"
}
}