UNPKG

readdir-glob

Version:

Recursive fs.readdir with streaming API and glob filtering.

63 lines (62 loc) 1.65 kB
{ "author": "Yann Armelin", "name": "readdir-glob", "description": "Recursive fs.readdir with streaming API and glob filtering.", "version": "2.0.1", "homepage": "https://github.com/Yqnn/node-readdir-glob", "repository": { "type": "git", "url": "git://github.com/Yqnn/node-readdir-glob.git" }, "main": "./dist/cjs/index.cjs.js", "files": [ "dist/**", "src" ], "funding": { "url": "https://github.com/sponsors/yqnn" }, "exports": { "import": { "default": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts" }, "require": { "default": "./dist/cjs/index.cjs.js", "types": "./dist/cjs/index.cjs.d.ts" } }, "types": "./dist/cjs/index.cjs.d.ts", "dependencies": { "minimatch": "^9.0.0" }, "devDependencies": { "@types/node": "^20.12.5", "jasmine": "^4.6.0", "mkdirp": "^2.1.6", "nyc": "^15.1.0", "rimraf": "^3.0.2", "tick": "0.0.6", "tsconfig-to-dual-package": "^1.2.0", "typescript": "^5.4.4" }, "keywords": [ "recursive", "fs", "stream", "streams", "readdir", "filesystem", "find", "filter", "glob" ], "scripts": { "test": "npx nyc --reporter=lcov --reporter=text-summary --reporter=html jasmine --config=jasmine.json", "test-regen": "TEST_REGEN=1 jasmine --config=jasmine.json", "build": "rimraf dist && tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json && tsconfig-to-dual-package tsconfig.esm.json tsconfig.cjs.json", "bench": "bash scripts/benchmark.sh", "profile": "bash scripts/profile.sh && cat profile.txt" }, "license": "Apache-2.0" }