package.json 1020 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "klaw-sync",
  3. "version": "6.0.0",
  4. "description": "Recursive, synchronous, and fast file system walker",
  5. "main": "klaw-sync.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "git+https://github.com/manidlou/node-klaw-sync.git"
  9. },
  10. "keywords": [
  11. "fs",
  12. "walk",
  13. "walker",
  14. "walk-sync",
  15. "klaw",
  16. "readdir-sync"
  17. ],
  18. "author": "Mani Maghsoudlou",
  19. "license": "MIT",
  20. "bugs": {
  21. "url": "https://github.com/manidlou/node-klaw-sync/issues"
  22. },
  23. "homepage": "https://github.com/manidlou/node-klaw-sync#readme",
  24. "dependencies": {
  25. "graceful-fs": "^4.1.11"
  26. },
  27. "devDependencies": {
  28. "benchmark": "^2.1.4",
  29. "fs-extra": "^5.0.0",
  30. "memory-fs": "^0.4.1",
  31. "mkp": "^1.0.1",
  32. "mocha": "^5.1.1",
  33. "standard": "^11.0.1",
  34. "walk-sync": "^0.3.3"
  35. },
  36. "standard": {
  37. "env": [
  38. "mocha"
  39. ]
  40. },
  41. "scripts": {
  42. "lint": "standard",
  43. "unit": "mocha",
  44. "test": "npm run lint && npm run unit",
  45. "benchmark": "node ./benchmark/bm.js"
  46. }
  47. }