Reputation: 6128
There is an open source project. Multiple people are working on it. Multiple people need to publish it to the NPM registry.
How to securely publish a single project by multiple people?
Obviously, the owner of the package do not want to give his login/password to other people.
Upvotes: 6
Views: 482
Reputation: 8683
From the npm docs:
npm owner add <user> [<@scope>/]<pkg>
npm owner rm <user> [<@scope>/]<pkg>
npm owner ls [<@scope>/]<pkg>
https://docs.npmjs.com/cli/owner
Upvotes: 3