-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "config-builder",
"version": "3.0.1",
"description": "Build static, environment-specific configurations for your app.",
"main": "index.js",
"bin": "./bin/config-builder.js",
"scripts": {
"test": "nyc --check-coverage 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 <[email protected]>",
"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": "^2.1.7",
"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.4.5",
"nyc": "^14.1.1",
"tap-spec": "^5.0.0",
"tape": "^4.2.0"
}
}