Lines Matching full:package
3 \fBnpm-install\fR - Install a package
8 npm install \[lB]<package-spec> ...\[rB]
15 This command installs a package and any packages that it depends on. If the package has a package-l…
20 \fBpackage-lock.json\fR
26 See \fBpackage-lock.json\fR \fI\(la/configuring-npm/package-lock-json\(ra\fR and npm help shrinkwra…
28 A \fBpackage\fR is:
31 …a folder containing a program described by a \fB\fBpackage.json\fR\fR \fI\(la/configuring-npm/pack…
47 Even if you never publish your package, you can still get a lot of benefits of using npm if you jus…
50 \fBnpm install\fR (in a package directory, no arguments):
54 …to the command), it installs the current package context (ie, the current working directory) as a …
56 …nstall all modules listed as dependencies in \fB\fBpackage.json\fR\fR \fI\(la/configuring-npm/pack…
67 …r>\fR sits outside the root of your project, \fInpm will not install the package dependencies\fR i…
70 NOTE: If you want to install the content of a directory like a package from the registry instead of…
78 npm install ../../other-package --install-links
79 npm install ./sub-package
85 Install a package that is sitting on the filesystem. Note: if you just want to link a dev directory…
92 …package contents should reside in a subfolder inside the tarball (usually it is called \fBpackage/…
95 The package must contain a \fBpackage.json\fR file with \fBname\fR and \fBversion\fR properties.
103 npm install ./package.tgz
136 \fB-P, --save-prod\fR: Package will appear in your \fBdependencies\fR. This is the default unless \…
138 \fB-D, --save-dev\fR: Package will appear in your \fBdevDependencies\fR.
140 \fB-O, --save-optional\fR: Package will appear in your \fBoptionalDependencies\fR.
146 When using any of the above options to save dependencies to your package.json, there are two additi…
155 Further, if you have an \fBnpm-shrinkwrap.json\fR or \fBpackage-lock.json\fR then it will be update…
157 \fB<scope>\fR is optional. The package will be downloaded from the registry associated with the spe…
175 …g directory, then it will try to install that, and only try to fetch the package by name if it is …
179 …package under a custom alias. Allows multiple versions of a same-name package side-by-side, more c…
188 npm install npa@npm:npm-package-arg
194 … the version of the package that is referenced by the specified tag. If the tag does not exist in …
207 Install the specified version of the package. This will fail if the version has not been published …
220 …package matching the specified version range. This will follow the same rules for resolving depend…
235 Installs the package from the hosted git provider, cloning it with \fBgit\fR. For a full git remote…
249 …package being installed contains a \fBprepare\fR script, its \fBdependencies\fR and \fBdevDependen…
289 Install the package at \fBhttps://github.com/githubname/githubrepo\fR by attempting to clone it usi…
293 …nd \fBdevDependencies\fR will be installed if the package has a \fBprepare\fR script before the pa…
306 …package at \fBhttps://gist.github.com/gistID\fR by attempting to clone it using \fBgit\fR. The Git…
308 …nd \fBdevDependencies\fR will be installed if the package has a \fBprepare\fR script before the pa…
320 Install the package at \fBhttps://bitbucket.org/bitbucketname/bitbucketrepo\fR by attempting to clo…
324 …nd \fBdevDependencies\fR will be installed if the package has a \fBprepare\fR script before the pa…
336 Install the package at \fBhttps://gitlab.com/gitlabname/gitlabrepo\fR by attempting to clone it usi…
340 …nd \fBdevDependencies\fR will be installed if the package has a \fBprepare\fR script before the pa…
365 The \fB--package-lock-only\fR argument will only update the \fBpackage-lock.json\fR, instead of che…
388 Save installed packages to a \fBpackage.json\fR file as dependencies.
390 When used with the \fBnpm rm\fR command, removes the dependency from \fBpackage.json\fR.
392 Will also prevent writing to \fBpackage-lock.json\fR if set to \fBfalse\fR.
402 Dependencies saved to package.json will be configured with an exact version rather than using npm's…
443 …package installs in \fBnode_modules\fR, install packages in the same manner that they are depended…
467 Note that these dependencies \fIare\fR still resolved and added to the \fBpackage-lock.json\fR or \…
469 If a package type appears in both the \fB--include\fR and \fB--omit\fR lists, then it will be inclu…
483 …some packages receiving a peer dependency outside the range set in their package's \fBpeerDependen…
496 .SS "\fBpackage-lock\fR"
505 …f set to false, then ignore \fBpackage-lock.json\fR files when installing. This will also prevent …
506 .SS "\fBpackage-lock-only\fR"
515 If set to true, the current operation will only use the \fBpackage-lock.json\fR, ignoring \fBnode_m…
517 For \fBupdate\fR this means only the \fBpackage-lock.json\fR will be updated, instead of checking \…
519 For \fBlist\fR this means the output will be based on the tree described by the \fBpackage-lock.jso…
541 If true, npm does not run scripts specified in package.json files.
563 Tells npm to create symlinks (or \fB.cmd\fR shims on Windows) for package executables.
658 Given a \fBpackage{dep}\fR structure: \fBA{B,C}, B{C}, C{D}\fR, the npm install algorithm produces:
715 \fBpackage.json\fR \fI\(la/configuring-npm/package-json\(ra\fR