UNPKG

fs-iterator

Version:

A file system iterator with filter and asyncIterator iterafaces. Supports Node 0.10 and above

68 lines (67 loc) 1.64 kB
{ "name": "fs-iterator", "version": "6.0.5", "description": "A file system iterator with filter and asyncIterator iterafaces. Supports Node 0.10 and above", "keywords": [ "recursive", "readdir", "fs", "filesystem", "filter", "iterator", "asyncIterator", "Symbol.asyncIterator" ], "homepage": "https://github.com/kmalakoff/fs-iterator", "repository": { "type": "git", "url": "git+ssh://git@github.com/kmalakoff/fs-iterator.git" }, "license": "MIT", "author": "Kevin Malakoff <kmalakoff@gmail.com> (https://github.com/kmalakoff)", "type": "module", "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js" }, "./package.json": "./package.json" }, "main": "dist/cjs/index.js", "types": "dist/cjs/index.d.cts", "files": [ "dist" ], "scripts": { "build": "tsds build", "format": "biome check --write --unsafe", "test": "mocha --no-timeouts test/**/*.test.*", "test:engines": "nvu engines tsds test:node --no-timeouts", "version": "tsds version" }, "dependencies": { "async-compat": "^1.6.16", "fs.realpath": "^1.0.0", "stack-base-iterator": "^2.0.3" }, "devDependencies": { "@types/mocha": "*", "@types/node": "*", "@types/readable-stream": "^2.3.8", "fs-generate": "*", "fs-stats-spys": "*", "is-promise": "*", "next-tick": "*", "on-one": "*", "pinkie-promise": "*", "readable-stream": "^2.3.8", "rimraf2": "*", "starts-with": "*" }, "engines": { "node": ">=0.8" }, "tsds": { "source": "src/index.ts" } }