]> gerrit.simantics Code Review - simantics/district.git/blob - org.simantics.maps.server/node/node-v4.8.0-win-x64/node_modules/npm/doc/api/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 / api / npm-owner.md
1 npm-owner(3) -- Manage package owners
2 =====================================
3
4 ## SYNOPSIS
5
6     npm.commands.owner(args, callback)
7
8 ## DESCRIPTION
9
10 The first element of the 'args' parameter defines what to do, and the subsequent
11 elements depend on the action. Possible values for the action are (order of
12 parameters are given in parenthesis):
13
14 * ls (package):
15   List all the users who have access to modify a package and push new versions.
16   Handy when you need to know who to bug for help.
17 * add (user, package):
18   Add a new user as a maintainer of a package.  This user is enabled to modify
19   metadata, publish new versions, and add other owners.
20 * rm (user, package):
21   Remove a user from the package owner list.  This immediately revokes their
22   privileges.
23
24 Note that there is only one level of access.  Either you can modify a package,
25 or you can't.  Future versions may contain more fine-grained access levels, but
26 that is not implemented at this time.
27
28 ## SEE ALSO
29
30 * npm-publish(3)
31 * npm-registry(7)