package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "hosted-git-info",
  3. "version": "4.0.2",
  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. "posttest": "standard",
  24. "postversion": "npm publish",
  25. "prepublishOnly": "git push origin --follow-tags",
  26. "preversion": "npm test",
  27. "snap": "tap",
  28. "test": "tap",
  29. "test:coverage": "tap --coverage-report=html"
  30. },
  31. "dependencies": {
  32. "lru-cache": "^6.0.0"
  33. },
  34. "devDependencies": {
  35. "standard": "^16.0.3",
  36. "standard-version": "^9.1.0",
  37. "tap": "^14.11.0"
  38. },
  39. "files": [
  40. "index.js",
  41. "git-host.js",
  42. "git-host-info.js"
  43. ],
  44. "engines": {
  45. "node": ">=10"
  46. },
  47. "tap": {
  48. "color": 1,
  49. "coverage": true,
  50. "esm": false
  51. }
  52. }