-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.03 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
43
44
45
46
47
{
"name": "read-glob",
"version": "3.0.0",
"description": "Search files with glob pattern and read them, Observable way",
"repository": "shinnn/node-read-glob",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"scripts": {
"bench": "node benchmark/ignore-eisdir.js && node benchmark/nodir.js",
"pretest": "eslint --fix --format=codeframe .",
"test": "nyc --reporter=text --reporter=html node test.js"
},
"license": "ISC",
"files": [
"index.js"
],
"keywords": [
"file",
"files",
"fs",
"glob",
"pattern",
"match",
"read",
"async",
"asynchronous",
"asynchronously"
],
"dependencies": {
"assert-fs-readfile-option": "^1.0.0",
"glob-observable": "^0.7.0",
"graceful-fs": "^4.1.11",
"inspect-with-kind": "^1.0.4",
"zen-observable": "^0.8.6"
},
"devDependencies": {
"@shinnn/eslint-config-node": "^5.0.0",
"eslint": "^4.18.1",
"lodash": "^4.17.5",
"nyc": "^11.5.0",
"rmfr": "^2.0.0-3",
"tape": "^4.9.0",
"unglobbable": "^1.0.1"
},
"eslintConfig": {
"extends": "@shinnn/node"
}
}