package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "hosted-git-info",
  3. "version": "2.8.9",
  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 --tag=ancient-legacy-fixes && git push --follow-tags",
  25. "posttest": "standard",
  26. "release": "standard-version -s",
  27. "test:coverage": "tap --coverage-report=html -J --coverage=90 --no-esm test/*.js",
  28. "test": "tap -J --coverage=90 --no-esm test/*.js"
  29. },
  30. "devDependencies": {
  31. "standard": "^11.0.1",
  32. "standard-version": "^4.4.0",
  33. "tap": "^12.7.0"
  34. },
  35. "files": [
  36. "index.js",
  37. "git-host.js",
  38. "git-host-info.js"
  39. ]
  40. }