-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.45 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
{
"name": "milieu",
"version": "2.0.0",
"description": "A config loader in the spirit of rc with a few additional features",
"main": "index.js",
"typings": "./types/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint .",
"test": "mocha ./test/**/*.spec.js",
"cover": "istanbul cover _mocha -- ./test/**/*.spec.js"
},
"pre-commit": [
"lint",
"test"
],
"keywords": [
"config",
"configuration",
"env",
"environment variables",
"flags",
"arguments",
"cli",
"command line interface",
"config templating",
"json config",
"yaml config",
"ini config"
],
"author": "Robert Hurst <[email protected]>",
"license": "MIT",
"files": [
"lib",
"types",
"index.js"
],
"dependencies": {
"cli-table3": "^0.6.1",
"colors": "^1.4.0",
"deep-extend": "^0.6.0"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"istanbul": "^0.4.4",
"mocha": "^9.2.1",
"pre-commit": "^1.2.2",
"sinon": "^13.0.1",
"typescript": "^4.6.2"
},
"optionalDependencies": {
"ini": "^2.0.0",
"js-yaml": "^4.1.0"
}
}