-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.72 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
62
63
64
65
66
67
68
69
70
71
{
"name": "confabulous",
"version": "2.1.2",
"description": "A pluggable, hierarchical, asynchronous config loader and post processor with support for environment variables, command line arguments, json, javascript, http, vault, etcd and postgres",
"main": "index.js",
"scripts": {
"example": "cd examples && SECRET='a password' NODE_ENV=development node index.js",
"test": "zUnit",
"coverage": "nyc --reporter=lcovonly --reporter=text npm test",
"lint": "eslint .",
"prepare": "husky install"
},
"author": "GuideSmiths Ltd",
"license": "MIT",
"dependencies": {
"async": "^3.2.0",
"camelize": "^1.0.0",
"debug": "^4.3.1",
"deep-freeze": "0.0.1",
"dot-prop": "^6.0.1",
"flat": "^5.0.2",
"minimist": "^1.2.5",
"ramda": "^0.27.1",
"safe-json-parse": "^4.0.0"
},
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"lint-staged": "^11.2.6",
"nyc": "^15.1.0",
"prettier": "2.4.1",
"zunit": "^3.2.1"
},
"directories": {
"example": "examples",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guidesmiths/confabulous.git"
},
"keywords": [
"configuration",
"loader",
"asynchronous",
"hierarchical",
"watch",
"file",
"environment",
"command",
"line",
"arguments",
"http",
"vault",
"etcd",
"postgres",
"http"
],
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"bugs": {
"url": "https://github.com/guidesmiths/confabulous/issues"
},
"homepage": "https://guidesmiths.github.io/confabulous/",
"zUnit": {
"pollute": true
}
}