-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.5 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.5 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
{
"name": "kit-deploymentizer",
"version": "0.0.0-semantic-release",
"description": "This will be a docker image that will intelligently build deployment files as to allow reusability of environment variables and other forms of configuration. It will also support aggregating these deployments for multiple clusters. In the end, it will generate a list of clusters and a list of deployment files for each of these clusters.",
"repository": {
"type": "git",
"url": "git://github.com/InVisionApp/kit-deploymentizer"
},
"author": "Chesley Brown <chesley@invisionapp.com>",
"contributors": [
{
"name": "Chuck Freitas",
"email": "chuck@invisionapp.com"
}
],
"license": "proprietary",
"bugs": {
"url": "https://github.com/InVisionApp/kit-deploymentizer/issues"
},
"homepage": "https://github.com/InVisionApp/kit-deploymentizer",
"main": "./src/index.js",
"bin": "./src/deploymentizer",
"scripts": {
"test-unit": "mocha --recursive test/unit",
"test-functional": "mocha --recursive test/functional",
"test": "mocha --recursive test",
"lint": "eslint src test"
},
"dependencies": {
"bluebird": "3.2.2",
"commander": "2.9.0",
"fs-extra": "0.30.0",
"glob-promise": "1.0.6",
"js-yaml": "3.5.2",
"lodash": "4.3.0",
"log4js": "0.6.33",
"mustache": "2.2.1",
"request-promise": "3.0.0"
},
"devDependencies": {
"chai": "3.5.0",
"mocha": "2.4.5",
"sinon": "1.17.6"
},
"files": [
"LICENSE",
"src"
]
}