forked from mozilla/node-convict
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.86 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.86 KB
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
{
"author": "Lloyd Hilaiel <lloyd@hilaiel.com> (http://lloyd.io)",
"name": "convict",
"description": "Featureful configuration management library for Node.js (nested structure, schema validation, etc.)",
"keywords": [
"configuration",
"config",
"key value store",
"schema",
"nested",
"validation"
],
"version": "4.3.0",
"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": ">=4"
},
"scripts": {
"test": "mocha --check-leaks -R spec test/*-tests.js",
"posttest": "npm run lint",
"pretest:coverage": "rm -f test/coverage/coverage-*.json",
"test:coverage": "istanbul cover --print none --report none --include-pid _mocha -- --check-leaks test/*-tests.js && istanbul report text-summary lcov",
"posttest:coverage": "npm run lint",
"pretest:ci": "rm -f test/coverage/coverage-*.json",
"test:ci": "istanbul cover --print none --report none --include-pid _mocha -- --check-leaks test/*-tests.js && istanbul report text-summary lcov && cat test/coverage/lcov.info | coveralls",
"posttest:ci": "npm run lint",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"clean": "rm -rf test/coverage",
"version": "./assert_changelog_ready $npm_package_version"
},
"files": [
"lib"
],
"main": "lib/convict.js",
"dependencies": {
"depd": "1.1.2",
"json5": "1.0.1",
"lodash.clonedeep": "4.5.0",
"moment": "2.22.2",
"validator": "7.2.0",
"yargs-parser": "10.0.0"
},
"devDependencies": {
"coveralls": "3.0.1",
"eslint": "4.19.1",
"istanbul": "0.4.5",
"js-yaml": "^3.11.0",
"mocha": "5.2.0",
"must": "0.13.4",
"obj_diff": "0.3.0",
"toml": "^2.3.3"
}
}