forked from Telefonica/node-merge-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.65 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
{
"name": "merge-config",
"description": "Merge multiple configuration sources: JSON files and environment properties",
"version": "2.0.0",
"license": "Apache-2.0",
"author": {
"name": "Jorge Lorenzo Gallardo",
"email": "[email protected]"
},
"contributors": [
"Juan Antonio Hernando Labajo <[email protected]>",
"Guido García Bernardo <[email protected]>"
],
"repository": {
"type": "git",
"url": "[email protected]:telefonica/node-merge-config.git"
},
"main": "lib/configuration",
"engines": {
"node": ">= 0.10.26"
},
"scripts": {
"test": "mocha -R spec test/environment.js test/unit/*-test.js",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R dot test/environment.js test/unit/*-test.js",
"lint": "jscs lib && eslint lib",
"prepublish": "npm run test && npm run lint",
"travis": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec test/environment.js test/*-test.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"devDependencies": {
"chai": "^3.0.0",
"coveralls": "^2.11.2",
"istanbul": "^0.3.16",
"mocha": "^2.2.5",
"proxyquire": "^1.5.0",
"should": "^7.0.1",
"sinon": "~1.15.3",
"sinon-chai": "^2.8.0",
"supertest": "^1.0.1",
"xunit-file": "^0.0.4",
"jscs": "^1.13.1",
"eslint": "^0.23.0"
},
"dependencies": {
"change-case": "^2.2.0",
"yargs": "^4.1.0",
"hjson": "^1.6.1",
"js-yaml": "3.5.3",
"therror": "^0.2.0",
"lodash": "^4.5.0"
},
"keywords": [
"configuration"
]
}