]> gerrit.simantics Code Review - simantics/district.git/blob - org.simantics.maps.server/node/node-v4.8.0-win-x64/node_modules/npm/doc/cli/npm-owner.md
Adding integrated tile server
[simantics/district.git] / org.simantics.maps.server / node / node-v4.8.0-win-x64 / node_modules / npm / doc / cli / npm-owner.md
1 npm-owner(1) -- Manage package owners
2 =====================================
3
4 ## SYNOPSIS
5
6     npm owner ls <package name>
7     npm owner add <user> <package name>
8     npm owner rm <user> <package name>
9
10     aliases: author
11
12 ## DESCRIPTION
13
14 Manage ownership of published packages.
15
16 * ls:
17   List all the users who have access to modify a package and push new versions.
18   Handy when you need to know who to bug for help.
19 * add:
20   Add a new user as a maintainer of a package.  This user is enabled to modify
21   metadata, publish new versions, and add other owners.
22 * rm:
23   Remove a user from the package owner list.  This immediately revokes their
24   privileges.
25
26 Note that there is only one level of access.  Either you can modify a package,
27 or you can't.  Future versions may contain more fine-grained access levels, but
28 that is not implemented at this time.
29
30 ## SEE ALSO
31
32 * npm-publish(1)
33 * npm-registry(7)
34 * npm-adduser(1)
35 * npm-disputes(7)