-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 853 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
42
43
44
45
46
47
{
"name": "readdir-sync-recursive",
"version": "1.0.0",
"description": "Recursively crawl through directories",
"license": "MIT",
"author": {
"name": "Andrew Musgrave",
"email": "[email protected]",
"url": "https://github.com/AndrewMusgrave"
},
"repository": "AndrewMusgrave/readdir-sync-recursive",
"scripts": {
"test": "jest"
},
"engines": {
"node": ">=6"
},
"files": [
"index.js"
],
"jest": {
"verbose": true,
"testURL": "http://localhost/"
},
"devDependencies": {
"jest": "^23.4.2"
},
"keywords": [
"dir",
"directory",
"readdir",
"fs-readdir",
"recursive-readdir",
"recursive-readdir-sync",
"read",
"folder",
"parse",
"file",
"crawl",
"recursive",
"sync",
"fs",
"performance",
"fastest",
"list"
]
}