How can I show the most recently published versions of an npm package, including beta/unstable versions?
This question helps identify how you can get the most recent, stable version (does not show beta version), but I would like to see a list of the several most recent versions, including beta versions.
$ npm view webpack versions
...
'0.7.9',
'0.7.11',
'0.7.12',
'0.7.13',
'0.7.14',
'0.7.15',
'0.7.16',
'0.7.17',
'0.8.0-beta1',
'0.8.0-beta2',
... 316 more items ]
I would like to show the "tail" of this list, instead of seeing the first several packages that were released. Is this possible?
How can I show a list of the most recently released versions for a particular npm package?