-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 848 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
{
"name": "readpath",
"version": "0.1.1",
"description": "fs.readdir alternative that calls a callback per entry instead of returning an array with all entries",
"keywords": [
"readdir",
"native",
"async",
"directory",
"folder",
"files"
],
"repository": {
"type": "git",
"url": "git@github.com:oferh/node-readpath.git"
},
"bugs": {
"url": "https://github.com/oferh/node-readpath/issues"
},
"license": "Apache-2.0",
"author": "Ofer Herman",
"main": "index.js",
"scripts": {
"configure": "node-gyp configure",
"build": "node-gyp build",
"test": "mocha"
},
"devDependencies": {
"assert": "^1.3.0",
"async": "^1.5.0",
"mocha": "^2.3.3",
"rmdir": "^1.1.0"
},
"dependencies": {
"node-gyp": "^1.0.3",
"nan": "^2.0.5",
"bindings": "^1.2.1"
}
}