-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1019 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1019 Bytes
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
{
"name": "node-config-loader",
"version": "1.0.1",
"description": "Simplifies loading environment specific configuration",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha index.tests.js test-data/load-from-config-folder/index.js",
"coverage": "node_modules/.bin/istanbul cover -x 'test-data/**' -x '*.tests.js' node_modules/mocha/bin/_mocha -- index.tests.js test-data/load-from-config-folder/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukeulrich/node-config-loader.git"
},
"keywords": [
"node",
"config",
"environment"
],
"author": "Luke Ulrich <lukeulrich@users.noreply.github.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukeulrich/node-config-loader/issues"
},
"homepage": "https://github.com/lukeulrich/node-config-loader#readme",
"dependencies": {
"lodash.merge": "^4.6.0"
},
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.2"
}
}