-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
39 lines (39 loc) · 2.33 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
{
"name": "organizations-infra",
"version": "1.0.0",
"description": "Reference landing zone based on org-formation and AWS best practices.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"print-tasks": "npx org-formation print-tasks ./org-formation/_tasks.yaml --verbose --print-stack --output yaml --max-concurrent-stacks 100 --max-concurrent-tasks 100",
"print-tasks-failfast": "npx org-formation print-tasks ./org-formation/_tasks.yaml --verbose --print-stack --output yaml --max-concurrent-stacks 1 --max-concurrent-tasks 1 --failed-tasks-tolerance 1 --failed-stacks-tolerance 1",
"perform-tasks": "npx org-formation perform-tasks ./org-formation/_tasks.yaml --verbose --print-stack --max-concurrent-stacks 1 --max-concurrent-tasks 1",
"ci-perform-tasks": "npx org-formation perform-tasks ./org-formation/_tasks.yaml --verbose --print-stack --max-concurrent-stacks 1 --max-concurrent-tasks 1 --perform-cleanup",
"ci-perform-tasks-parallel": "npx org-formation perform-tasks ./org-formation/_tasks.yaml --verbose --print-stack --max-concurrent-stacks 10 --max-concurrent-tasks 10 --perform-cleanup",
"validate-tasks": "npx org-formation validate-tasks ./org-formation/_tasks.yaml --verbose --print-stack --failed-tasks-tolerance 0 --max-concurrent-stacks 100 --max-concurrent-tasks 100",
"cfn-lint": "cfn-lint ./.printed-stacks/**/*.yaml -i W2001,E3001,E1019,W1020,W2509,E3021",
"generate-cdk-bootstrap-template": "npx cdk bootstrap --json --show-template > org-formation/200-baseline/tmptemplate.json",
"patch-cdk-bootstrap-template": "jq '.Resources.FileAssetsBucketEncryptionKey.Properties += {\"EnableKeyRotation\" :true}' org-formation/200-baseline/tmptemplate.json > org-formation/200-baseline/cdk-bootstrap.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sage-Bionetworks-IT/organizations-infra.git"
},
"keywords": [
"org-formation",
"control-tower",
"landing-zone",
"aws",
"dev-ops"
],
"author": "Sage-Bionetworks",
"license": "Apache2",
"bugs": {
"url": "https://github.com/Sage-Bionetworks-IT/organizations-infra/issues"
},
"homepage": "https://github.com/Sage-Bionetworks-IT/organizations-infra.git/README.md",
"dependencies": {
"aws-organization-formation": "^1.0.3",
"aws-cdk": "^2.151.0"
}
}