forked from ugputu18/node-convict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.49 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
{
"author": "Lloyd Hilaiel <[email protected]> (http://lloyd.io)",
"name": "convict",
"description": "Unruly configuration management for Node.js",
"keywords": [
"configuration",
"key value store",
"schema",
"nested",
"validation"
],
"version": "1.1.2",
"license": "Apache-2.0",
"homepage": "https://github.com/mozilla/node-convict",
"repository": {
"type": "git",
"url": "https://github.com/mozilla/node-convict.git"
},
"bugs": "https://github.com/mozilla/node-convict/issues",
"engines": {
"node": ">=0.4.7"
},
"scripts": {
"test": "mocha --check-leaks -R spec",
"posttest": "npm run lint",
"test:coverage": "istanbul cover _mocha -- --check-leaks test/*-tests.js",
"posttest:coverage": "npm run lint",
"test:ci": "istanbul cover _mocha -- --check-leaks test/*-tests.js && cat test/coverage/lcov.info | coveralls",
"posttest:ci": "npm run lint",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"clean": "rm -rf test/coverage",
"version": "./changelog_assert_entries $npm_package_version"
},
"files": [
"lib"
],
"main": "lib/convict.js",
"dependencies": {
"depd": "1.1.0",
"moment": ">=2.18.1",
"validator": "4.6.1"
},
"devDependencies": {
"coveralls": "2.11.6",
"eslint": "1.10.3",
"istanbul": "0.4.2",
"mocha": "2.4.5",
"mocha-lcov-reporter": "1.0.0",
"must": "0.13.1",
"obj_diff": "0.3.0"
},
"browserify": {
"transform": [
"varify"
]
}
}