Checks if version in local package.json is higher than in npm
This utility will throw an error when local version <= remote version
You can pair this tool with CI/CD tools to ensure your package.json version is properly increased before being merged to master.
npm install npm-version-bump-checker --save-devAdd the proper npm script for your NodeJS platform to the scripts key in package.json:
"can-publish-nix": "npm info $npm_package_name version | npm-version-bump-checker"
"can-publish-win": "npm info %npm_package_name% version | npm-version-bump-checker"