forked from org-formation/org-formation-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.29 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "aws-organization-formation",
"version": "1.0.17-beta.2",
"description": "Infrastructure as code solution for AWS Organizations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"pre-commit": [
"lint"
],
"scripts": {
"build": "npx ttsc",
"prepublishOnly": "npm run build",
"lint": "npx eslint './src/**/*.ts'",
"lint:fix": "npx eslint --fix './src/**/*.ts'",
"test": "npm run test:unit",
"test:unit": "npx jest 'unit-test'",
"test:ci": "npm run test:unit -- --ci --collect-coverage",
"test:integration": "npx jest --runInBand 'integration-test'",
"start": "npx --quiet ts-node cli.ts",
"start:debug": "node --inspect -r ts-node/register cli.ts"
},
"files": [
"dist/*",
"resources/*"
],
"bin": {
"aws-organization-formation": "dist/cli.js",
"org-formation": "dist/cli.js",
"ofn": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/org-formation/org-formation-cli.git"
},
"author": "Olaf Conijn",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.637.0",
"@aws-sdk/client-ec2": "^3.637.0",
"@aws-sdk/client-eventbridge": "^3.637.0",
"@aws-sdk/client-iam": "^3.637.0",
"@aws-sdk/client-organizations": "^3.638.0",
"@aws-sdk/client-s3": "^3.637.0",
"@aws-sdk/client-signer": "^3.637.0",
"@aws-sdk/client-sts": "^3.637.0",
"@aws-sdk/client-support": "^3.637.0",
"@aws-sdk/credential-provider-ini": "^3.637.0",
"@aws-sdk/credential-provider-node": "^3.637.0",
"@aws-sdk/credential-providers": "^3.637.0",
"@aws-sdk/lib-storage": "^3.637.0",
"@aws-sdk/middleware-sdk-s3": "^3.635.0",
"@aws-sdk/middleware-signing": "^3.620.0",
"@smithy/property-provider": "^3.1.3",
"@smithy/types": "^3.3.0",
"archiver": "^5.3.1",
"commander": "^2.20.0",
"ini": "^1.3.5",
"js-yaml": "^4.0.0",
"md5": "^2.2.1",
"md5-file": "^4.0.0",
"memory-streams": "^0.1.3",
"node-fetch": "^2.6.1",
"nunjucks": "^3.2.3",
"pascal-case": "^3.1.2",
"rc": "^1.2.8",
"tmp": "^0.2.1",
"unzipper": "^0.10.11",
"uuid": "^8.3.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/commander": "^2.12.2",
"@types/ini": "^1.3.30",
"@types/jest": "^25.1.0",
"@types/js-yaml": "^4.0.0",
"@types/md5": "^2.1.33",
"@types/minimatch": "5.1.2",
"@types/node": "18.17.14",
"@types/node-fetch": "^2.5.8",
"@types/nunjucks": "^3.1.4",
"@types/rc": "^1.1.0",
"@types/sinon": "^7.0.13",
"@types/tmp": "^0.2.1",
"@types/unzipper": "^0.10.3",
"@types/uuid": "^8.3.1",
"@types/yamljs": "^0.2.30",
"@typescript-eslint/eslint-plugin": "^4",
"@typescript-eslint/parser": "^4",
"@zerollup/ts-transform-paths": "^1.7.12",
"aws-sdk-client-mock": "^3.0.0",
"aws-sdk-client-mock-jest": "^3.0.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prefer-arrow": "^1.1.7",
"jest": "^29.7.0",
"pre-commit": "^1.2.2",
"sinon": "^14.0.0",
"ts-jest": "^29.2.5",
"ts-mockito": "2.6.1",
"ts-node": "^10.9.1",
"ttypescript": "^1.5.10",
"typescript": "~4.4"
},
"keywords": [
"AWS",
"CloudFormation",
"ControlTower",
"StackSets",
"tool"
]
}