-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.37 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
{
"author": "Richard Hurt",
"bin": {
"cfn-build": "./scripts/build.js",
"cfn-diff": "./scripts/diff.js",
"cfn-watch": "./scripts/watch.js",
"cfn-sync": "./scripts/sync.js",
"cfn-changeSet": "./scripts/changeSet.js",
"cfn-refresh": "./scripts/refresh.js"
},
"bugs": {
"url": "https://github.com/rnhurt/cfn-builder/issues"
},
"dependencies": {
"async": "^2.6.3",
"aws-sdk": "^2.610.0",
"cli-table3": "^0.5.1",
"colors": "^1.4.0",
"fs-extra": "^7.0.1",
"glob": "^7.1.6",
"handlebars": "^4.7.2",
"install": "^0.12.2",
"json-stringify-pretty-compact": "^2.0.0",
"jsondiffpatch": "^0.3.11",
"md5": "^2.2.1",
"prompts": "^2.3.0",
"semaphore": "^1.1.0",
"swag": "^0.7.0",
"uglify-js": "^3.7.6",
"yargs": "^13.3.0"
},
"description": "A command line application that builds AWS CloudFormation templates our of JSON 'blueprints'.",
"homepage": "https://github.com/rnhurt/cfn-builder",
"keywords": [
"CloudFormation",
"AWS",
"Template",
"Blueprint"
],
"license": "MIT",
"name": "cfn-builder",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/rnhurt/cfn-builder.git"
},
"version": "0.14.0",
"scripts": {
"test": "yarn run lint",
"lint": "eslint lib scripts/*.js"
},
"devDependencies": {
"eslint": "^5.15.1"
}
}