Bump a package version
npm version [major | minor | patch]
Changing a remote repository's URL
$ git remote -v
> origin [email protected]:OWNER/REPOSITORY.git (fetch)
> origin [email protected]:OWNER/REPOSITORY.git (push)
$ git remote set-url origin https://github.com/OWNER/REPOSITORY.git
$ git remote -v
> origin https://github.com/OWNER/REPOSITORY.git (fetch)
> origin https://github.com/OWNER/REPOSITORY.git (push)