-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 KB
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
{
"name": "aws-resources2",
"type": "commonjs",
"version": "1.0.8",
"description": "Helper for creating resources in CloudFormation templates",
"exports": {
".": {
"require": "./build/index.js",
"import": "./build/index.js"
}
},
"files": [
"build/*"
],
"types": "build/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node build/apps/npm.run.start.js"
},
"author": "Peter Szombati",
"license": "MIT",
"devDependencies": {
"@types/chai": "4.3.11",
"@types/jest": "29.5.11",
"@types/mocha": "10.0.6",
"typescript": "4.8.4",
"@aws-sdk/client-cloudformation": "^3.513.0",
"aws-sdk": "2.1390.0",
"chai": "5.0.0",
"mocha": "10.2.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"yaml": "2.3.4"
},
"dependencies": {
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterszombati/aws-resources2.git"
},
"bugs": {
"url": "https://github.com/peterszombati/aws-resources2/issues"
},
"homepage": "https://github.com/peterszombati/aws-resources2#readme",
"keywords": [
"aws",
"cloudformation",
"infrastructure-as-code",
"iac"
]
}