Is there a way to include two versions of the same dependency in nodejs package.json?
For testing purposes, I need to use two versions of socket.io (one to display the socket in the latest version and one to simulate the dependency server using the old version).
{ "dependencies": { "socket.io": "~0.9.0", "socket.io": "~1.2.0" } }
source share