-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
46 lines (46 loc) · 2.18 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
{
"name": "aws-fms-automations",
"version": "2.1.2",
"description": "Automations for AWS Firewall Manager",
"scripts": {
"docs": "./node_modules/typedoc/bin/typedoc --out docs --name \"Automations for AWS Firewall Manager\"",
"lint": "./node_modules/eslint/bin/eslint.js . --ext .ts",
"prettier-format": "./node_modules/prettier/bin-prettier.js --config .prettierrc.yml '**/*.ts' --write",
"build:utilsLayer": "cd source/services/utilsLayer && npm run build:all",
"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:complianceGenerator": "cd source/services/complianceGenerator && npm run build:all",
"build:configEvalManager": "cd source/services/shieldAutomations/configEvalManager && npm run build:all",
"build:configRemediateManager": "cd source/services/shieldAutomations/configRemediateManager && npm run build:all",
"build:shieldLayer": "cd source/services/shieldAutomations/shieldLayer && npm run build:all",
"build:shield": "npm run build:configEvalManager && npm run build:configRemediateManager && npm run build:shieldLayer",
"build": "npm run build:utilsLayer && npm run build:helper && npm run build:policyManager && npm run build:prereqManager && npm run && npm run build:complianceGenerator && npm run build:shield",
"test": "cd ./deployment && chmod +x run-unit-tests.sh && ./run-unit-tests.sh"
},
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com/solutions"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"typedoc": "^0.22.13",
"typedoc-plugin-no-inherit": "1.3.0",
"typescript": "^4.2.2",
"@aws-sdk/client-s3": "^3.359.0"
},
"overrides": {
"word-wrap": "1.2.4",
"fast-xml-parser": ">=4.4.1"
},
"resolutions": {
"word-wrap": "1.2.4"
}
}