-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (41 loc) · 1.18 KB
/
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
42
{
"author": "Almog Melamed <[email protected]> (http://github.com/radagaisus/)",
"name": "node-require-directory",
"version": "1.0.2",
"description": "Recursively iterates over a directory and requires all files, returning a nested hash structure of all files",
"keywords": ["require", "directory"],
"homepage": "https://github.com/radagaisus/node-require-directory/",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/radagaisus/node-require-directory.git"
},
"contributors": [
{
"name": "Almog Melamed",
"email": "[email protected]",
"web": "http://github.com/radagaisus/"
}
],
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"bugs": {
"url": "http://github.com/radagaisus/node-require-directory/issues/"
},
"engines": {
"node": ">=0.6.0"
},
"dependencies": {},
"devDependencies": {
"coffee-script": "latest",
"mocha": "latest"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha -R spec --ui bdd --require coffee-script --colors --compilers coffee:coffee-script/register test/*"
},
"bin": {}
}