- make your changes and merge your stuff into master
git push origin master
- Bump your version number in package.json, add a new tag and commit
npm version patch
- Check that this worked by inspecting the commit history
git log
- Push these changes to origin
git push origin master --tags
- Verify that your new version is up
git ls-remote --tags origin
- Use your new package!
"dependencies": {
"your-package" : git://github.com/kumikoda/your-package.git#v0.0.1
}