package.json 753 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name" : "github-from-package",
  3. "version" : "0.0.0",
  4. "description" : "return the github url from a package.json file",
  5. "main" : "index.js",
  6. "devDependencies" : {
  7. "tap" : "~0.3.0",
  8. "tape" : "~0.1.5"
  9. },
  10. "scripts" : {
  11. "test" : "tap test/*.js"
  12. },
  13. "repository" : {
  14. "type" : "git",
  15. "url" : "git://github.com/substack/github-from-package.git"
  16. },
  17. "homepage" : "https://github.com/substack/github-from-package",
  18. "keywords" : [
  19. "github",
  20. "package.json",
  21. "npm",
  22. "repository"
  23. ],
  24. "author" : {
  25. "name" : "James Halliday",
  26. "email" : "mail@substack.net",
  27. "url" : "http://substack.net"
  28. },
  29. "license" : "MIT"
  30. }