upgradejs / depngn

A CLI tool to find out if your dependencies support a given version of node.
MIT License
103 stars 4 forks source link

[Feature Request]: Aggregated report of supported dependency versions #36

Open briandonahue opened 1 year ago

briandonahue commented 1 year ago

Describe your request

In addition to providing a target Node version and getting a report of compatible and incompatible dependencies, it would also be nice to get a report of all the supported versions in the engines field of dependencies. Maybe grouped by major/minor versions and sorted by the number of packages that support them, so you could get an idea of the most common version groupings for dependencies. (e.g. most support v16, some v18, none v19, etc)

Possible Implementation

As you are iterating through the packages engines fields, collect aggregated data of supported versions.

Code of Conduct