1{ 2 "name": "hosted-git-info", 3 "version": "7.0.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": "^10.0.1" 34 }, 35 "devDependencies": { 36 "@npmcli/eslint-config": "^4.0.0", 37 "@npmcli/template-oss": "4.18.0", 38 "tap": "^16.0.1" 39 }, 40 "files": [ 41 "bin/", 42 "lib/" 43 ], 44 "engines": { 45 "node": "^16.14.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.18.0", 58 "publish": "true", 59 "ciVersions": [ 60 "16.14.0", 61 "16.x", 62 "18.0.0", 63 "18.x" 64 ] 65 } 66} 67