How to discover the version of an installed node.js/npm package?
This prints the form of npm itself:
npm -v <package-name>
This prints a cryptic mistake:
npm version <package-name>
This prints the package form on the registry (for example the most recent version accessible):
npm view <package-name> version
How do I get the installed version?