2022-09-24 10:25:58 +01:00
|
|
|
# npm query
|
|
|
|
|
|
|
|
> Print an array of dependency objects using CSS-like selectors.
|
|
|
|
> More information: <https://docs.npmjs.com/cli/v8/commands/npm-query>.
|
|
|
|
|
|
|
|
- Print direct dependencies:
|
|
|
|
|
|
|
|
`npm query ':root > *'`
|
|
|
|
|
|
|
|
- Print all direct production/development dependencies:
|
|
|
|
|
|
|
|
`npm query ':root > .{{prod|dev}}'`
|
|
|
|
|
|
|
|
- Print dependencies with a specific name:
|
|
|
|
|
2023-08-26 18:30:06 +01:00
|
|
|
`npm query '#{{package}}'`
|
2022-09-24 10:25:58 +01:00
|
|
|
|
|
|
|
- Print dependencies with a specific name and within a semantic versioning range:
|
|
|
|
|
2023-08-26 18:30:06 +01:00
|
|
|
`npm query #{{package}}@{{semantic_version}}`
|
2022-09-24 10:25:58 +01:00
|
|
|
|
|
|
|
- Print dependencies which have no dependencies:
|
|
|
|
|
|
|
|
`npm query ':empty'`
|
|
|
|
|
|
|
|
- Find all dependencies with postinstall scripts and uninstall them:
|
|
|
|
|
|
|
|
`npm query ":attr(scripts, [postinstall])" | jq 'map(.name) | join("\n")' -r | xargs -I {} npm uninstall {}`
|
|
|
|
|
|
|
|
- Find all Git dependencies and print which application requires them:
|
|
|
|
|
|
|
|
`npm query ":type(git)" | jq 'map(.name)' | xargs -I {} npm why {}`
|