-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 864 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 864 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
{
"name": "node-etc",
"version": "1.1.6",
"description": "Configuration loader for node.js applications",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "https://github.com/csymapp/node-etc.git"
},
"keywords": [
"config",
"configuration",
"yaml",
"yml",
"json",
"packagejson",
"etc"
],
"author": "Brian Onang'o",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/csymapp/node-etc/issues"
},
"homepage": "https://github.com/csymapp/node-etc#readme",
"dependencies": {
"clone": "^2.1.2",
"deepmerge": "^4.2.2",
"dotenv": "^8.2.0",
"fs-extra": "^9.0.1",
"js-yaml": "^3.14.0",
"shelljs": "^0.8.4",
"yargs": "^16.0.3"
},
"devDependencies": {
"mocha": "^8.1.3"
}
}