package.json 835 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "klaw",
  3. "version": "4.0.1",
  4. "description": "File system walker with Readable stream interface.",
  5. "main": "./src/index.js",
  6. "scripts": {
  7. "lint": "standard",
  8. "test": "npm run lint && npm run unit",
  9. "unit": "tape tests/**/*.js | tap-spec"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git+https://github.com/jprichardson/node-klaw.git"
  14. },
  15. "keywords": [
  16. "walk",
  17. "walker",
  18. "fs",
  19. "readable",
  20. "streams"
  21. ],
  22. "engines": {
  23. "node": ">=14.14.0"
  24. },
  25. "author": "JP Richardson",
  26. "license": "MIT",
  27. "files": [
  28. "src/"
  29. ],
  30. "bugs": {
  31. "url": "https://github.com/jprichardson/node-klaw/issues"
  32. },
  33. "homepage": "https://github.com/jprichardson/node-klaw#readme",
  34. "devDependencies": {
  35. "standard": "^16.0.3",
  36. "tap-spec": "^5.0.0",
  37. "tape": "^5.3.1"
  38. }
  39. }