package.json uses deprecated git:// protocol
Open
- Dominant language
- JavaScript
- Stars
- 345
- Forks
- 47
- PR merge metrics
- No merged PRs in 30d
Description
The repository.url field in the package.json uses the deprecated git:// protocol:
"repository": {
"url": "git://github.com/feross/safe-buffer.git"
}
The git:// protocol is deprecated by GitHub due to security concerns (no encryption, MITM risk). It should be changed to git+https://.
Fix: change to "git+https://github.com/feross/safe-buffer.git"
This is a simple one-line fix in package.json.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.