In order to bump a version, just use the npm module.
# Breaking changes.
npm version major
# Non-breaking changes.
npm version minor
# Bug fixes.
npm version patch
# Specific version.
npm version 2.0.0
In order to publish, just execute npm publish
and enter your account credentials.
npm publish