package.json 720 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "find-parent-dir",
  3. "version": "0.3.1",
  4. "description": "Finds the first parent directory that contains a given file or directory.",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "tap test/*.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/thlorenz/find-parent-dir.git"
  12. },
  13. "homepage": "https://github.com/thlorenz/find-parent-dir",
  14. "dependencies": {},
  15. "devDependencies": {
  16. "tap": "~0.4.3"
  17. },
  18. "keywords": [
  19. "find",
  20. "parent",
  21. "dir",
  22. "root",
  23. "resolve",
  24. "walk"
  25. ],
  26. "author": {
  27. "name": "Thorsten Lorenz",
  28. "email": "thlorenz@gmx.de",
  29. "url": "http://thlorenz.com"
  30. },
  31. "license": "MIT",
  32. "engine": {
  33. "node": ">=0.6"
  34. }
  35. }