package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "hosted-git-info",
  3. "version": "6.1.1",
  4. "description": "Provides metadata and conversions from repository urls for GitHub, Bitbucket and GitLab",
  5. "main": "./lib/index.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/npm/hosted-git-info.git"
  9. },
  10. "keywords": [
  11. "git",
  12. "github",
  13. "bitbucket",
  14. "gitlab"
  15. ],
  16. "author": "GitHub Inc.",
  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": "npm run lint",
  24. "snap": "tap",
  25. "test": "tap",
  26. "test:coverage": "tap --coverage-report=html",
  27. "lint": "eslint \"**/*.js\"",
  28. "postlint": "template-oss-check",
  29. "lintfix": "npm run lint -- --fix",
  30. "template-oss-apply": "template-oss-apply --force"
  31. },
  32. "dependencies": {
  33. "lru-cache": "^7.5.1"
  34. },
  35. "devDependencies": {
  36. "@npmcli/eslint-config": "^4.0.0",
  37. "@npmcli/template-oss": "4.7.1",
  38. "tap": "^16.0.1"
  39. },
  40. "files": [
  41. "bin/",
  42. "lib/"
  43. ],
  44. "engines": {
  45. "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
  46. },
  47. "tap": {
  48. "color": 1,
  49. "coverage": true,
  50. "nyc-arg": [
  51. "--exclude",
  52. "tap-snapshots/**"
  53. ]
  54. },
  55. "templateOSS": {
  56. "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
  57. "version": "4.7.1"
  58. }
  59. }