forked from yyyar/dyn-require
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 879 Bytes
/
package.json
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": "dyn-require",
"version": "0.0.3",
"description": "Dynamic loading Node.js modules from filesystem",
"author": {
"name": "Yaroslav Pogrebnyak",
"url": "http://pogrebnyak.info",
"email": "yyyaroslav@gmail.com"
},
"homepage": "http://github.com/yyyar/dyn-require",
"repository": {
"type": "git",
"url": "git@github.com:yyyar/dyn-require.git"
},
"bugs": {
"url": "https://github.com/yyyar/dyn-require/issues"
},
"license": "MIT",
"engines": {
"node": ">= 4.0.0"
},
"keywords": [
"require",
"modules",
"dynamic",
"scanner",
"directory"
],
"main": "./lib/index",
"scripts": {
"test": "nodeunit tests --reporter verbose"
},
"readmeFilename": "README.md",
"dependencies": {
"lodash": "^4.16.6",
"fs-extra": "^1.0.0"
},
"devDependencies": {
"nodeunit": "^0.10.2"
}
}