package.json 569 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "walker",
  3. "description": "A simple directory tree walker.",
  4. "version": "1.0.8",
  5. "homepage": "https://github.com/daaku/nodejs-walker",
  6. "author": "Naitik Shah <n@daaku.org>",
  7. "keywords": [
  8. "utils",
  9. "fs",
  10. "filesystem"
  11. ],
  12. "main": "lib/walker",
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/daaku/nodejs-walker"
  16. },
  17. "scripts": {
  18. "test": "NODE_PATH=./lib mocha --ui exports"
  19. },
  20. "dependencies": {
  21. "makeerror": "1.0.12"
  22. },
  23. "devDependencies": {
  24. "mocha": "9.1.3"
  25. },
  26. "license": "Apache-2.0"
  27. }