can anyone help me with query to get a package with minor or patch versions from npm registry.
https://registry.npmjs.org/eslint-scope/7.1.1 - this would give package details for 7.1.1 version. I would like to understand how can we pass ^7.1.1 or ~7.1.1(not 7.1.1) to get minor or patch versions above 7.1.1 if available.
Thanks.