package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "author": "Yann Armelin",
  3. "name": "readdir-glob",
  4. "description": "Recursive fs.readdir with streaming API and glob filtering.",
  5. "version": "1.1.3",
  6. "homepage": "https://github.com/Yqnn/node-readdir-glob",
  7. "repository": {
  8. "type": "git",
  9. "url": "git://github.com/Yqnn/node-readdir-glob.git"
  10. },
  11. "main": "index.js",
  12. "files": [
  13. "index.js"
  14. ],
  15. "dependencies": {
  16. "minimatch": "^5.1.0"
  17. },
  18. "devDependencies": {
  19. "jasmine": "^4.6.0",
  20. "mkdirp": "^2.1.6",
  21. "nyc": "^15.1.0",
  22. "rimraf": "^3.0.2",
  23. "tick": "0.0.6"
  24. },
  25. "keywords": [
  26. "recursive",
  27. "fs",
  28. "stream",
  29. "streams",
  30. "readdir",
  31. "filesystem",
  32. "find",
  33. "filter",
  34. "glob"
  35. ],
  36. "scripts": {
  37. "test": "npx nyc --reporter=lcov --reporter=text-summary --reporter=html jasmine --config=jasmine.json",
  38. "test-regen": "TEST_REGEN=1 jasmine --config=jasmine.json",
  39. "bench": "bash scripts/benchmark.sh",
  40. "profile": "bash scripts/profile.sh && cat profile.txt"
  41. },
  42. "license": "Apache-2.0"
  43. }