forked from overlookmotel/require-folder-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 996 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 996 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
42
43
44
45
46
47
{
"name": "require-folder-tree",
"version": "1.4.5",
"description": "Utility to require multiple files in a folder tree with flexible options",
"main": "./lib/",
"author": {
"name": "Overlook Motel"
},
"repository": {
"type": "git",
"url": "https://github.com/overlookmotel/require-folder-tree.git"
},
"bugs": {
"url": "https://github.com/overlookmotel/require-folder-tree/issues"
},
"dependencies": {
"lodash": "^4.17.10"
},
"devDependencies": {
"mocha": "^5.1.1",
"chai": "^4.1.2",
"jshint": "^2.9.5",
"istanbul": "^0.4.5",
"coveralls": "^3.0.1"
},
"keywords": [
"require",
"folder",
"structure",
"tree",
"all"
],
"scripts": {
"test": "make test",
"cover": "make cover"
},
"engines": {
"node": ">=0.10.0"
},
"readmeFilename": "README.md",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/overlookmotel/require-folder-tree/raw/master/License"
}
]
}