-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 838 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 838 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
{
"name": "tiny-config",
"version": "2.0.2",
"description": "a very small config module for node",
"main": "lib/index.js",
"scripts": {
"test": "mocha --recursive \"tests/**/*.test.js\"",
"cover": "nyc mocha --exit \"./tests/**/*.test.js\""
},
"author": "nishant",
"license": "ISC",
"keywords": [
"config",
"node config",
"settings",
"properties"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nishant-chaturvedi/tiny-config.git"
},
"bugs": {
"url": "https://github.com/nishant-chaturvedi/tiny-config/issues"
},
"homepage": "https://github.com/nishant-chaturvedi/tiny-config#readme",
"nyc": {
"reporter": [
"text",
"text-summary"
]
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.4",
"nyc": "^13.2.0"
}
}