forked from neerolyte/node-walk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 816 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
{
"name": "walk",
"description": "A node port of python's os.walk",
"url": "http://github.com/coolaj86/node-walk",
"keywords": [
"util",
"os",
"sys",
"fs",
"walk",
"walkSync"
],
"author": "AJ ONeal <[email protected]>",
"contributors": [],
"dependencies": {
"foreachasync": "^3.0.0"
},
"lib": ".",
"main": "./lib/walk.js",
"version": "2.3.9",
"repository": {
"url": "git://github.com/coolaj86/node-walk.git"
},
"license": "(MIT OR Apache-2.0)",
"bugs": {
"url": "https://github.com/coolaj86/node-walk/issues"
},
"homepage": "https://github.com/coolaj86/node-walk",
"directories": {
"example": "examples",
"test": "test"
},
"files": [
"lib"
],
"devDependencies": {},
"scripts": {
"test": "./test/walk-test.sh"
}
}