-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 933 Bytes
/
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
{
"name": "@dicehub/config-env-loader",
"version": "1.4.0",
"description": "Loads global configurations for client and server from root directory",
"keywords": [
"config",
"configuration",
"yaml",
"production",
"development",
"local",
"env",
"environment",
"custom"
],
"main": "index.js",
"scripts": {
"test": "jest test/test.js",
"test-dev": "jest test/test.js --watch"
},
"author": "dicehub Team",
"license": "MIT",
"dependencies": {
"cross-spawn": "7.0.2",
"minimist": "1.2.5",
"yaml": "1.9.2"
},
"devDependencies": {
"jest": "25.4.0"
},
"files": [
"index.js",
"cli-loader.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dicehub/config-env-loader.git"
},
"bugs": {
"url": "https://github.com/dicehub/config-env-loader/issues"
},
"bin": {
"config-env-loader": "./cli-loader.js"
}
}