-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 854 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
{
"name": "requiredir",
"version": "1.0.7",
"author": "James Eggers <[email protected]> (http://www.jamesreggers.com/)",
"description": "A module for importing a directory of Node.js modules and adding them into an array or as properties of the module variable.",
"homepage": "https://github.com/JamesEggers1/node-requiredir",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/JamesEggers1/node-requiredir"
},
"main": "./src/requiredir",
"engines": {
"node": ">= 0.6"
},
"scripts": {
"test": "mocha ./tests/requiredir-tests.js -R spec"
},
"keywords": [
"require",
"require directory"
],
"bugs": {
"url": "https://github.com/JamesEggers1/node-requiredir/issues"
},
"devDependencies": {
"mocha": "1.21.5",
"rimraf": "2.0.2",
"should": "5.0.1"
}
}