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/doc
diff options
context:
space:
mode:
authorKat Marchán <kzm@zkat.tech>2018-08-21 05:46:09 +0300
committerKat Marchán <kzm@zkat.tech>2018-12-11 01:55:38 +0300
commit77625f9e20d4285b7726b3bf3ebc10cb21c638f0 (patch)
tree720335c9abad26a1f1fdb05a361abe9021d2a21a /doc
parentad67461dc3a73d5ae6569fdbee44c67e1daf86e7 (diff)
access: stop using npm-registry-client
Diffstat (limited to 'doc')
-rw-r--r--doc/cli/npm-access.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/cli/npm-access.md b/doc/cli/npm-access.md
index bbccfc709..aeea0178e 100644
--- a/doc/cli/npm-access.md
+++ b/doc/cli/npm-access.md
@@ -9,6 +9,9 @@ npm-access(1) -- Set access level on published packages
npm access grant <read-only|read-write> <scope:team> [<package>]
npm access revoke <scope:team> [<package>]
+ npm access 2fa-required [<package>]
+ npm access 2fa-not-required [<package>]
+
npm access ls-packages [<user>|<scope>|<scope:team>]
npm access ls-collaborators [<package> [<user>]]
npm access edit [<package>]
@@ -28,6 +31,10 @@ subcommand.
Add or remove the ability of users and teams to have read-only or read-write
access to a package.
+* 2fa-required / 2fa-not-required:
+ Configure whether a package requires that anyone publishing it have two-factor
+ authentication enabled on their account.
+
* ls-packages:
Show all of the packages a user or a team is able to access, along with the
access level, except for read-only public packages (it won't print the whole
@@ -70,6 +77,7 @@ Management of teams and team memberships is done with the `npm team` command.
## SEE ALSO
+* [`libnpmaccess`](https://npm.im/libnpmaccess)
* npm-team(1)
* npm-publish(1)
* npm-config(7)