-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
100 lines (100 loc) · 2.4 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
98
99
100
{
"name": "kes",
"version": "2.2.8",
"description": "Making deployment to AWS using CloudFormation easier and fun",
"scripts": {
"html-docs": "documentation build bin/cli.js -f html -o _docs --theme node_modules/documentation-devseed-theme",
"md-docs": "documentation build bin/readme.js -f md -o docs/README.md && documentation build src/** -f md -o docs/API.md",
"integration-test": "ava tests/test.integration.js",
"test": "ava tests/test.src.js"
},
"bin": {
"kes": "./bin/cli.js"
},
"keywords": [
"CloudFormation",
"AWS"
],
"engines": {
"node": ">=4.3"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true
},
"extends": "standard",
"rules": {
"semi": [
2,
"always"
],
"space-before-function-paren": "off",
"spaced-comment": "off",
"no-extra-semi": 2,
"brace-style": [
"error",
"stroustrup"
],
"semi-spacing": [
2,
{
"before": false,
"after": true
}
]
}
},
"ava": {
"files": [
"tests"
],
"source": [
"**/*.js",
"package.json"
]
},
"repository": "https://github.com/developmentseed/kes",
"author": "Alireza Jazayeri <[email protected]>",
"license": "MIT",
"dependencies": {
"archiver": "^2.1.0",
"aws-sdk": "^2.14.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"deprecate": "^1.0.0",
"dotenv": "^4.0.0",
"fs-extra": "^2.0.0",
"handlebars": "^4.0.6",
"inquirer": "^5.2.0",
"js-yaml": "^3.8.1",
"lodash.capitalize": "^4.2.1",
"lodash.get": "^4.4.2",
"lodash.has": "^4.5.2",
"lodash.merge": "^4.6.0",
"lodash.replace": "^4.1.4",
"lodash.startswith": "^4.2.1",
"lodash.trim": "^4.5.1",
"lodash.upperfirst": "^4.3.1",
"lodash.values": "^4.3.0",
"moment": "^2.19.4",
"mustache": "^2.3.0",
"node-forge": "^0.7.1",
"p-limit": "^1.2.0",
"p-retry": "^2.0.0",
"prompt": "^1.0.0",
"yaml-files": "^0.1.0"
},
"devDependencies": {
"ava": "^0.21.0",
"documentation": "~5.2.2",
"documentation-devseed-theme": "^0.1.6",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"github-slugger": "^1.2.0"
}
}