Vasyl Boroviak
Vasyl Boroviak

Reputation: 6128

How to securely publish same npm package by several different people?

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

Answers (1)

mariocatch
mariocatch

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

Related Questions