-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
97 lines (97 loc) · 2.94 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
{
"name": "@jcoreio/cloudformation-tools",
"version": "0.0.0-development",
"description": "Tools to generate CloudFormation templates and launch stacks",
"type": "commonjs",
"modules.root": "es",
"sideEffects": false,
"scripts": {
"tc": "toolchain",
"toolchain": "toolchain",
"test": "toolchain test",
"prepublishOnly": "echo This package is meant to be published by semantic-release from the dist build directory. && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/jcoreio/cloudformation-tools.git"
},
"keywords": [
"aws",
"cloudformation"
],
"author": "Jason McLaurin",
"license": "MIT",
"bugs": {
"url": "https://github.com/jcoreio/cloudformation-tools/issues"
},
"homepage": "https://github.com/jcoreio/cloudformation-tools#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/node": "^7.19.1",
"@babel/plugin-proposal-async-generator-functions": "^7.19.1",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"@jcoreio/eslint-plugin-implicit-dependencies": "^1.1.1",
"@jcoreio/toolchain": "^4.5.5",
"@jcoreio/toolchain-circle": "^4.5.5",
"@jcoreio/toolchain-esnext": "^4.5.5",
"@jcoreio/toolchain-mocha": "^4.5.5",
"@jcoreio/toolchain-semantic-release": "^4.5.5",
"@jcoreio/toolchain-typescript": "^4.5.5",
"@types/chai": "^4.0.0",
"@types/fs-extra": "^9.0.0",
"@types/inquirer": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/verror": "^1.10.10",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"chai": "^4.3.7",
"copy": "^0.3.2",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"mocha": "^10.2.0",
"rimraf": "^3.0.2",
"strip-ansi": "^6.0.0",
"typescript": "^5.1.0"
},
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.734.0",
"@aws-sdk/client-ec2": "^3.737.0",
"@aws-sdk/client-ecr": "^3.734.0",
"@aws-sdk/client-iam": "^3.734.0",
"@aws-sdk/client-route-53": "^3.734.0",
"@aws-sdk/client-s3": "^3.735.0",
"@aws-sdk/credential-providers": "^3.734.0",
"@aws-sdk/lib-storage": "^3.735.0",
"@babel/runtime": "^7.19.0",
"@jcoreio/cloudformation-template-types": "^1.3.1",
"@smithy/util-waiter": "^4.0.2",
"@types/node": "^18.7.22",
"ansi-escapes": "^4.0.0",
"chalk": "^4.0.0",
"fs-extra": "^10.1.0",
"inquirer": "^8.0.0",
"promisify-child-process": "^4.1.1",
"table": "^6.8.0",
"verror": "^1.10.1",
"waait": "^1.0.5"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
},
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]"
}