package.json 547 B

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