-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 848 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 848 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
{
"name": "mech-config",
"version": "0.0.0",
"description": "YML configuration for Node.js applications. Support ENV, watching for changes, cascade inheritance.",
"keywords": [
"yaml",
"config",
"configuration"
],
"homepage": "https://github.com/mechanica/config",
"author": {
"name": "Kirill Enykeev",
"email": "enykeev@gmail.com"
},
"bugs": {
"url": "https://github.com/mechanica/config/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/mechanica/config.git"
},
"main": "./config.js",
"scripts": {
"test": "env NODE_ENV=test mocha -R spec"
},
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"async": "~0.2.9",
"js-yaml": "^3.13.1",
"lodash": "^4.17.11"
},
"devDependencies": {
"expect.js": "~0.2.0",
"mocha": "^6.1.4"
}
}