Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2010-07-25 23:17:19 +0400
committerisaacs <i@izs.me>2010-07-25 23:18:37 +0400
commit0bd52f0b0bdcb96aacbb1ac2cd4cd1ef99c0eb4e (patch)
treeb130369421ed93d645f7de960b87bad414e7d27f /man
parent7d7f219a06113e3265fdb8f0261bdaccb1f38162 (diff)
make doc
Diffstat (limited to 'man')
-rw-r--r--man/owner.134
1 files changed, 34 insertions, 0 deletions
diff --git a/man/owner.1 b/man/owner.1
new file mode 100644
index 000000000..2e80c6d0d
--- /dev/null
+++ b/man/owner.1
@@ -0,0 +1,34 @@
+.\" generated with Ronn/v0.7.3
+.\" http://github.com/rtomayko/ronn/tree/0.7.3
+.
+.TH "NPM\-OWNER" "1" "July 2010" "" ""
+.
+.SH "NAME"
+\fBnpm\-owner\fR \- Manage package owners
+.
+.SH "SYNOPSIS"
+.
+.nf
+
+npm owner ls <pkg>
+npm owner add <user> <pkg>
+npm owner rm <user> <pkg>
+.
+.fi
+.
+.SH "DESCRIPTION"
+.
+.TP
+ls
+List all the users who have access to modify a package and push new versions\. Handy when you need to know who to bug for help\.
+.
+.TP
+add
+Add a new user as a maintainer of a package\. This user is enabled to modify metadata, publish new versions, and add other owners\.
+.
+.TP
+rm
+Remove a user from the package owner list\. This immediately revokes their privileges\.
+.
+.P
+Note that there is only one level of access\. Either you can modify a package, or you can\'t\. Future versions may contain more fine\-grained access levels, but that is not implemented at this time\.