This repository has been archived by the owner on Sep 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
58 lines (58 loc) · 1.69 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
{
"name": "zero-config",
"version": "7.1.1",
"description": "A zero configuration configuration loader",
"keywords": [],
"author": "Raynos <[email protected]>",
"repository": "git://github.com/uber/zero-config.git",
"main": "index",
"homepage": "https://github.com/uber/zero-config",
"bugs": {
"url": "https://github.com/uber/zero-config/issues",
"email": "[email protected]"
},
"dependencies": {
"clone": "~0.2.0",
"config-chain": "^1.1.8",
"deep-extend": "^0.4.0",
"dotty": "0.0.2",
"error": "^4.1.1",
"flatten-prototypes": "^4.0.0",
"minimist": "^1.1.0",
"process": "^0.7.0",
"raynos-rust-result": "0.1.0-improvement3"
},
"devDependencies": {
"coveralls": "^2.10.0",
"fixtures-fs": "^1.0.2",
"istanbul": "^0.2.7",
"jshint": "^2.5.0",
"opn": "^0.1.2",
"pre-commit": "0.0.5",
"tap-spec": "^0.2.0",
"tape": "^2.14.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/uber/zero-config/raw/master/LICENSE"
}
],
"scripts": {
"test": "npm run jshint -s && node test/index.js | tap-spec",
"unit-test": "node test/index.js | tap-spec",
"jshint-pre-commit": "jshint --verbose $(git diff --cached --name-only | grep '\\.js$')",
"jshint": "jshint --verbose $(git ls-files | grep '\\.js$')",
"cover": "istanbul cover --report none --print detail test/index.js",
"view-cover": "istanbul report html && opn ./coverage/index.html",
"travis": "npm run cover -s && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0)"
},
"engine": {
"node": ">= 0.8.x"
},
"pre-commit": [
"jshint-pre-commit",
"unit-test"
],
"playdoh-version": "2.5.0"
}