node/deps/npm/node_modules/npm-lifecycle
isaacs 3ebaf6b9bc deps: update npm to 6.12.0
Update npm to 6.12.0

Now `npm ci` runs prepare scripts for git dependencies, and respects the
`--no-optional` argument.  Warnings for `engine` mismatches are printed
again.  Various other fixes and cleanups.

PR-URL: https://github.com/nodejs/node/pull/29885
Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
Reviewed-By: Christian Clauss <cclauss@me.com>
2019-10-15 11:00:21 -07:00
..
lib deps: update npm to 5.5.1 2017-10-29 21:32:15 -04:00
node-gyp-bin deps: upgrade npm to 5.6.0 2018-01-19 11:32:08 -05:00
CHANGELOG.md deps: update npm to 6.12.0 2019-10-15 11:00:21 -07:00
index.js deps: update npm to 6.12.0 2019-10-15 11:00:21 -07:00
LICENSE deps: update npm to 5.5.1 2017-10-29 21:32:15 -04:00
package.json deps: update npm to 6.12.0 2019-10-15 11:00:21 -07:00
README.md deps: upgrade npm to 6.1.0 2018-05-24 23:24:45 -07:00

npm-lifecycle npm version license Travis AppVeyor Coverage Status

npm-lifecycle is a standalone library for executing packages' lifecycle scripts. It is extracted from npm itself and intended to be fully compatible with the way npm executes individual scripts.

Install

$ npm install npm-lifecycle

Table of Contents

Example

// idk yet

Features

  • something cool

Contributing

The npm team enthusiastically welcomes contributions and project participation! There's a bunch of things you can do if you want to contribute! The Contributor Guide has all the information you need for everything from reporting bugs to contributing entire new features. Please don't hesitate to jump in if you'd like to, or even ask us questions if something isn't clear.

API

> lifecycle(name, pkg, wd, [opts]) -> Promise

Arguments
  • opts.stdio - the stdio passed to the child process. [0, 1, 2] by default.
Example
lifecycle()