package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "readdirp",
  3. "description": "Recursive version of fs.readdir with streaming API.",
  4. "version": "4.0.2",
  5. "homepage": "https://github.com/paulmillr/readdirp",
  6. "repository": {
  7. "type": "git",
  8. "url": "git://github.com/paulmillr/readdirp.git"
  9. },
  10. "license": "MIT",
  11. "bugs": {
  12. "url": "https://github.com/paulmillr/readdirp/issues"
  13. },
  14. "author": "Thorsten Lorenz <thlorenz@gmx.de> (thlorenz.com)",
  15. "contributors": [
  16. "Thorsten Lorenz <thlorenz@gmx.de> (thlorenz.com)",
  17. "Paul Miller (https://paulmillr.com)"
  18. ],
  19. "engines": {
  20. "node": ">= 14.16.0"
  21. },
  22. "files": [
  23. "index.js",
  24. "index.d.ts",
  25. "index.d.ts.map",
  26. "index.js.map",
  27. "esm"
  28. ],
  29. "main": "./index.js",
  30. "module": "./esm/index.js",
  31. "types": "./index.d.ts",
  32. "exports": {
  33. ".": {
  34. "import": "./esm/index.js",
  35. "require": "./index.js"
  36. }
  37. },
  38. "sideEffects": false,
  39. "keywords": [
  40. "recursive",
  41. "fs",
  42. "stream",
  43. "streams",
  44. "readdir",
  45. "filesystem",
  46. "find",
  47. "filter"
  48. ],
  49. "scripts": {
  50. "build": "tsc && tsc -p tsconfig.esm.json",
  51. "nyc": "nyc",
  52. "mocha": "mocha --exit",
  53. "lint": "prettier --check index.ts",
  54. "format": "prettier --write index.ts",
  55. "test": "nyc npm run mocha"
  56. },
  57. "devDependencies": {
  58. "@paulmillr/jsbt": "0.2.1",
  59. "@types/node": "20.14.8",
  60. "chai": "4.3.4",
  61. "chai-subset": "1.6.0",
  62. "mocha": "10.7.3",
  63. "nyc": "15.0.1",
  64. "prettier": "3.1.1",
  65. "rimraf": "6.0.1",
  66. "typescript": "5.5.2"
  67. },
  68. "nyc": {
  69. "reporter": [
  70. "html",
  71. "text"
  72. ]
  73. },
  74. "funding": {
  75. "type": "individual",
  76. "url": "https://paulmillr.com/funding/"
  77. }
  78. }