diff options
Diffstat (limited to 'deps/npm/doc/cli/config.md')
-rw-r--r-- | deps/npm/doc/cli/config.md | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/deps/npm/doc/cli/config.md b/deps/npm/doc/cli/config.md index 1ede36292e..e380e65eff 100644 --- a/deps/npm/doc/cli/config.md +++ b/deps/npm/doc/cli/config.md @@ -212,7 +212,7 @@ See also the `strict-ssl` config. ### cache -* Default: Windows: `~/npm-cache`, Posix: `~/.npm` +* Default: Windows: `%APPDATA%\npm-cache`, Posix: `~/.npm` * Type: path The location of npm's cache directory. See `npm-cache(1)` @@ -474,6 +474,18 @@ Set to true to run in "production" mode. local `npm install` without any arguments. 2. Set the NODE_ENV="production" for lifecycle scripts. +### proprietary-attribs + +* Default: true +* Type: Boolean + +Whether or not to include proprietary extended attributes in the +tarballs created by npm. + +Unless you are expecting to unpack package tarballs with something other +than npm -- particularly a very outdated tar implementation -- leave +this as true. + ### proxy * Default: `HTTP_PROXY` or `http_proxy` environment variable, or null |