package.json 935 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "klaw",
  3. "version": "3.0.0",
  4. "description": "File system walker with Readable stream interface.",
  5. "main": "./src/index.js",
  6. "scripts": {
  7. "lint": "standard && standard-markdown",
  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. "fs-extra",
  20. "readable",
  21. "streams"
  22. ],
  23. "author": "JP Richardson",
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/jprichardson/node-klaw/issues"
  27. },
  28. "homepage": "https://github.com/jprichardson/node-klaw#readme",
  29. "dependencies": {
  30. "graceful-fs": "^4.1.9"
  31. },
  32. "devDependencies": {
  33. "mkdirp": "^0.5.1",
  34. "rimraf": "^2.4.3",
  35. "standard": "^11.0.1",
  36. "standard-markdown": "^4.0.1",
  37. "tap-spec": "^5.0.0",
  38. "tape": "^4.2.2"
  39. }
  40. }