forked from peerigon/dynamic-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 969 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
{
"name": "dynamic-config",
"version": "1.0.0",
"description": "Loads configuration files depending on the given env",
"main": "lib/index.js",
"dependencies": {
"alamid-plugin": "^0.1.0",
"deep-assign": "^2.0.0",
"minimist": "^1.2.0"
},
"devDependencies": {
"ava": "^0.15.1",
"chai": "^3.5.0",
"eslint": "^2.11.1",
"eslint-config-peerigon": "^5.0.0",
"eslint-plugin-jsdoc": "^2.3.1",
"nyc": "^6.6.1"
},
"scripts": {
"test": "nyc ava",
"posttest": "npm run lint",
"lint": "eslint --fix lib plugins test",
"coverage-report": "nyc report --reporter=html"
},
"keywords": [
"config",
"env",
"args"
],
"author": {
"name": "peerigon",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/peerigon/dynamic-config.git"
},
"bugs": {
"url": "https://github.com/peerigon/dynamic-config/issues"
}
}