node/deps/npm/man/man3/ls.3
isaacs 054127112c Upgrade npm to 1.1.3
* Update request to support HTTPS-over-HTTP proxy tunneling
* Throw on undefined envs in config settings
* Update which to 1.0.5
* Fix windows UNC busyloop in findPrefix
* Bundle nested bundleDependencies properly
* Alias adduser to add-user
* Doc updates  (Christian Howe, Henrik Hodne, Andrew Lunny)
* ignore logfd/outfd streams in makeEnv() (Rod Vagg)
* shrinkwrap: Behave properly with url-installed deps
* install: Support --save with url install targets
* Support installing naked tars or single-file modules from urls etc.
* init: Don't add engines section
* Don't run make clean on rebuild
* Added missing unicode replacement (atomizer)
2012-03-02 09:31:46 -08:00

87 lines
1.9 KiB
Groff

.\" Generated with Ronnjs/v0.1
.\" http://github.com/kapouer/ronnjs/
.
.TH "NPM\-LS" "3" "March 2012" "" ""
.
.SH "NAME"
\fBnpm-ls\fR \-\- List installed packages
.
.SH "SYNOPSIS"
.
.nf
npm\.commands\.ls(args, [silent,] callback)
.
.fi
.
.SH "DESCRIPTION"
This command will print to stdout all the versions of packages that are
installed, as well as their dependencies, in a tree\-structure\. It will also
return that data using the callback\.
.
.P
This command does not take any arguments, but args must be defined\.
Beyond that, if any arguments are passed in, npm will politely warn that it
does not take positional arguments, though you may set config flags
like with any other command, such as \fBglobal\fR to list global packages\.
.
.P
It will print out extraneous, missing, and invalid packages\.
.
.P
If the silent parameter is set to true, nothing will be output to the screen,
but the data will still be returned\.
.
.P
Callback is provided an error if one occurred, the full data about which
packages are installed and which dependencies they will receive, and a
"lite" data object which just shows which versions are installed where\.
Note that the full data object is a circular structure, so care must be
taken if it is serialized to JSON\.
.
.SH "CONFIGURATION"
.
.SS "long"
.
.IP "\(bu" 4
Default: false
.
.IP "\(bu" 4
Type: Boolean
.
.IP "" 0
.
.P
Show extended information\.
.
.SS "parseable"
.
.IP "\(bu" 4
Default: false
.
.IP "\(bu" 4
Type: Boolean
.
.IP "" 0
.
.P
Show parseable output instead of tree view\.
.
.SS "global"
.
.IP "\(bu" 4
Default: false
.
.IP "\(bu" 4
Type: Boolean
.
.IP "" 0
.
.P
List packages in the global install prefix instead of in the current
project\.
.
.P
Note, if parseable is set or long isn\'t set, then duplicates will be trimmed\.
This means that if a submodule a same dependency as a parent module, then the
dependency will only be output once\.