-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 928 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 928 Bytes
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
{
"name": "@cheevr/config",
"version": "1.3.0",
"description": "A module that reads configuration files from disks",
"main": "index.js",
"engine": {
"node": ">8.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Cheevr/Config.git"
},
"keywords": [
"configuration",
"environment",
"settings",
"tier"
],
"author": "Ravi Gairola <ravi@cheevr.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Cheevr/Config/issues"
},
"homepage": "https://github.com/Cheevr/Config#readme",
"dependencies": {
"flat": "^4",
"lodash": "^4",
"minimist": "^1",
"yaml": "^1"
},
"devDependencies": {
"chai": "^4",
"coveralls": "^3",
"mocha": "^5",
"nyc": "^13"
},
"scripts": {
"test": "nyc --reporter=text --reporter=html mocha --recursive",
"coverage": "nyc report --reporter=text-lcov | coveralls"
}
}