forked from mozilla/node-convict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.57 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
55
56
57
58
59
60
61
{
"author": "Lloyd Hilaiel <lloyd@hilaiel.com> (http://lloyd.io)",
"name": "convict",
"description": "Unruly configuration management for nodejs",
"version": "1.0.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.1",
"depd": "1.0.1",
"moment": "2.10.6",
"optimist": "0.6.1",
"validator": "3.43.0",
"varify": "0.1.1"
},
"devDependencies": {
"blanket": "1.1.7",
"coveralls": "2.11.3",
"jshint": "2.8.0",
"mocha": "2.2.5",
"mocha-lcov-reporter": "0.0.2",
"must": "0.12.0",
"obj_diff": "0.3.0"
},
"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",
"pretest": "npm run lint",
"test": "mocha --check-leaks -R spec",
"pretest-coverage": "npm run lint",
"test-coverage": "mocha --check-leaks --require blanket -R html-cov > test/coverage.html",
"pretest-travis": "npm run lint",
"test-travis": "mocha --check-leaks --require blanket -R mocha-lcov-reporter | coveralls",
"clean": "rm -rf test/coverage.html"
},
"config": {
"blanket": {
"pattern": "lib/convict.js"
}
},
"bugs": "https://github.com/mozilla/node-convict/issues",
"license": "Apache-2.0",
"browserify": {
"transform": [
"varify"
]
}
}