-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
47 lines (47 loc) · 1020 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": "klaw-sync",
"version": "6.0.0",
"description": "Recursive, synchronous, and fast file system walker",
"main": "klaw-sync.js",
"repository": {
"type": "git",
"url": "git+https://github.com/manidlou/node-klaw-sync.git"
},
"keywords": [
"fs",
"walk",
"walker",
"walk-sync",
"klaw",
"readdir-sync"
],
"author": "Mani Maghsoudlou",
"license": "MIT",
"bugs": {
"url": "https://github.com/manidlou/node-klaw-sync/issues"
},
"homepage": "https://github.com/manidlou/node-klaw-sync#readme",
"dependencies": {
"graceful-fs": "^4.1.11"
},
"devDependencies": {
"benchmark": "^2.1.4",
"fs-extra": "^5.0.0",
"memory-fs": "^0.4.1",
"mkp": "^1.0.1",
"mocha": "^5.1.1",
"standard": "^11.0.1",
"walk-sync": "^2.0.2"
},
"standard": {
"env": [
"mocha"
]
},
"scripts": {
"lint": "standard",
"unit": "mocha",
"test": "npm run lint && npm run unit",
"benchmark": "node ./benchmark/bm.js"
}
}