-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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
{
"name": "rob-config",
"version": "6.0.0",
"description": "Robust configuration package for nodejs, built on top of convict",
"main": "lib/index.js",
"bin": "lib/command.js",
"scripts": {
"test": "make test",
"prepublishOnly": "make build",
"patch": "np patch --yolo",
"minor": "np minor --yolo",
"major": "np major --yolo"
},
"repository": {
"type": "git",
"url": "https://github.com/jeromemacias/node-rob-config.git"
},
"keywords": [
"config",
"configuration",
"schema",
"validation",
"robust"
],
"author": "Jérôme Macias <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeromemacias/node-rob-config/issues"
},
"homepage": "https://github.com/jeromemacias/node-rob-config#readme",
"dependencies": {
"chalk": "~4.0.0",
"convict": "~5.2.0",
"prettyjson": "~1.2.1",
"yargonaut": "~1.1.4",
"yargs": "~15.3.1"
},
"devDependencies": {
"@babel/cli": "~7.8.4",
"@babel/core": "~7.9.0",
"@babel/preset-env": "~7.9.5",
"@babel/register": "~7.9.0",
"babel-eslint": "~10.1.0",
"babel-plugin-add-module-exports": "~1.0.2",
"chai": "~4.2.0",
"eslint": "~5.10.0",
"eslint-plugin-babel": "~5.3.0",
"mocha": "~7.1.1",
"np": "~6.2.1",
"prettier": "~2.0.4"
},
"engines": {
"node": ">=10.18.1"
}
}