forked from widdix/cfn-create-or-update
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 807 Bytes
/
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
{
"name": "cfn-create-or-update",
"version": "1.5.0",
"description": "Create or update CloudFormation stack also if no updates are to be performed.",
"keywords": [
"AWS",
"CloudFormation",
"cfn"
],
"bin": {
"cfn-create-or-update": "./cli.js"
},
"main": "index.js",
"scripts": {
"test": "make test"
},
"author": "Michael Wittig <michael@widdix.de>",
"license": "MIT",
"dependencies": {
"aws-sdk": "2.333.0",
"inquirer": "6.2.0",
"yargs": "12.0.2",
"assert-plus": "1.0.0",
"proxy-agent": "3.0.3"
},
"devDependencies": {
"mocha": "5.2.0",
"jshint": "2.9.6",
"istanbul": "0.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/widdix/cfn-create-or-update.git"
},
"engines": {
"node": ">=6"
}
}