We have following requirements in our package.json,
"three-orbitcontrols": "^2.102.2"
in one computer, node_modules/three-orbigcontrols/package.json has
   "_from": "three-orbitcontrols@2.102.2",
   "_id": "three-orbitcontrols@2.102.2",
in another computer,
   "_from": "three-orbitcontrols@2.102.2",
   "_id": "three-orbitcontrols@2.110.1",
So specifying ^2.102.2 doesn't force the version (2.110.1 is installed`
What's the correct way of specifying specific 2.102.2 ?
