forked from josmo/cfn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.32 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
{
"name": "cfn",
"version": "0.14.0",
"description": "Simple Cloud Formation for Node.js",
"main": "index.js",
"scripts": {
"test": "node node_modules/.bin/xo",
"tape": "node test | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nordstrom/cfn.git"
},
"files": [
"index.js",
"LICENSE",
"package.json",
"README.md"
],
"xo": {
"space": 4,
"rules": {
"max-lines": [
"warn",
400
],
"babel/object-curly-spacing": [
"error",
"always"
],
"one-var": "off",
"operator-linebreak": [
"error",
"before"
]
}
},
"keywords": [
"Cloud",
"Formation",
"CloudFormation",
"Cloud-Formation",
"Node.js",
"Stack",
"Deploy"
],
"author": "Andy Day",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nordstrom/cfn/issues"
},
"homepage": "https://github.com/Nordstrom/cfn#readme",
"dependencies": {
"aws-sdk": "^2.4.0",
"bluebird": "^3.4.1",
"chalk": "^1.1.3",
"https-proxy-agent": "^1.0.0",
"lodash": "^4.13.1",
"moment": "^2.13.0",
"sprintf": "^0.1.5"
},
"devDependencies": {
"blue-tape": "^0.2.0",
"tap-json": "^1.0.0",
"tap-spec": "^4.1.1",
"tap-xunit": "^1.4.0",
"xo": "^0.16.0"
}
}