npm update seems to just update the packages in dependencies, but what about devDependencies.
npm update
dependencies
devDependencies
Right now you can install
To update package.json in addition to the local modules, run
npm update --save-dev
Alternatively, the same command to save time
npm update -D
You can view the full detail of update, or any command for that matter through
npm help