summaryrefslogtreecommitdiff
path: root/deps/npm/doc/misc/npm-config.md
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/doc/misc/npm-config.md')
-rw-r--r--deps/npm/doc/misc/npm-config.md39
1 files changed, 23 insertions, 16 deletions
diff --git a/deps/npm/doc/misc/npm-config.md b/deps/npm/doc/misc/npm-config.md
index 035923fa6..8b5ae12c0 100644
--- a/deps/npm/doc/misc/npm-config.md
+++ b/deps/npm/doc/misc/npm-config.md
@@ -50,6 +50,7 @@ The following shorthands are parsed on the command-line:
* `-dd`, `--verbose`: `--loglevel verbose`
* `-ddd`: `--loglevel silly`
* `-g`: `--global`
+* `-C`: `--prefix`
* `-l`: `--long`
* `-m`: `--message`
* `-p`, `--porcelain`: `--parseable`
@@ -253,12 +254,6 @@ set.
The command to run for `npm edit` or `npm config edit`.
-### email
-
-The email of the logged-in user.
-
-Set by the `npm adduser` command. Should not be set explicitly.
-
### engine-strict
* Default: false
@@ -417,6 +412,14 @@ The value `npm init` should use by default for the package author's homepage.
The value `npm init` should use by default for the package license.
+### init.version
+
+* Default: "0.0.0"
+* Type: semver
+
+The value that `npm init` should use by default for the package
+version number, if not already set in package.json.
+
### json
* Default: false
@@ -463,7 +466,7 @@ to the npm registry. Must be IPv4 in versions of Node prior to 0.12.
* Default: "http"
* Type: String
-* Values: "silent", "win", "error", "warn", "http", "info", "verbose", "silly"
+* Values: "silent", "error", "warn", "http", "info", "verbose", "silly"
What level of logs to report. On failure, *all* logs are written to
`npm-debug.log` in the current working directory.
@@ -663,14 +666,25 @@ Only works if there is already a package.json file present.
* Default: '^'
* Type: String
-Configure how versions of packages installed to a package.json file via
+Configure how versions of packages installed to a package.json file via
`--save` or `--save-dev` get prefixed.
For example if a package has version `1.2.3`, by default it's version is
-set to `^1.2.3` which allows minor upgrades for that package, but after
+set to `^1.2.3` which allows minor upgrades for that package, but after
`npm config set save-prefix='~'` it would be set to `~1.2.3` which only allows
patch upgrades.
+### scope
+
+* Default: ""
+* Type: String
+
+Associate an operation with a scope for a scoped registry. Useful when logging
+in to a private registry for the first time:
+`npm login --scope=@organization --registry=registry.organization.com`, which
+will cause `@organization` to be mapped to the registry for future installation
+of packages specified according to the pattern `@organization/package`.
+
### searchopts
* Default: ""
@@ -794,13 +808,6 @@ instead of complete help when doing `npm-help(1)`.
The UID to set to when running package scripts as root.
-### username
-
-* Default: null
-* Type: String
-
-The username on the npm registry. Set with `npm adduser`
-
### userconfig
* Default: ~/.npmrc