diff options
Diffstat (limited to 'deps/npm/man/man1/npm-view.1')
-rw-r--r-- | deps/npm/man/man1/npm-view.1 | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/deps/npm/man/man1/npm-view.1 b/deps/npm/man/man1/npm-view.1 index af435f023d..35ef045329 100644 --- a/deps/npm/man/man1/npm-view.1 +++ b/deps/npm/man/man1/npm-view.1 @@ -1,13 +1,13 @@ -.TH "NPM\-VIEW" "1" "September 2014" "" "" +.TH "NPM\-VIEW" "1" "October 2014" "" "" .SH "NAME" \fBnpm-view\fR \- View registry info .SH SYNOPSIS .P .RS 2 -.EX +.nf npm view [@<scope>/]<name>[@<version>] [<field>[\.<subfield>]\.\.\.] npm v [@<scope>/]<name>[@<version>] [<field>[\.<subfield>]\.\.\.] -.EE +.fi .RE .SH DESCRIPTION .P @@ -18,9 +18,9 @@ To show the package registry entry for the \fBconnect\fR package, you can do this: .P .RS 2 -.EX +.nf npm view connect -.EE +.fi .RE .P The default version is "latest" if unspecified\. @@ -30,9 +30,9 @@ For example, to show the dependencies of the \fBronn\fR package at version 0\.3\.5, you could do the following: .P .RS 2 -.EX +.nf npm view ronn@0\.3\.5 dependencies -.EE +.fi .RE .P You can view child field by separating them with a period\. @@ -40,9 +40,9 @@ To view the git repository URL for the latest version of npm, you could do this: .P .RS 2 -.EX +.nf npm view npm repository\.url -.EE +.fi .RE .P This makes it easy to view information about a dependency with a bit of @@ -50,9 +50,9 @@ shell scripting\. For example, to view all the data about the version of opts that ronn depends on, you can do this: .P .RS 2 -.EX +.nf npm view opts@$(npm view ronn dependencies\.opts) -.EE +.fi .RE .P For fields that are arrays, requesting a non\-numeric field will return @@ -60,9 +60,9 @@ all of the values from the objects in the list\. For example, to get all the contributor names for the "express" project, you can do this: .P .RS 2 -.EX +.nf npm view express contributors\.email -.EE +.fi .RE .P You may also use numeric indices in square braces to specifically select @@ -70,9 +70,9 @@ an item in an array field\. To just get the email address of the first contributor in the list, you can do this: .P .RS 2 -.EX +.nf npm view express contributors[0]\.email -.EE +.fi .RE .P Multiple fields may be specified, and will be printed one after another\. @@ -80,9 +80,9 @@ For exampls, to get all the contributor names and email addresses, you can do this: .P .RS 2 -.EX +.nf npm view express contributors\.name contributors\.email -.EE +.fi .RE .P "Person" fields are shown as a string if they would be shown as an @@ -90,9 +90,9 @@ object\. So, for example, this will show the list of npm contributors in the shortened string format\. (See npm help 5 \fBpackage\.json\fR for more on this\.) .P .RS 2 -.EX +.nf npm view npm contributors -.EE +.fi .RE .P If a version range is provided, then data will be printed for every @@ -100,9 +100,9 @@ matching version of the package\. This will show which version of jsdom was required by each matching version of yui3: .P .RS 2 -.EX +.nf npm view yui3@'>0\.5\.4' dependencies\.jsdom -.EE +.fi .RE .SH OUTPUT .P |