It extracts the "dependencies" from package.json
to pipe it into qnm
:
It is done via jq ".dependencies"
piped into jq "keys"
to retrieves the dependency
names.
Finally, the xargs utility is used to execute the qnm
tool command for each dependency.
(The sed utility is used to remove any commas, and the array- brackets)