npm get version of package code example
Example 1: npm check package version
local packages:
~$ npm list
globally installed packages:
~$ npm list -g
specific package:
~$ npm list <package>
Example 2: npm get latest version of package
npm show {pkg} version
Example 3: npm get version
npm view <package> version