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.
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.