DEV Community

Discussion on: Using npm's `ls` command for Fun and Insight

Collapse
 
hdv profile image
Hussein Duvigneau

Is there a way to npm ls ... for below a version number? For example, if I do npm -ls lodash I get a huge tree, mostly all on the latest version. I just want to see where the non-latest versions of the package are.

Collapse
 
bnb profile image
Tierney Cyren

As far as I know, not currently. If you were absolutely dead-set on doing this, you could output the command text to a file and then grep that file (or use JSON output and then parse the JSON with jq).