npm ls -gl --depth=0
npm view <package> [versions|author|license]
npm set init.author.name "$NAME"
npm set init.author.email "$EMAIL"
npm set init.author.url "$SITE"
npm version 2.1.0
npm dedupe
npm prune
npm bugs <package>
npm bugs # Current project's bugtracker
npm doctor
npm run
has a --silent
option which reduces the output in the Terminal.
"scripts": {
"lint": "xo",
"lint:fix": "npm run lint --silent -- --fix",
}