Is there a way to specify which ssh key should be used for npm install
I have a private repo that I want to install in my package.json file.
"private-module": "git+ssh://git@bitbucket.org:private/private-module.git"
By default npm uses your default private key. I want to be able to specify which ssh key npm should use when running npm install. Is there any way to do this?