forked from mozilla/node-convict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.42 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
{
"author": "Lloyd Hilaiel <[email protected]> (http://lloyd.io)",
"name": "convict",
"description": "Unruly configuration management for nodejs",
"version": "0.6.1",
"homepage": "https://github.com/mozilla/node-convict",
"repository": {
"type": "git",
"url": "https://github.com/mozilla/node-convict.git"
},
"main": "lib/convict.js",
"engines": {
"node": ">=0.4.7"
},
"dependencies": {
"cjson": "0.3.0",
"depd": "1.0.0",
"moment": "2.8.4",
"optimist": "0.6.1",
"validator": "3.26.0"
},
"devDependencies": {
"istanbul": "0.3.5",
"jshint": "2.5.11",
"mocha": "2.0.1",
"must": "0.12.0",
"obj_diff": "0.3.0",
"should": "4.4.1"
},
"jshintConfig": {
"unused": "vars",
"undef": true,
"node": true,
"esnext": true,
"mocha": true
},
"scripts": {
"lint": "jshint *.json lib/*.js test/*.js test/cases/*.js test/cases/*.json",
"test": "jshint *.json lib/*.js test/*.js test/cases/*.js test/cases/*.json && mocha --check-leaks -R spec",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
},
"bugs": "https://github.com/mozilla/node-convict/issues",
"licenses": {
"type": "Apache",
"url": "https://raw.github.com/mozilla/node-convict/master/LICENSE"
}
}