package.json 898 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name" : "parents",
  3. "version" : "1.0.1",
  4. "description" : "return all the parent directories for a directory",
  5. "main" : "index.js",
  6. "bin" : {},
  7. "directories" : {
  8. "example" : "example",
  9. "test" : "test"
  10. },
  11. "dependencies" : {
  12. "path-platform": "~0.11.15"
  13. },
  14. "devDependencies" : {
  15. "tap" : "~0.2.5"
  16. },
  17. "scripts" : {
  18. "test" : "tap test/*.js"
  19. },
  20. "repository" : {
  21. "type" : "git",
  22. "url" : "git://github.com/substack/node-parents.git"
  23. },
  24. "homepage" : "https://github.com/substack/node-parents",
  25. "keywords" : [
  26. "directory",
  27. "parent",
  28. "path",
  29. "tree"
  30. ],
  31. "author" : {
  32. "name" : "James Halliday",
  33. "email" : "mail@substack.net",
  34. "url" : "http://substack.net"
  35. },
  36. "license" : "MIT",
  37. "engine" : { "node" : ">=0.6" }
  38. }