forked from org-formation/org-formation-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.24 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
{
"name": "aws-organization-formation",
"version": "0.9.15-beta.7",
"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": {
"org-formation": "dist/cli.js",
"ofn": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/OlafConijn/AwsOrganizationFormation.git"
},
"author": "Olaf Conijn",
"license": "MIT",
"dependencies": {
"@types/rc": "^1.1.0",
"archiver": "^3.1.1",
"aws-sdk": "^2.786.0",
"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",
"rc": "^1.2.8",
"uuid": "^3.3.3",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@jurijzahn8019/aws-promise-jest-mock": "^2.2.0",
"@types/archiver": "^3.0.0",
"@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/node": "^12.7.4",
"@types/sinon": "^7.0.13",
"@types/uuid": "^3.4.5",
"@types/yamljs": "^0.2.30",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"@zerollup/ts-transform-paths": "^1.7.12",
"aws-sdk-mock": "^5.0.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prefer-arrow": "^1.1.7",
"jest": "^26.6.3",
"pre-commit": "^1.2.2",
"sinon": "^7.4.1",
"ts-jest": "^26.1.3",
"ts-node": "^8.6.2",
"ttypescript": "^1.5.10",
"typescript": "^3.8.3"
},
"keywords": [
"AWS",
"CloudFormation",
"ControlTower",
"StackSets",
"tool"
]
}