package.json

If you want to use a devel or feature branch, or if a package has not been published to the NPM registry, or cannot be published because it is a private module, point to git://URI instead of the version number package.json:

“dependencies”: { “public”: “git://github.com/user/repo.git#ref”, “private”: Git + SSH ://[email protected]:user/repo.git#ref”} The #ref part is optional, and it can be a branch (such as master), a marker (such as 0.0.1), or a partial or full commit ID.

lerna

Segmentfault.com/a/119000002…