forked from IBM-Cloud/node-config-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 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
{
"name": "config-builder",
"version": "3.0.0",
"description": "Build static, environment-specific configurations for your app.",
"main": "index.js",
"bin": "./bin/config-builder.js",
"scripts": {
"test": "tape test/**/*.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ibm-bluemix/node-config-builder.git"
},
"keywords": [
"config",
"configuration",
"properties"
],
"author": "Matt Hamann <mhamann@us.ibm.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ibm-bluemix/node-config-builder/issues"
},
"homepage": "https://github.com/ibm-bluemix/node-config-builder#readme",
"dependencies": {
"cliui": "^2.1.0",
"debug": "^2.2.0",
"graphlib": "^1.0.4",
"lodash.assign": "^3.2.0",
"lodash.omit": "^3.1.0",
"nconf": "^0.7.1",
"properties": "^1.2.1",
"traverse": "^0.6.6",
"window-size": "^0.1.2"
},
"devDependencies": {
"istanbul": "^0.3.15",
"tap-spec": "^4.1.0",
"tape": "^4.2.0"
}
}