-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
{
"name": "node-config-manager",
"version": "2.1.2",
"description": "A configuration manager for NodeJS. It helps you to organize your project and the different configurations of your environments.",
"author": "Damien Picard <[email protected]> (https://github.com/valko54)",
"contributors": [
{
"name": "Laurine Schuster",
"email": "[email protected]",
"url": "https://github.com/lsr57"
},
{
"name": "Antoine Detante",
"email": "[email protected]",
"url": "https://github.com/adetante"
}
],
"scripts": {
"pretest": "./node_modules/jshint/bin/jshint .",
"test": "NODE_ENV='test' ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha test",
"test-on-travis": "NODE_ENV='test' ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha test && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Valko54/node-config-manager"
},
"bugs": {
"url": "https://github.com/Valko54/node-config-manager/issues"
},
"keywords": [
"util",
"config",
"environment",
"manager"
],
"dependencies": {
"debug": "4.1.1",
"js-yaml": "3.13.1"
},
"devDependencies": {
"coveralls": "3.0.11",
"chai": "4.2.0",
"mocha": "7.1.1",
"mocha-lcov-reporter": "1.3.0",
"istanbul": "0.4.5",
"jshint": "2.11.0",
"rewire": "5.0.0"
},
"license": "MIT"
}