Giter Club home page Giter Club logo

cli's Introduction

npm - a JavaScript package manager

npm version license CI - cli Benchmark Suite

Requirements

One of the following versions of Node.js must be installed to run npm:

  • 18.x.x >= 18.17.0
  • 20.5.0 or higher

Installation

npm comes bundled with node, & most third-party distributions, by default. Officially supported downloads/distributions can be found at: nodejs.org/en/download

Direct Download

You can download & install npm directly from npmjs.com using our custom install.sh script:

curl -qL https://www.npmjs.com/install.sh | sh

Node Version Managers

If you're looking to manage multiple versions of Node.js &/or npm, consider using a node version manager

Usage

npm <command>

Links & Resources

  • Documentation - Official docs & how-tos for all things npm
    • Note: you can also search docs locally with npm help-search <query>
  • Bug Tracker - Search or submit bugs against the CLI
  • Roadmap - Track & follow along with our public roadmap
  • Feedback - Contribute ideas & discussion around the npm registry, website & CLI
  • RFCs - Contribute ideas & specifications for the API/design of the npm CLI
  • Service Status - Monitor the current status & see incident reports for the website & registry
  • Project Status - See the health of all our maintained OSS projects in one view
  • Events Calendar - Keep track of our Open RFC calls, releases, meetups, conferences & more
  • Support - Experiencing problems with the npm website or registry? File a ticket here

Acknowledgments

  • npm is configured to use the npm Public Registry at https://registry.npmjs.org by default; Usage of this registry is subject to Terms of Use available at https://npmjs.com/policies/terms
  • You can configure npm to use any other compatible registry you prefer. You can read more about configuring third-party registries here

FAQ on Branding

Is it "npm" or "NPM" or "Npm"?

npm should never be capitalized unless it is being displayed in a location that is customarily all-capitals (ex. titles on man pages).

Is "npm" an acronym for "Node Package Manager"?

Contrary to popular belief, npm is not in fact an acronym for "Node Package Manager"; It is a recursive bacronymic abbreviation for "npm is not an acronym" (if the project was named "ninaa", then it would be an acronym). The precursor to npm was actually a bash utility named "pm", which was the shortform name of "pkgmakeinst" - a bash function that installed various things on various platforms. If npm were to ever have been considered an acronym, it would be as "node pm" or, potentially "new pm".

cli's People

Contributors

bdehamer avatar bengl avatar claudiahdz avatar darcyclarke avatar domenic avatar ethomson avatar evnm avatar fritzy avatar github-actions[bot] avatar iarna avatar isaacs avatar kemitchell avatar kenany avatar larsgw avatar ljharb avatar luk- avatar lukekarrys avatar mfncooper avatar nlf avatar npm-cli-bot avatar npm-robot avatar othiym23 avatar robertkowalski avatar ruyadorno avatar smikes avatar timoxley avatar watilde avatar wraithgar avatar xhmikosr avatar zkat avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

cli's Issues

[BUG] NPM does not show the URL in the console if a 401 occur.

What / Why

When running an npm ci, if a 401 occur while fetching the packages, the error is displayed in console, but the URL of the request (and the package requested) is present only in the log files.
When a 401 occur, i think the url and the package name are crucial information for the user.

When

Running npm ci, with bad(expired/wrong) credentials for a scope.

How

Current Behavior

Npm CI run and show a 401 error.

npm WARN prepare removing existing node_modules/ before installation
npm ERR! code E401
npm ERR! Unable to authenticate, need: [Private]

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\[Private]\AppData\Roaming\npm-cache\_logs\2019-11-07T10_06_48_484Z-debug.log

Steps to Reproduce

  • Put bad credentials on a private scope.
  • Run npm ci

Expected Behavior

npm should show the package that couldn't be downloaded, and the url that returned a 401.

Update node-gyp to v6.x

What / Why

Update node-gyp dependency to v6.x to fix build issues on macOS

When

  • When installing packages with node-gyp builds on macOS

Where

  • NPM CLI (install command)

How

Current Behavior

Expected Behavior

  • Install packages successfully

Who

  • Any package with native code that does not have a pre-built binary it can use

References

Package search scores are broken

  Original bug ticket: [https://npm.community/t/10188](https://npm.community/t/10188)
  Originally filed: 2019-09-22T15:07:32.822Z

bug "with npm itself"

  Original bug ticket: [https://npm.community/t/10533](https://npm.community/t/10533)
  Originally filed: 2019-10-15T02:04:22.481Z

Per-package `isTfaRequired(spec, opts)`

I understand there is registry API work required to implement, but would this be the appropriate package for such a method?

Thanks a ton for extracting this library!

[BUG] ci and install run preinstall lifecycle script at different times

What / Why

NPM run preinstall script at different times in the lifecycle, if a package is installed via npm ci or npm install
This issue is the same than this one: https://npm.community/t/ci-and-install-run-preinstall-lifecycle-script-at-different-times/7317
Issue that got closed while being acknowledged as a bug.

How

Current Behavior

When running npm i the preinstall script is ran before downloading a package.
When running npm ci the preinstall script is ran after downloading the package, before it is installed.

Steps to Reproduce

npm install/npm ci any project.

Expected Behavior

The script preinstall should be run before downloading the package for npm ci.

Use Case

While running npm install, we start a proxy, and packages are resolved trough this proxy.
When running npm ci, the proxy doesn't start, and npm cannot resolve the package.

[FEATURE] Provide credentials to npm trough environment variables

What / Why

Today the only way to give npm the PAT to push packages is to add the PAT in the .npmrc.
In order to authenticate, our CI must inject the credentials in the .npmrc, then revert the change when the operation is done.
It would be far better if we could give credentials to npm directly via environment variables, so we can stop using this "workaround".

Checksum failure

  Original bug ticket: [https://npm.community/t/10571](https://npm.community/t/10571)
  Originally filed: 2019-10-16T12:00:27.071Z

[BUG] npm install as root fails with lots of ENOENT, when node_modules is owned by different user on 6.11-6.13.0

What / Why

npm 6.13.0 spews a lot of ENOENT when node_modules directory does not exist, it also fails to download private packages from git

When

  • on every dokcerized build in our CI, as there is no node_modules directory in repo from which code is cloned
  • repo files are downloaded and created by uid 1000, but npm is run as root in container
  • also 100% reproducible for our application when run from terminal

Where

  • n/a

How

Current Behavior

  • with no node_modules directory (parent directory owned by uid 1000):
# rm -rf node_modules; npm install
npm WARN tar ENOENT: no such file or directory, open '/snip/node_modules/.staging/gulp-32c60be4/package.json'
npm WARN tar ENOENT: no such file or directory, open '/snip/node_modules/.staging/gulp-32c60be4/README.md'
npm WARN tar ENOENT: no such file or directory, open '/snip/node_modules/.staging/gulp-32c60be4/LICENSE'
(... there are tens of those ENOENTs)
npm ERR! Error while executing:
npm ERR! /usr/bin/git ls-remote -h -t ssh://git@<private server>/admin-template.git
npm ERR! 
npm ERR! No user exists for uid 1000
npm ERR! fatal: Could not read from remote repository.
npm ERR! 
npm ERR! Please make sure you have the correct access rights
npm ERR! and the repository exists.
npm ERR! 
npm ERR! exited with error code: 128

npm ERR! A complete log of this run can be found in:
npm ERR!     /root/.npm/_logs/2019-11-06T11_08_52_469Z-debug.log
  • with (empty) node_modules directory (created by root):
# rm -rf node_modules; mkdir node_modules; npm install
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})

added 921 packages from 509 contributors and audited 4933 packages in 17.315s

Steps to Reproduce

  • rm -rf node_modules; npm install

Expected Behavior

  • node_modules is created before packages are written to it, npm install runs the same no matter if there is no node_modules or empty node_modules directory

Who

  • n/a

References

  • n/a

npm ERR! related to cb() never called!

  Original bug ticket: [https://npm.community/t/10263](https://npm.community/t/10263)
  Originally filed: 2019-09-26T10:34:56.155Z

From original issue: https://npm.community/t/10263
Debug log: 2019-09-26T10_05_20_855Z-debug.log
Triggered action: npm install

Platform info:

$ npm --versions
{ endless: '0.0.0',
  npm: '6.9.0',
  ares: '1.15.0',
  brotli: '1.0.7',
  cldr: '35.1',
  http_parser: '2.8.0',
  icu: '64.2',
  modules: '64',
  napi: '4',
  nghttp2: '1.34.0',
  node: '10.16.1',
  openssl: '1.1.1c',
  tz: '2019a',
  unicode: '12.1',
  uv: '1.28.0',
  v8: '6.8.275.32-node.54',
  zlib: '1.2.11' }
$ node -p process.platform
win32

Additional information:

Debug log: 2019-09-28T01_44_26_454Z-debug.log
Triggered action: vue create <app>

Platform info: (incomplete)

npm --versions
{ npm: โ€˜6.2.0โ€™,
ares: โ€˜1.14.0โ€™,
cldr: โ€˜33.1โ€™,
http_parser: โ€˜2.8.0โ€™,
icu: โ€˜62.1โ€™,
modules: โ€˜64โ€™,
napi: โ€˜3โ€™,
nghttp2: โ€˜1.32.0โ€™,
node: โ€˜10.9.0โ€™,
openssl: โ€˜1.1.0iโ€™,
tz: โ€˜2018eโ€™,
unicode: โ€˜11.0โ€™,
uv: โ€˜1.22.0โ€™,
v8: โ€˜6.8.275.24-node.14โ€™,
zlib: โ€˜1.2.11โ€™ }

[BUG] registry: Package metadata not updated right after publish

What

We published version 1.7.0 of the package @ui5/builder. For the next 1.5 hours npm info @ui5/builder@latest --no-cache still returned 1.6.1 as latest.

Basically we are interested in whether this currently "works-as-designed" as part of your load balancing/infrastructure.

npm install @ui5/[email protected] is working fine right away. However, we have an in-house npm proxy server which, upon proxying a request for a new version of a package, first fetches its metadata. If no metadata for the requested version is found, the package can't be installed from this proxy.
Apparently, the proxy holds this event in a negative cache for another 24 hours. So it is not possible to install the @latest version of the package from the proxy in that timeframe, which even breaks the install of some depending projects that do not use lockfiles.

Now we are wondering whether this proxy is making wrong assumptions on how the package metadata should be used or whether this is something that should normally work from your point of view.

When

2019-11-07 15:58:51 UTC

  • Published @ui5/builder/1.7.0

2019-11-07 17:07 UTC:

2019-11-07 17:34 UTC:

Where

  • npm public registry

How

Current Behavior

All commands where executed between 17:10 and 17:30 UTC

โฏ npm info @ui5/builder@latest --no-cache --verbose
npm info it worked if it ends with ok
npm verb cli [
npm verb cli   '/<nvm-node-path>/v12.13.0/bin/node',
npm verb cli   '/<nvm-node-path>/v12.13.0/bin/npm',
npm verb cli   'info',
npm verb cli   '@ui5/builder@latest',
npm verb cli   '--no-cache',
npm verb cli   '--verbose'
npm verb cli ]
npm info using [email protected]
npm info using [email protected]
npm verb npm-session a5cf1f83f8ac0707
npm http fetch GET 304 https://registry.npmjs.org/@ui5%2fbuilder 272ms (from cache)

@ui5/[email protected] | Apache-2.0 | deps: 22 | versions: 39
[...]
โฏ npm info @ui5/[email protected] --no-cache --verbose
npm info it worked if it ends with ok
npm verb cli [
npm verb cli   '/<nvm-node-path>/v12.13.0/bin/node',
npm verb cli   '/<nvm-node-path>/v12.13.0/bin/npm',
npm verb cli   'info',
npm verb cli   '@ui5/[email protected]',
npm verb cli   '--no-cache',
npm verb cli   '--verbose'
npm verb cli ]
npm info using [email protected]
npm info using [email protected]
npm verb npm-session 73b33e262cbf4048
npm http fetch GET 304 https://registry.npmjs.org/@ui5%2fbuilder 357ms (from cache)
npm verb exit [ 0, true ]
npm timing npm Completed in 622ms
npm info ok 
npm i @ui5/[email protected] --verbose --no-cache

โฏ npm i @ui5/[email protected] --verbose --no-cache
npm info it worked if it ends with ok
npm verb cli [
npm verb cli   '/<nvm-node-path>/v12.6.0/bin/node',
npm verb cli   '/<nvm-node-path>/v12.6.0/bin/npm',
npm verb cli   'i',
npm verb cli   '@ui5/[email protected]',
npm verb cli   '--verbose',
npm verb cli   '--no-cache'
npm verb cli ]
npm info using [email protected]
npm info using [email protected]
npm verb npm-session d5e0cd50d40ceca2
npm http fetch GET 200 https://registry.npmjs.org/@ui5%2fbuilder 285ms
npm timing stage:loadCurrentTree Completed in 321ms
npm timing stage:loadIdealTree:cloneCurrentTree Completed in 0ms
npm timing stage:loadIdealTree:loadShrinkwrap Completed in 143ms
npm http fetch GET 200 https://registry.npmjs.org/escope 68ms
npm http fetch GET 200 https://registry.npmjs.org/globby 68ms
npm http fetch GET 200 https://registry.npmjs.org/esprima 69ms
npm http fetch GET 200 https://registry.npmjs.org/estraverse 70ms
npm http fetch GET 200 https://registry.npmjs.org/graceful-fs 71ms
npm http fetch GET 200 https://registry.npmjs.org/escape-unicode 79ms
npm http fetch GET 200 https://registry.npmjs.org/cheerio 81ms
npm http fetch GET 200 https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz 37ms
npm http fetch GET 200 https://registry.npmjs.org/jsdoc 41ms
npm http fetch GET 200 https://registry.npmjs.org/make-dir 36ms
npm http fetch GET 200 https://registry.npmjs.org/rimraf 36ms
npm http fetch GET 200 https://registry.npmjs.org/pretty-hrtime 67ms
npm http fetch GET 200 https://registry.npmjs.org/pretty-data 69ms
npm http fetch GET 200 https://registry.npmjs.org/less-openui5 108ms
npm http fetch GET 200 https://registry.npmjs.org/semver 38ms
npm http fetch GET 200 https://registry.npmjs.org/slash 39ms
npm http fetch GET 200 https://registry.npmjs.org/escodegen 210ms
npm http fetch GET 200 https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz 42ms
npm http fetch GET 200 https://registry.npmjs.org/terser 51ms
npm http fetch GET 200 https://registry.npmjs.org/xml2js 53ms
npm http fetch GET 200 https://registry.npmjs.org/@ui5%2ffs 247ms
npm http fetch GET 200 https://registry.npmjs.org/yazl 30ms
npm http fetch GET 200 https://registry.npmjs.org/replacestream 146ms
npm http fetch GET 200 https://registry.npmjs.org/@ui5%2flogger 434ms
npm http fetch GET 200 https://registry.npmjs.org/mock-require 27ms
npm http fetch GET 200 https://registry.npmjs.org/clone 31ms
npm http fetch GET 200 https://registry.npmjs.org/random-int 42ms
npm http fetch GET 200 https://registry.npmjs.org/minimatch 43ms
npm http fetch GET 200 https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz 25ms
npm http fetch GET 200 https://registry.npmjs.org/micromatch 838ms
npm http fetch GET 200 https://registry.npmjs.org/npmlog 23ms
npm http fetch GET 200 https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz 39ms
npm http fetch GET 200 https://registry.npmjs.org/set-blocking 22ms
npm http fetch GET 200 https://registry.npmjs.org/gauge 26ms
npm http fetch GET 200 https://registry.npmjs.org/are-we-there-yet 35ms
npm http fetch GET 200 https://registry.npmjs.org/console-control-strings 37ms
npm http fetch GET 200 https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz 28ms
npm http fetch GET 200 https://registry.npmjs.org/delegates 27ms
npm http fetch GET 200 https://registry.npmjs.org/readable-stream 139ms
npm http fetch GET 200 https://registry.npmjs.org/inherits 30ms
npm http fetch GET 200 https://registry.npmjs.org/safe-buffer 33ms
npm http fetch GET 200 https://registry.npmjs.org/util-deprecate 33ms
npm http fetch GET 200 https://registry.npmjs.org/isarray 37ms
npm http fetch GET 200 https://registry.npmjs.org/core-util-is 39ms
npm http fetch GET 200 https://registry.npmjs.org/string_decoder 43ms
npm http fetch GET 200 https://registry.npmjs.org/process-nextick-args 51ms
npm http fetch GET 200 https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz 20ms
npm http fetch GET 200 https://registry.npmjs.org/string-width 30ms
npm http fetch GET 200 https://registry.npmjs.org/has-unicode 34ms
npm http fetch GET 200 https://registry.npmjs.org/strip-ansi 35ms
npm http fetch GET 200 https://registry.npmjs.org/signal-exit 36ms
npm http fetch GET 200 https://registry.npmjs.org/wide-align 36ms
npm http fetch GET 200 https://registry.npmjs.org/object-assign 43ms
npm http fetch GET 200 https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz 22ms
npm http fetch GET 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz 26ms
npm http fetch GET 200 https://registry.npmjs.org/aproba 124ms
npm http fetch GET 200 https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz 19ms
npm http fetch GET 200 https://registry.npmjs.org/is-fullwidth-code-point 22ms
npm http fetch GET 200 https://registry.npmjs.org/code-point-at 33ms
npm http fetch GET 200 https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz 28ms
npm http fetch GET 200 https://registry.npmjs.org/number-is-nan 21ms
npm http fetch GET 200 https://registry.npmjs.org/ansi-regex 21ms
npm http fetch GET 200 https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz 20ms
npm http fetch GET 200 https://registry.npmjs.org/dir-glob 22ms
npm http fetch GET 200 https://registry.npmjs.org/@types%2fglob 25ms
npm http fetch GET 200 https://registry.npmjs.org/fast-glob 36ms
npm http fetch GET 200 https://registry.npmjs.org/ignore 38ms
npm http fetch GET 200 https://registry.npmjs.org/array-union 41ms
npm http fetch GET 200 https://registry.npmjs.org/merge2 40ms
npm http fetch GET 200 https://registry.npmjs.org/glob 41ms
npm http fetch GET 200 https://registry.npmjs.org/@types%2fminimatch 28ms
npm http fetch GET 200 https://registry.npmjs.org/@types%2fevents 35ms
npm http fetch GET 200 https://registry.npmjs.org/@types%2fnode 47ms
npm http fetch GET 200 https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz 34ms
npm http fetch GET 200 https://registry.npmjs.org/path-type 38ms
npm http fetch GET 200 https://registry.npmjs.org/glob-parent 20ms
npm http fetch GET 200 https://registry.npmjs.org/@nodelib%2ffs.stat 219ms
npm http fetch GET 200 https://registry.npmjs.org/@nodelib%2ffs.walk 245ms
npm http fetch GET 200 https://registry.npmjs.org/fastq 20ms
npm http fetch GET 200 https://registry.npmjs.org/@nodelib%2ffs.scandir 245ms
npm http fetch GET 200 https://registry.npmjs.org/run-parallel 26ms
npm http fetch GET 200 https://registry.npmjs.org/reusify 24ms
npm http fetch GET 200 https://registry.npmjs.org/is-glob 24ms
npm http fetch GET 200 https://registry.npmjs.org/is-extglob 44ms
npm http fetch GET 200 https://registry.npmjs.org/picomatch 22ms
npm http fetch GET 200 https://registry.npmjs.org/braces 28ms
npm http fetch GET 200 https://registry.npmjs.org/fill-range 28ms
npm http fetch GET 200 https://registry.npmjs.org/to-regex-range 32ms
npm http fetch GET 200 https://registry.npmjs.org/is-number 26ms
npm http fetch GET 200 https://registry.npmjs.org/path-is-absolute 21ms
npm http fetch GET 200 https://registry.npmjs.org/once 22ms
npm http fetch GET 200 https://registry.npmjs.org/fs.realpath 23ms
npm http fetch GET 200 https://registry.npmjs.org/inflight 28ms
npm http fetch GET 200 https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz 28ms
npm http fetch GET 200 https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz 23ms
npm http fetch GET 200 https://registry.npmjs.org/wrappy 18ms
npm http fetch GET 200 https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz 36ms
npm http fetch GET 200 https://registry.npmjs.org/brace-expansion 139ms
npm http fetch GET 200 https://registry.npmjs.org/balanced-match 20ms
npm http fetch GET 200 https://registry.npmjs.org/concat-map 25ms
npm http fetch GET 200 https://registry.npmjs.org/normalize-path 18ms
npm http fetch GET 200 https://registry.npmjs.org/get-caller-file 23ms
npm http fetch GET 200 https://registry.npmjs.org/remove-trailing-separator 32ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.foreach 35ms
npm http fetch GET 200 https://registry.npmjs.org/htmlparser2 37ms
npm http fetch GET 200 https://registry.npmjs.org/entities 38ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.filter 39ms
npm http fetch GET 200 https://registry.npmjs.org/dom-serializer 42ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.defaults 40ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.bind 43ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.assignin 44ms
npm http fetch GET 200 https://registry.npmjs.org/css-select 46ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.flatten 45ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.some 24ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.reduce 29ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.map 34ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.reject 29ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.pick 32ms
npm http fetch GET 200 https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz 40ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.merge 144ms
npm http fetch GET 200 https://registry.npmjs.org/boolbase 22ms
npm http fetch GET 200 https://registry.npmjs.org/domutils 25ms
npm http fetch GET 200 https://registry.npmjs.org/css-what 26ms
npm http fetch GET 200 https://registry.npmjs.org/nth-check 32ms
npm http fetch GET 200 https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz 22ms
npm http fetch GET 200 https://registry.npmjs.org/domelementtype 23ms
npm http fetch GET 200 https://registry.npmjs.org/domhandler 29ms
npm http fetch GET 200 https://registry.npmjs.org/source-map 26ms
npm http fetch GET 200 https://registry.npmjs.org/optionator 31ms
npm http fetch GET 200 https://registry.npmjs.org/esutils 33ms
npm http fetch GET 200 https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz 30ms
npm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz 32ms
npm http fetch GET 200 https://registry.npmjs.org/prelude-ls 21ms
npm http fetch GET 200 https://registry.npmjs.org/word-wrap 28ms
npm http fetch GET 200 https://registry.npmjs.org/type-check 28ms
npm http fetch GET 200 https://registry.npmjs.org/levn 30ms
npm http fetch GET 200 https://registry.npmjs.org/deep-is 32ms
npm http fetch GET 200 https://registry.npmjs.org/fast-levenshtein 35ms
npm http fetch GET 200 https://registry.npmjs.org/es6-weak-map 21ms
npm http fetch GET 200 https://registry.npmjs.org/esrecurse 23ms
npm http fetch GET 200 https://registry.npmjs.org/es6-map 32ms
npm http fetch GET 200 https://registry.npmjs.org/es6-set 21ms
npm http fetch GET 200 https://registry.npmjs.org/event-emitter 24ms
npm http fetch GET 200 https://registry.npmjs.org/es6-symbol 25ms
npm http fetch GET 200 https://registry.npmjs.org/d 29ms
npm http fetch GET 200 https://registry.npmjs.org/es5-ext 36ms
npm http fetch GET 200 https://registry.npmjs.org/es6-iterator 36ms
npm http fetch GET 200 https://registry.npmjs.org/type 22ms
npm http fetch GET 200 https://registry.npmjs.org/next-tick 29ms
npm http fetch GET 200 https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz 32ms
npm http fetch GET 200 https://registry.npmjs.org/ext 25ms
npm http fetch GET 200 https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz 23ms
npm http fetch GET 200 https://registry.npmjs.org/markdown-it-anchor 32ms
npm http fetch GET 200 https://registry.npmjs.org/bluebird 35ms
npm http fetch GET 200 https://registry.npmjs.org/catharsis 36ms
npm http fetch GET 200 https://registry.npmjs.org/@babel%2fparser 40ms
npm http fetch GET 200 https://registry.npmjs.org/klaw 40ms
npm http fetch GET 200 https://registry.npmjs.org/mkdirp 39ms
npm http fetch GET 200 https://registry.npmjs.org/marked 41ms
npm http fetch GET 200 https://registry.npmjs.org/js2xmlparser 44ms
npm http fetch GET 200 https://registry.npmjs.org/escape-string-regexp 46ms
npm http fetch GET 200 https://registry.npmjs.org/markdown-it 59ms
npm http fetch GET 200 https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz 25ms
npm http fetch GET 200 https://registry.npmjs.org/requizzle 23ms
npm http fetch GET 200 https://registry.npmjs.org/strip-json-comments 24ms
npm http fetch GET 200 https://registry.npmjs.org/taffydb 26ms
npm http fetch GET 200 https://registry.npmjs.org/underscore 155ms
npm http fetch GET 200 https://registry.npmjs.org/lodash 18ms
npm http fetch GET 200 https://registry.npmjs.org/xmlcreate 24ms
npm http fetch GET 200 https://registry.npmjs.org/linkify-it 25ms
npm http fetch GET 200 https://registry.npmjs.org/argparse 27ms
npm http fetch GET 200 https://registry.npmjs.org/uc.micro 25ms
npm http fetch GET 200 https://registry.npmjs.org/mdurl 38ms
npm http fetch GET 200 https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz 20ms
npm http fetch GET 200 https://registry.npmjs.org/sprintf-js 25ms
npm http fetch GET 200 https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz 30ms
npm http fetch GET 200 https://registry.npmjs.org/minimist 19ms
npm http fetch GET 200 https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz 72ms
npm http fetch GET 200 https://registry.npmjs.org/css 22ms
npm http fetch GET 200 https://registry.npmjs.org/less 24ms
npm http fetch GET 200 https://registry.npmjs.org/less/-/less-1.6.3.tgz 127ms
npm http fetch GET 200 https://registry.npmjs.org/urix 19ms
npm http fetch GET 200 https://registry.npmjs.org/source-map-resolve 21ms
npm http fetch GET 200 https://registry.npmjs.org/resolve-url 19ms
npm http fetch GET 200 https://registry.npmjs.org/source-map-url 31ms
npm http fetch GET 200 https://registry.npmjs.org/decode-uri-component 32ms
npm http fetch GET 200 https://registry.npmjs.org/atob 35ms
npm http fetch GET 200 https://registry.npmjs.org/mime 26ms
npm http fetch GET 200 https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz 27ms
npm http fetch GET 200 https://registry.npmjs.org/request 30ms
npm http fetch GET 200 https://registry.npmjs.org/clean-css 31ms
npm http fetch GET 200 https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz 40ms
npm http fetch GET 200 https://registry.npmjs.org/mime/-/mime-1.2.11.tgz 93ms
npm http fetch GET 200 https://registry.npmjs.org/commander 98ms
npm http fetch GET 200 https://registry.npmjs.org/commander/-/commander-2.0.0.tgz 24ms
npm http fetch GET 200 https://registry.npmjs.org/is-typedarray 21ms
npm http fetch GET 200 https://registry.npmjs.org/caseless 26ms
npm http fetch GET 200 https://registry.npmjs.org/aws-sign2 32ms
npm http fetch GET 200 https://registry.npmjs.org/extend 32ms
npm http fetch GET 200 https://registry.npmjs.org/har-validator 36ms
npm http fetch GET 200 https://registry.npmjs.org/aws4 42ms
npm http fetch GET 200 https://registry.npmjs.org/http-signature 40ms
npm http fetch GET 200 https://registry.npmjs.org/forever-agent 45ms
npm http fetch GET 200 https://registry.npmjs.org/form-data 45ms
npm http fetch GET 200 https://registry.npmjs.org/combined-stream 67ms
npm http fetch GET 200 https://registry.npmjs.org/isstream 33ms
npm http fetch GET 200 https://registry.npmjs.org/json-stringify-safe 33ms
npm http fetch GET 200 https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz 37ms
npm http fetch GET 200 https://registry.npmjs.org/oauth-sign 30ms
npm http fetch GET 200 https://registry.npmjs.org/performance-now 31ms
npm http fetch GET 200 https://registry.npmjs.org/mime-types 37ms
npm http fetch GET 200 https://registry.npmjs.org/qs 32ms
npm http fetch GET 200 https://registry.npmjs.org/tunnel-agent 31ms
npm http fetch GET 200 https://registry.npmjs.org/tough-cookie 45ms
npm http fetch GET 200 https://registry.npmjs.org/uuid 26ms
npm http fetch GET 200 https://registry.npmjs.org/delayed-stream 20ms
npm http fetch GET 200 https://registry.npmjs.org/asynckit 24ms
npm http fetch GET 200 https://registry.npmjs.org/mime-db 24ms
npm http fetch GET 200 https://registry.npmjs.org/har-schema 29ms
npm http fetch GET 200 https://registry.npmjs.org/ajv 46ms
npm http fetch GET 200 https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz 26ms
npm http fetch GET 200 https://registry.npmjs.org/json-schema-traverse 20ms
npm http fetch GET 200 https://registry.npmjs.org/fast-json-stable-stringify 24ms
npm http fetch GET 200 https://registry.npmjs.org/uri-js 23ms
npm http fetch GET 200 https://registry.npmjs.org/fast-deep-equal 87ms
npm http fetch GET 200 https://registry.npmjs.org/punycode 17ms
npm http fetch GET 200 https://registry.npmjs.org/assert-plus 21ms
npm http fetch GET 200 https://registry.npmjs.org/sshpk 24ms
npm http fetch GET 200 https://registry.npmjs.org/jsprim 29ms
npm http fetch GET 200 https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz 23ms
npm http fetch GET 200 https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz 19ms
npm http fetch GET 200 https://registry.npmjs.org/json-schema 26ms
npm http fetch GET 200 https://registry.npmjs.org/verror 26ms
npm http fetch GET 200 https://registry.npmjs.org/extsprintf 29ms
npm http fetch GET 200 https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz 24ms
npm http fetch GET 200 https://registry.npmjs.org/verror/-/verror-1.10.0.tgz 25ms
npm http fetch GET 200 https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz 51ms
npm http fetch GET 200 https://registry.npmjs.org/asn1 24ms
npm http fetch GET 200 https://registry.npmjs.org/safer-buffer 27ms
npm http fetch GET 200 https://registry.npmjs.org/getpass 29ms
npm http fetch GET 200 https://registry.npmjs.org/jsbn 31ms
npm http fetch GET 200 https://registry.npmjs.org/tweetnacl 33ms
npm http fetch GET 200 https://registry.npmjs.org/bcrypt-pbkdf 37ms
npm http fetch GET 200 https://registry.npmjs.org/ecc-jsbn 39ms
npm http fetch GET 200 https://registry.npmjs.org/dashdash 49ms
npm http fetch GET 200 https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz 27ms
npm http fetch GET 200 https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz 22ms
npm http fetch GET 200 https://registry.npmjs.org/psl 140ms
npm http fetch GET 200 https://registry.npmjs.org/amdefine 23ms
npm http fetch GET 200 https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz 43ms
npm http fetch GET 200 https://registry.npmjs.org/source-map-support 46ms
npm http fetch GET 200 https://registry.npmjs.org/buffer-from 19ms
npm http fetch GET 200 https://registry.npmjs.org/xmlbuilder 25ms
npm http fetch GET 200 https://registry.npmjs.org/util.promisify 31ms
npm http fetch GET 200 https://registry.npmjs.org/sax 678ms
npm http fetch GET 200 https://registry.npmjs.org/sax/-/sax-1.2.4.tgz 27ms
npm http fetch GET 200 https://registry.npmjs.org/define-properties 23ms
npm http fetch GET 200 https://registry.npmjs.org/object.getownpropertydescriptors 31ms
npm http fetch GET 200 https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz 31ms
npm http fetch GET 200 https://registry.npmjs.org/object-keys 20ms
npm http fetch GET 200 https://registry.npmjs.org/es-abstract 23ms
npm http fetch GET 200 https://registry.npmjs.org/string.prototype.trimright 28ms
npm http fetch GET 200 https://registry.npmjs.org/is-callable 30ms
npm http fetch GET 200 https://registry.npmjs.org/es-to-primitive 32ms
npm http fetch GET 200 https://registry.npmjs.org/string.prototype.trimleft 33ms
npm http fetch GET 200 https://registry.npmjs.org/function-bind 35ms
npm http fetch GET 200 https://registry.npmjs.org/object-inspect 37ms
npm http fetch GET 200 https://registry.npmjs.org/has-symbols 39ms
npm http fetch GET 200 https://registry.npmjs.org/is-regex 43ms
npm http fetch GET 200 https://registry.npmjs.org/has 51ms
npm http fetch GET 200 https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz 21ms
npm http fetch GET 200 https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz 19ms
npm http fetch GET 200 https://registry.npmjs.org/is-date-object 19ms
npm http fetch GET 200 https://registry.npmjs.org/is-symbol 21ms
npm http fetch GET 200 https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz 22ms
npm http fetch GET 200 https://registry.npmjs.org/buffer-crc32 20ms
npm timing stage:loadIdealTree:loadAllDepsIntoIdealTree Completed in 6731ms
npm timing stage:loadIdealTree Completed in 6937ms
npm timing stage:generateActionsToTake Completed in 54ms
npm verb correctMkdir /<install-dir>/false/_locks correctMkdir not in flight; initializing
npm verb lock using /<install-dir>/false/_locks/staging-245c5e0e6228ec8d.lock for /<install-dir>/node_modules/.staging
npm http fetch GET 200 https://registry.npmjs.org/atob/-/atob-2.1.2.tgz 240ms
npm http fetch GET 200 https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz 255ms
npm http fetch GET 200 https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz 260ms
npm http fetch GET 200 https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz 256ms
npm http fetch GET 200 https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz 257ms
npm http fetch GET 200 https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz 256ms
npm http fetch GET 200 https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz 262ms
npm http fetch GET 200 https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz 263ms
npm http fetch GET 200 https://registry.npmjs.org/clone/-/clone-2.1.2.tgz 257ms
npm http fetch GET 200 https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz 254ms
npm timing audit submit Completed in 317ms
npm http fetch POST 200 https://registry.npmjs.org/-/npm/v1/security/audits/quick 318ms
npm http fetch GET 200 https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz 259ms
npm http fetch GET 200 https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz 263ms
npm http fetch GET 200 https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz 261ms
npm http fetch GET 200 https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz 263ms
npm http fetch GET 200 https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz 259ms
npm http fetch GET 200 https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz 265ms
npm timing audit body Completed in 6ms
npm http fetch GET 200 https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz 261ms
npm http fetch GET 200 https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz 266ms
npm http fetch GET 200 https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz 264ms
npm http fetch GET 200 https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz 265ms
npm http fetch GET 200 https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz 248ms
npm http fetch GET 200 https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz 267ms
npm http fetch GET 200 https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz 270ms
npm http fetch GET 200 https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz 269ms
npm http fetch GET 200 https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz 270ms
npm http fetch GET 200 https://registry.npmjs.org/clean-css/-/clean-css-2.0.8.tgz 276ms
npm http fetch GET 200 https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz 269ms
npm http fetch GET 200 https://registry.npmjs.org/type/-/type-2.0.0.tgz 268ms
npm http fetch GET 200 https://registry.npmjs.org/ext/-/ext-1.2.0.tgz 269ms
npm http fetch GET 200 https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz 273ms
npm http fetch GET 200 https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz 269ms
npm http fetch GET 200 https://registry.npmjs.org/extend/-/extend-3.0.2.tgz 269ms
npm http fetch GET 200 https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz 273ms
npm http fetch GET 200 https://registry.npmjs.org/entities/-/entities-1.1.2.tgz 272ms
npm http fetch GET 200 https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz 264ms
npm http fetch GET 200 https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz 294ms
npm http fetch GET 200 https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz 293ms
npm http fetch GET 200 https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz 306ms
npm http fetch GET 200 https://registry.npmjs.org/bluebird/-/bluebird-3.7.1.tgz 407ms
npm http fetch GET 200 https://registry.npmjs.org/yazl/-/yazl-2.5.1.tgz 199ms
npm http fetch GET 200 https://registry.npmjs.org/xml2js/-/xml2js-0.4.22.tgz 199ms
npm http fetch GET 200 https://registry.npmjs.org/rimraf/-/rimraf-3.0.0.tgz 212ms
npm http fetch GET 200 https://registry.npmjs.org/@babel/parser/-/parser-7.7.2.tgz 459ms
npm http fetch GET 200 https://registry.npmjs.org/replacestream/-/replacestream-4.0.3.tgz 179ms
npm http fetch GET 200 https://registry.npmjs.org/less-openui5/-/less-openui5-0.7.0.tgz 179ms
npm http fetch GET 200 https://registry.npmjs.org/escodegen/-/escodegen-1.12.0.tgz 187ms
npm http fetch GET 200 https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-4.0.0.tgz 179ms
npm http fetch GET 200 https://registry.npmjs.org/xmlcreate/-/xmlcreate-2.0.1.tgz 188ms
npm http fetch GET 200 https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz 179ms
npm http fetch GET 200 https://registry.npmjs.org/pretty-data/-/pretty-data-0.40.0.tgz 205ms
npm http fetch GET 200 https://registry.npmjs.org/escape-unicode/-/escape-unicode-0.2.0.tgz 196ms
npm http fetch GET 200 https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz 177ms
npm http fetch GET 200 https://registry.npmjs.org/once/-/once-1.4.0.tgz 178ms
npm http fetch GET 200 https://registry.npmjs.org/globby/-/globby-10.0.1.tgz 192ms
npm http fetch GET 200 https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz 184ms
npm http fetch GET 200 https://registry.npmjs.org/glob/-/glob-7.1.6.tgz 193ms
npm http fetch GET 200 https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz 186ms
npm http fetch GET 200 https://registry.npmjs.org/request/-/request-2.88.0.tgz 169ms
npm http fetch GET 200 https://registry.npmjs.org/uuid/-/uuid-3.3.3.tgz 156ms
npm http fetch GET 200 https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz 163ms
npm http fetch GET 200 https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz 153ms
npm http fetch GET 200 https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz 162ms
npm http fetch GET 200 https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz 163ms
npm http fetch GET 200 https://registry.npmjs.org/readable-stream/-/readable-stream-3.4.0.tgz 148ms
npm http fetch GET 200 https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz 319ms
npm http fetch GET 200 https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz 157ms
npm http fetch GET 200 https://registry.npmjs.org/css/-/css-2.2.4.tgz 178ms
npm http fetch GET 200 https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz 208ms
npm http fetch GET 200 https://registry.npmjs.org/@ui5/fs/-/fs-1.1.2.tgz 370ms
npm http fetch GET 200 https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz 167ms
npm http fetch GET 200 https://registry.npmjs.org/@types/node/-/node-12.12.6.tgz 711ms
npm http fetch GET 200 https://registry.npmjs.org/urix/-/urix-0.1.0.tgz 237ms
npm http fetch GET 200 https://registry.npmjs.org/linkify-it/-/linkify-it-2.2.0.tgz 198ms
npm http fetch GET 200 https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz 198ms
npm http fetch GET 200 https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz 740ms
npm http fetch GET 200 https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz 199ms
npm http fetch GET 200 https://registry.npmjs.org/levn/-/levn-0.3.0.tgz 205ms
npm http fetch GET 200 https://registry.npmjs.org/@ui5/logger/-/logger-1.0.2.tgz 443ms
npm http fetch GET 200 https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz 235ms
npm http fetch GET 200 https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz 186ms
npm http fetch GET 200 https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz 216ms
npm http fetch GET 200 https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz 181ms
npm http fetch GET 200 https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz 159ms
npm http fetch GET 200 https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz 183ms
npm http fetch GET 200 https://registry.npmjs.org/d/-/d-1.0.1.tgz 178ms
npm http fetch GET 200 https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz 165ms
npm http fetch GET 200 https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz 185ms
npm http fetch GET 200 https://registry.npmjs.org/type/-/type-1.2.0.tgz 186ms
npm http fetch GET 200 https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz 140ms
npm http fetch GET 200 https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz 160ms
npm http fetch GET 200 https://registry.npmjs.org/fast-glob/-/fast-glob-3.1.0.tgz 126ms
npm http fetch GET 200 https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz 305ms
npm http fetch GET 200 https://registry.npmjs.org/escope/-/escope-3.6.0.tgz 590ms
npm http fetch GET 200 https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz 134ms
npm http fetch GET 200 https://registry.npmjs.org/markdown-it/-/markdown-it-8.4.2.tgz 363ms
npm http fetch GET 200 https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz 130ms
npm http fetch GET 200 https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz 128ms
npm http fetch GET 200 https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz 120ms
npm http fetch GET 200 https://registry.npmjs.org/braces/-/braces-3.0.2.tgz 135ms
npm http fetch GET 200 https://registry.npmjs.org/commander/-/commander-2.20.3.tgz 131ms
npm http fetch GET 200 https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.0.1.tgz 141ms
npm http fetch GET 200 https://registry.npmjs.org/taffydb/-/taffydb-2.6.2.tgz 141ms
npm http fetch GET 200 https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz 466ms
npm http fetch GET 200 https://registry.npmjs.org/es-abstract/-/es-abstract-1.16.0.tgz 146ms
npm http fetch GET 200 https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz 144ms
npm http fetch GET 200 https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz 145ms
npm http fetch GET 200 https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.0.tgz 159ms
npm http fetch GET 200 https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz 154ms
npm http fetch GET 200 https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.16.tgz 143ms
npm http fetch GET 200 https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz 154ms
npm http fetch GET 200 https://registry.npmjs.org/slash/-/slash-3.0.0.tgz 167ms
npm http fetch GET 200 https://registry.npmjs.org/make-dir/-/make-dir-3.0.0.tgz 145ms
npm http fetch GET 200 https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz 145ms
npm http fetch GET 200 https://registry.npmjs.org/semver/-/semver-6.3.0.tgz 148ms
npm http fetch GET 200 https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz 154ms
npm http fetch GET 200 https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz 154ms
npm http fetch GET 200 https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz 158ms
npm http fetch GET 200 https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz 147ms
npm http fetch GET 200 https://registry.npmjs.org/requizzle/-/requizzle-0.2.3.tgz 147ms
npm http fetch GET 200 https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz 151ms
npm http fetch GET 200 https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz 679ms
npm http fetch GET 200 https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz 198ms
npm http fetch GET 200 https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz 204ms
npm http fetch GET 200 https://registry.npmjs.org/fastq/-/fastq-1.6.0.tgz 213ms
npm http fetch GET 200 https://registry.npmjs.org/mock-require/-/mock-require-3.0.3.tgz 199ms
npm http fetch GET 200 https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz 295ms
npm http fetch GET 200 https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz 199ms
npm http fetch GET 200 https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz 195ms
npm http fetch GET 200 https://registry.npmjs.org/random-int/-/random-int-2.0.1.tgz 194ms
npm http fetch GET 200 https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz 210ms
npm http fetch GET 200 https://registry.npmjs.org/qs/-/qs-6.5.2.tgz 219ms
npm http fetch GET 200 https://registry.npmjs.org/terser/-/terser-4.3.9.tgz 1079ms
npm http fetch GET 200 https://registry.npmjs.org/psl/-/psl-1.4.0.tgz 254ms
npm http fetch GET 200 https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz 343ms
npm http fetch GET 200 https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz 194ms
npm http fetch GET 200 https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz 241ms
npm http fetch GET 200 https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz 209ms
npm http fetch GET 200 https://registry.npmjs.org/picomatch/-/picomatch-2.1.1.tgz 209ms
npm http fetch GET 200 https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz 219ms
npm http fetch GET 200 https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz 382ms
npm http fetch GET 200 https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz 179ms
npm http fetch GET 200 https://registry.npmjs.org/object-inspect/-/object-inspect-1.6.0.tgz 167ms
npm http fetch GET 200 https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz 234ms
npm http fetch GET 200 https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz 212ms
npm http fetch GET 200 https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz 169ms
npm http fetch GET 200 https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz 148ms
npm http fetch GET 200 https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz 186ms
npm http fetch GET 200 https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz 182ms
npm http fetch GET 200 https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz 224ms
npm http fetch GET 200 https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz 225ms
npm http fetch GET 200 https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz 219ms
npm http fetch GET 200 https://registry.npmjs.org/merge2/-/merge2-1.3.0.tgz 217ms
npm http fetch GET 200 https://registry.npmjs.org/marked/-/marked-0.7.0.tgz 227ms
npm http fetch GET 200 https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-5.2.5.tgz 223ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz 223ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz 269ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz 249ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz 224ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz 205ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz 261ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz 230ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz 236ms
npm http fetch GET 200 https://registry.npmjs.org/catharsis/-/catharsis-0.8.11.tgz 171ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz 246ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz 248ms
npm http fetch GET 200 https://registry.npmjs.org/klaw/-/klaw-3.0.0.tgz 151ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz 272ms
npm http fetch GET 200 https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz 169ms
npm http fetch GET 200 https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz 189ms
npm http fetch GET 200 https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz 170ms
npm http fetch GET 200 https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz 197ms
npm http fetch GET 200 https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz 319ms
npm http fetch GET 200 https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz 178ms
npm http fetch GET 200 https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz 190ms
npm http fetch GET 200 https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz 203ms
npm http fetch GET 200 https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz 170ms
npm http fetch GET 200 https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz 162ms
npm http fetch GET 200 https://registry.npmjs.org/has/-/has-1.0.3.tgz 136ms
npm http fetch GET 200 https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz 138ms
npm http fetch GET 200 https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz 146ms
npm http fetch GET 200 https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz 150ms
npm http fetch GET 200 https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz 168ms
npm http fetch GET 200 https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.0.tgz 182ms
npm http fetch GET 200 https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz 136ms
npm http fetch GET 200 https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz 130ms
npm http fetch GET 200 https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz 103ms
npm http fetch GET 200 https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz 116ms
npm http fetch GET 200 https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz 105ms
npm http fetch GET 200 https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz 100ms
npm http fetch GET 200 https://registry.npmjs.org/ignore/-/ignore-5.1.4.tgz 179ms
npm http fetch GET 200 https://registry.npmjs.org/@ui5/builder/-/builder-1.7.0.tgz 1666ms
npm http fetch GET 200 https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz 187ms
npm http fetch GET 200 https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.52.tgz 1325ms
npm http fetch GET 200 https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz 239ms
npm http fetch GET 200 https://registry.npmjs.org/jsdoc/-/jsdoc-3.6.3.tgz 1730ms
npm http fetch GET 200 https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz 677ms
npm timing action:extract Completed in 2396ms
npm timing action:finalize Completed in 222ms
npm timing action:refresh-package-json Completed in 385ms
npm info lifecycle @babel/[email protected]~preinstall: @babel/[email protected]
npm info lifecycle @nodelib/[email protected]~preinstall: @nodelib/[email protected]
npm info lifecycle @types/[email protected]~preinstall: @types/[email protected]
npm info lifecycle @types/[email protected]~preinstall: @types/[email protected]
npm info lifecycle @types/[email protected]~preinstall: @types/[email protected]
npm info lifecycle @types/[email protected]~preinstall: @types/[email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle @ui5/[email protected]~preinstall: @ui5/[email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle @ui5/[email protected]~preinstall: @ui5/[email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle @ui5/[email protected]~preinstall: @ui5/[email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle @nodelib/[email protected]~preinstall: @nodelib/[email protected]
npm info lifecycle @nodelib/[email protected]~preinstall: @nodelib/[email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm info lifecycle [email protected]~preinstall: [email protected]
npm timing action:preinstall Completed in 54ms
npm info linkStuff @babel/[email protected]
npm verb linkBins [
npm verb linkBins   { parser: './bin/babel-parser.js' },
npm verb linkBins   '/<install-dir>/node_modules/.bin',
npm verb linkBins   false
npm verb linkBins ]
npm info linkStuff @nodelib/[email protected]
npm info linkStuff @types/[email protected]
npm info linkStuff @types/[email protected]
npm info linkStuff @types/[email protected]
npm info linkStuff @types/[email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm verb linkBins [
npm verb linkBins   { atob: 'bin/atob.js' },
npm verb linkBins   '/<install-dir>/node_modules/.bin',
npm verb linkBins   false
npm verb linkBins ]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm verb linkBins [
npm verb linkBins   { cleancss: './bin/cleancss' },
npm verb linkBins   '/<install-dir>/node_modules/.bin',
npm verb linkBins   false
npm verb linkBins ]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm verb linkBins [
npm verb linkBins   { esparse: './bin/esparse.js', esvalidate: './bin/esvalidate.js' },
npm verb linkBins   '/<install-dir>/node_modules/escodegen/node_modules/.bin',
npm verb linkBins   false
npm verb linkBins ]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm verb linkBins [
npm verb linkBins   { marked: './bin/marked' },
npm verb linkBins   '/<install-dir>/node_modules/.bin',
npm verb linkBins   false
npm verb linkBins ]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm verb linkBins [
npm verb linkBins   { mkdirp: 'bin/cmd.js' },
npm verb linkBins   '/<install-dir>/node_modules/.bin',
npm verb linkBins   false
npm verb linkBins ]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff @nodelib/[email protected]
npm info linkStuff @nodelib/[email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm verb linkBins [
npm verb linkBins   { semver: './bin/semver.js' },
npm verb linkBins   '/<install-dir>/node_modules/.bin',
npm verb linkBins   false
npm verb linkBins ]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm verb linkBins [
npm verb linkBins   {
npm verb linkBins     'sshpk-conv': 'bin/sshpk-conv',
npm verb linkBins     'sshpk-sign': 'bin/sshpk-sign',
npm verb linkBins     'sshpk-verify': 'bin/sshpk-verify'
npm verb linkBins   },
npm verb linkBins   '/<install-dir>/node_modules/.bin',
npm verb linkBins   false
npm verb linkBins ]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm verb linkBins [
npm verb linkBins   { 'markdown-it': 'bin/markdown-it.js' },
npm verb linkBins   '/<install-dir>/node_modules/.bin',
npm verb linkBins   false
npm verb linkBins ]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm verb linkBins [
npm verb linkBins   { uuid: './bin/uuid' },
npm verb linkBins   '/<install-dir>/node_modules/.bin',
npm verb linkBins   false
npm verb linkBins ]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm verb linkBins [
npm verb linkBins   { lessc: './bin/lessc' },
npm verb linkBins   '/<install-dir>/node_modules/.bin',
npm verb linkBins   false
npm verb linkBins ]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff @ui5/[email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff @ui5/[email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm verb linkBins [
npm verb linkBins   {
npm verb linkBins     esgenerate: './bin/esgenerate.js',
npm verb linkBins     escodegen: './bin/escodegen.js'
npm verb linkBins   },
npm verb linkBins   '/<install-dir>/node_modules/.bin',
npm verb linkBins   false
npm verb linkBins ]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm verb linkBins [
npm verb linkBins   { esparse: './bin/esparse.js', esvalidate: './bin/esvalidate.js' },
npm verb linkBins   '/<install-dir>/node_modules/.bin',
npm verb linkBins   false
npm verb linkBins ]
npm info linkStuff [email protected]
npm verb linkBins [
npm verb linkBins   { jsdoc: './jsdoc.js' },
npm verb linkBins   '/<install-dir>/node_modules/.bin',
npm verb linkBins   false
npm verb linkBins ]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm verb linkBins [
npm verb linkBins   { rimraf: './bin.js' },
npm verb linkBins   '/<install-dir>/node_modules/.bin',
npm verb linkBins   false
npm verb linkBins ]
npm info linkStuff [email protected]
npm verb linkBins [
npm verb linkBins   { terser: 'bin/terser' },
npm verb linkBins   '/<install-dir>/node_modules/.bin',
npm verb linkBins   false
npm verb linkBins ]
npm info linkStuff [email protected]
npm info linkStuff [email protected]
npm info linkStuff @ui5/[email protected]
npm timing action:build Completed in 68ms
npm info lifecycle @babel/[email protected]~install: @babel/[email protected]
npm info lifecycle @nodelib/[email protected]~install: @nodelib/[email protected]
npm info lifecycle @types/[email protected]~install: @types/[email protected]
npm info lifecycle @types/[email protected]~install: @types/[email protected]
npm info lifecycle @types/[email protected]~install: @types/[email protected]
npm info lifecycle @types/[email protected]~install: @types/[email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle @nodelib/[email protected]~install: @nodelib/[email protected]
npm info lifecycle @nodelib/[email protected]~install: @nodelib/[email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle @ui5/[email protected]~install: @ui5/[email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle @ui5/[email protected]~install: @ui5/[email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle [email protected]~install: [email protected]
npm info lifecycle @ui5/[email protected]~install: @ui5/[email protected]
npm timing action:install Completed in 35ms
npm info lifecycle @babel/[email protected]~postinstall: @babel/[email protected]
npm info lifecycle @nodelib/[email protected]~postinstall: @nodelib/[email protected]
npm info lifecycle @types/[email protected]~postinstall: @types/[email protected]
npm info lifecycle @types/[email protected]~postinstall: @types/[email protected]
npm info lifecycle @types/[email protected]~postinstall: @types/[email protected]
npm info lifecycle @types/[email protected]~postinstall: @types/[email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle @nodelib/[email protected]~postinstall: @nodelib/[email protected]
npm info lifecycle @nodelib/[email protected]~postinstall: @nodelib/[email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle @ui5/[email protected]~postinstall: @ui5/[email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle @ui5/[email protected]~postinstall: @ui5/[email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle [email protected]~postinstall: [email protected]
npm info lifecycle @ui5/[email protected]~postinstall: @ui5/[email protected]
npm timing action:postinstall Completed in 32ms
npm verb unlock done using /<install-dir>/false/_locks/staging-245c5e0e6228ec8d.lock for /<install-dir>/node_modules/.staging
npm timing stage:executeActions Completed in 3257ms
npm timing stage:rollbackFailedOptional Completed in 0ms
npm timing stage:runTopLevelLifecycles Completed in 10639ms
npm verb saving [ { name: '@ui5/builder', spec: '^1.7.0', save: 'dependencies' } ]
npm verb shrinkwrap skipping write for package.json because there were no changes.
npm info lifecycle undefined~preshrinkwrap: undefined
npm info lifecycle undefined~shrinkwrap: undefined
npm verb shrinkwrap skipping write for package-lock.json because there were no changes.
npm info lifecycle undefined~postshrinkwrap: undefined

+ @ui5/[email protected]
added 241 packages from 306 contributors and audited 676 packages in 10.774s
found 2 vulnerabilities (1 low, 1 moderate)
  run `npm audit fix` to fix them, or `npm audit` for details
npm verb exit [ 0, true ]
npm timing npm Completed in 11213ms
npm info ok 

Steps to Reproduce

  • Node v12.13.0
  • npm 6.12.0
  • macOS 10.14.6
  • Execute npm info @ui5/builder@latest --no-cache shortly after publishing a new version

Note: For other packages that we released shortly after, the metadata was up-to-date much quicker (if not right away). Examples:

However, we saw the delay for @ui5/builder frequently in past releases.

Expected Behavior

  • npm info @ui5/builder@latest --no-cache should list version 1.7.0 as latest right after publishing it

Who

References

  • n/a

[BUG](libnpmpublish) Unpublish url not correctly defined

Hello,

When unpublishing a package into an internal repository (such as artifactory) where the registry contains a path, the tarballUrl bellow (unpublish.js:71) will be wrong as it will contain the full registry path

const tarballUrl = url.parse(dist.tarball).pathname.substr(1)

Example :

C:>npm unpublish [email protected] --verbose --force --registry https://artifactory.example.com/api/npm/npm-snapshots/
npm info it worked if it ends with ok
npm verb cli [ 'C:\Tools\node-v10.16.3-win-x64\node.exe',
npm verb cli 'C:\Tools\node-v10.16.3-win-x64\node_modules\npm\bin\npm-cli.js',
npm verb cli 'unpublish',
npm verb cli '[email protected]',
npm verb cli '--verbose',
npm verb cli '--force',
npm verb cli '--registry',
npm verb cli 'https://artifactory.example.com/api/npm/npm-snapshots/' ]
npm info using [email protected]
npm info using [email protected]
npm WARN using --force I sure hope you know what you are doing.
npm verb npm-session 501f69ac7af05ab3
npm http fetch GET 200 https://artifactory.example.com/api/npm/npm-snapshots/my-app?write=true 372ms
npm http fetch PUT 200 https://artifactory.example.com/api/npm/npm-snapshots/my-app/-rev/1-0 44ms
npm http fetch GET 304 https://artifactory.example.com/api/npm/npm-snapshots/my-app?write=true 93ms
npm http fetch DELETE 200 https://artifactory.example.com/api/npm/npm-snapshots/api/npm/npm-snapshots/my-app/-/my-app-1.0-SNAPSHOT.tgz/-rev/1-0 79ms
[email protected]
npm verb exit [ 0, true ]
npm timing npm Completed in 5982ms
npm info ok

The last DELETE fetch is wrong the registry path has been duplicated

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.