How to list all versions of an npm module?
Usually I do this if I want to see all versions
npm view webpack versions --json
This is pretty much the same but won't list alpha or beta releases
npm show webpack@* version
with yarn its just yarn info react-dnd versions
, you can leave versions off for a lot of other info