Once you have an Organization set up, you'll want to scope packages to that Organization.
Users with Super Admin, Team Admin, and Member roles can perform this action.
To do this, run these commands in the root directory of your package:
> npm init --scope=<org>> npm publish
... where <org>
is the name of your Organization.
If you are using Organizations, there is a good chance that you'll be using the Organization scope regularly.
To save yourself some typing, you can set your Organization as your default scope:
npm config set scope <org>
... where <org>
is the name of your Organization.
Last modified December 29, 2015 Found a typo? Send a pull request!