Skip to content

Commit 6704cea

Browse files
Fix broken repository URL in package.json (#1003)
GitHub hasn't supported the git protocol [since 2022](https://github.blog/security/application-security/improving-git-protocol-security-github/#no-more-unauthenticated-git), so this URL is broken. (This is a common error affecting many projects and I'm opening PRs in bulk to fix it.)
1 parent 6b2c5fb commit 6704cea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "4.4.3",
44
"repository": {
55
"type": "git",
6-
"url": "git://github.com/debug-js/debug.git"
6+
"url": "https://github.com/debug-js/debug.git"
77
},
88
"description": "Lightweight debugging utility for Node.js and the browser",
99
"keywords": [

0 commit comments

Comments
 (0)