package.json 995 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "hosted-git-info",
  3. "version": "2.7.1",
  4. "description": "Provides metadata and conversions from repository urls for Github, Bitbucket and Gitlab",
  5. "main": "index.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "git+https://github.com/npm/hosted-git-info.git"
  9. },
  10. "keywords": [
  11. "git",
  12. "github",
  13. "bitbucket",
  14. "gitlab"
  15. ],
  16. "author": "Rebecca Turner <me@re-becca.org> (http://re-becca.org)",
  17. "license": "ISC",
  18. "bugs": {
  19. "url": "https://github.com/npm/hosted-git-info/issues"
  20. },
  21. "homepage": "https://github.com/npm/hosted-git-info",
  22. "scripts": {
  23. "prerelease": "npm t",
  24. "postrelease": "npm publish && git push --follow-tags",
  25. "pretest": "standard",
  26. "release": "standard-version -s",
  27. "test": "tap -J --nyc-arg=--all --coverage test"
  28. },
  29. "devDependencies": {
  30. "standard": "^11.0.1",
  31. "standard-version": "^4.3.0",
  32. "tap": "^12.0.1"
  33. },
  34. "files": [
  35. "index.js",
  36. "git-host.js",
  37. "git-host-info.js"
  38. ]
  39. }