{
  "name": "@jsdevtools/readdir-enhanced",
  "version": "6.0.4",
  "description": "fs.readdir with sync, async, streaming, and async iterator APIs + filtering, recursion, absolute paths, etc.",
  "keywords": [
    "fs",
    "readdir",
    "async",
    "promise",
    "iterator",
    "generator",
    "async-iterator",
    "stream",
    "event",
    "event-emitter",
    "recursive",
    "deep",
    "walk",
    "crawl",
    "filter",
    "absolute"
  ],
  "author": {
    "name": "James Messinger",
    "url": "https://jamesmessinger.com"
  },
  "license": "MIT",
  "homepage": "https://jstools.dev/readdir-enhanced",
  "repository": {
    "type": "git",
    "url": "https://github.com/JS-DevTools/readdir-enhanced.git"
  },
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "lib"
  ],
  "scripts": {
    "clean": "shx rm -rf .nyc_output coverage lib",
    "lint": "eslint src test",
    "build": "tsc",
    "watch": "tsc --watch",
    "test": "npm run test:node && npm run test:typescript && npm run lint",
    "test:node": "mocha",
    "test:typescript": "tsc --noEmit --strict --lib esnext test/specs/typescript-definition.spec.ts",
    "coverage": "nyc node_modules/mocha/bin/mocha",
    "upgrade": "npm-check -u && npm audit fix",
    "bump": "bump --tag --push --all",
    "release": "npm run upgrade && npm run clean && npm run build && npm test && npm run bump"
  },
  "engines": {
    "node": ">=10"
  },
  "devDependencies": {
    "@jsdevtools/eslint-config": "^1.0.4",
    "@jsdevtools/version-bump-prompt": "^6.0.5",
    "@types/chai": "^4.2.11",
    "@types/mocha": "^8.0.0",
    "@types/node": "^14.0.23",
    "chai": "^4.2.0",
    "del": "^5.1.0",
    "eslint": "^7.4.0",
    "mocha": "^8.0.1",
    "npm-check": "^5.9.2",
    "nyc": "^15.1.0",
    "shx": "^0.3.2",
    "through2": "^4.0.2",
    "typescript": "^3.9.7"
  },
  "dependencies": {
    "@jsdevtools/file-path-filter": "^3.0.2"
  }
}
