Files
2025-07-11 14:49:28 +08:00

46 lines
1.0 KiB
JSON

{
"author": "Yann Armelin",
"name": "readdir-glob",
"description": "Recursive fs.readdir with streaming API and glob filtering.",
"version": "1.1.1",
"homepage": "https://github.com/Yqnn/node-readdir-glob",
"repository": {
"type": "git",
"url": "git://github.com/Yqnn/node-readdir-glob.git"
},
"main": "index.js",
"files": [
"index.js"
],
"dependencies": {
"minimatch": "^3.0.4"
},
"devDependencies": {
"coveralls": "^3.1.0",
"jest": "^25.5.4",
"mkdirp": "^1.0.0",
"path-is-absolute": "^1.0.0",
"rimraf": "^2.2.8",
"tick": "0.0.6"
},
"keywords": [
"recursive",
"fs",
"stream",
"streams",
"readdir",
"filesystem",
"find",
"filter",
"glob"
],
"scripts": {
"test": "jest --coverage",
"test-regen": "TEST_REGEN=1 jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"bench": "bash scripts/benchmark.sh",
"profile": "bash scripts/profile.sh && cat profile.txt"
},
"license": "Apache-2.0"
}