forked from mp-ffx/nconf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "nconf",
"description": "Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.",
"version": "2.0.0",
"author": "Charlie Robbins <[email protected]>",
"contributors": [
"Matt Hamann <[email protected]>",
"Maciej Małecki <[email protected]>",
"Jarrett Cruger <[email protected]>",
"Adrien Becchis"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mp-ffx/nconf.git"
},
"keywords": [
"configuration",
"key value store",
"plugabble"
],
"dependencies": {
"async": "^3.2.0",
"ini": "^1.3.5",
"lodash.camelcase": "^4.3.0",
"yargs": "^16.1.0"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7.12.1",
"istanbul": "^0.4.5",
"jest": "^26.6.1",
"nconf-yaml": "^1.0.2",
"vows": "0.8.x"
},
"main": "./lib/nconf",
"scripts": {
"test": "jest --verbose",
"cover": "jest --coverage",
"coveralls": "cat coverage/lcov.info | coveralls",
"lint": "eslint ."
},
"files": [
"lib"
],
"engines": {
"node": ">= 0.4.0"
},
"license": "MIT"
}