Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Performance regression during "Analyze" of NPM projects after upgrading from v34.0.0 to v37.0.0 #9950

Open
malmor opened this issue Feb 21, 2025 · 15 comments · May be fixed by #10059
Open

Performance regression during "Analyze" of NPM projects after upgrading from v34.0.0 to v37.0.0 #9950

malmor opened this issue Feb 21, 2025 · 15 comments · May be fixed by #10059
Labels
analyzer About the analyzer tool

Comments

@malmor
Copy link

malmor commented Feb 21, 2025

Describe the bug

Since upgrading to ort v37.0.0 analyzing NPM projects takes much longer than before.

Our project contains 3x package.json files, with a total of about 1.400 dependencies (including dev and indirect dependencies). We are running analyze, evaluate and report phases in a GitLab pipeline.

Durations in v34.0.0:

  • The analysis took 1m 10.252733108s.
  • The evaluation of 1 script(s) took 8.948435285s.
  • Created 3 of 3 report(s) in 3.345737593s.

Durations in v37.0.0:

  • The analysis took 9m 9.239482777s. <= ⚠
  • The evaluation of 1 script(s) took 12.074116529s.
  • Created 3 of 3 report(s) in 3.744549232s.

Durations in v52.0.0:

  • The analysis took 6m 55.184194790s.
  • The evaluation of 1 script(s) took 7.161464191s.
  • Created 3 of 3 report(s) in 1m 5.798031179s.

Tests with newer versions (including v52.0.0 which was released yesterday) do not really change the outcome.

After looking at the changes introduced in the relevant versions I assume the following refactoring/change might have caused the performance regression: #9316

Before, multiple concurrent workers have been used to process NPM dependencies (DefaultDispatcher-worker-xxx). But this no longer seems to be the case - which would explain the increased analyze duration. CPU usage was also way higher before, which seems logical when running multiple threads.

To Reproduce

Running ort on (large) NPM-based projects should show the decreased performance.

Expected behavior

ort should be fast when analyzing NPM projects, as it was before on v34.0.0.

Console / log output

Part of v34.0.0 logs
09:40:54.808 [DefaultDispatcher-worker-2] DEBUG kotlinx.coroutines.CoroutineScope - Starting to parse '/builds/group/my-application/e2e/node_modules/playwright/package.json'...
09:40:54.810 [DefaultDispatcher-worker-2] DEBUG kotlinx.coroutines.CoroutineScope - Starting to parse '/builds/group/my-application/e2e/node_modules/dotenv/package.json'...
09:40:54.811 [DefaultDispatcher-worker-4] DEBUG org.ossreviewtoolkit.plugins.packagemanagers.node.Npm - Found a 'package.json' file in '/builds/group/my-application/e2e/node_modules/playwright'.
09:40:54.811 [DefaultDispatcher-worker-3] DEBUG org.ossreviewtoolkit.plugins.packagemanagers.node.Npm - Found a 'package.json' file in '/builds/group/my-application/e2e/node_modules/dotenv'.
09:40:54.811 [DefaultDispatcher-worker-2] DEBUG kotlinx.coroutines.CoroutineScope - Starting to parse '/builds/group/my-application/e2e/node_modules/@playwright/test/package.json'...
09:40:54.812 [DefaultDispatcher-worker-6] DEBUG org.ossreviewtoolkit.plugins.packagemanagers.node.Npm - Found a 'package.json' file in '/builds/group/my-application/e2e/node_modules/@playwright/test'.
09:40:54.816 [DefaultDispatcher-worker-2] DEBUG kotlinx.coroutines.CoroutineScope - Starting to parse '/builds/group/my-application/e2e/node_modules/playwright-core/package.json'...
09:40:54.817 [DefaultDispatcher-worker-4] DEBUG org.ossreviewtoolkit.plugins.packagemanagers.node.Npm - Found a 'package.json' file in '/builds/group/my-application/e2e/node_modules/playwright-core'.
09:40:54.817 [DefaultDispatcher-worker-2] DEBUG kotlinx.coroutines.CoroutineScope - Starting to parse '/builds/group/my-application/e2e/node_modules/undici-types/package.json'...
Part of v37.0.0 logs
10:07:26.817 [DefaultDispatcher-worker-1] DEBUG org.ossreviewtoolkit.plugins.packagemanagers.node.Npm - Parsing module info from '/builds/group/my-application/package.json'.
10:07:26.826 [DefaultDispatcher-worker-1] DEBUG org.ossreviewtoolkit.plugins.packagemanagers.node.Npm - Parsing module info from '/builds/group/my-application/package.json'.
10:07:26.871 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.analyzer.PackageManager - NPM resolved dependencies for path 'package.json' in 1.139030101s.
10:07:26.871 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.analyzer.PackageManager - Using NPM to resolve dependencies for path 'e2e/package.json'...
10:07:26.872 [DefaultDispatcher-worker-1] DEBUG org.ossreviewtoolkit.utils.common.EnvironmentVariableFilter - Filtering out these variables from the environment: [CI_RUNNER_SHORT_TOKEN, GITLAB_USER_ID, CI_JOB_TOKEN, CI_DEPENDENCY_PROXY_USER, GITLAB_USER_EMAIL, GITLAB_USER_NAME, ANDROID_USER_HOME, GITLAB_USER_LOGIN, CI_REGISTRY_PASSWORD, FF_SECRET_RESOLVING_FAILS_IF_MISSING, CI_DEPENDENCY_PROXY_PASSWORD, CI_REGISTRY_USER, FF_DISABLE_AUTOMATIC_TOKEN_ROTATION, FF_GIT_URLS_WITHOUT_TOKENS]
10:07:26.875 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm ci --ignore-scripts --no-audit' in '/builds/group/my-application/e2e'...
10:07:27.574 [DefaultDispatcher-worker-1] DEBUG org.ossreviewtoolkit.utils.common.ProcessCapture - 
10:07:27.574 [DefaultDispatcher-worker-1] DEBUG org.ossreviewtoolkit.utils.common.ProcessCapture - added 6 packages in 634ms
10:07:27.574 [DefaultDispatcher-worker-1] DEBUG org.ossreviewtoolkit.utils.common.ProcessCapture - 
10:07:27.574 [DefaultDispatcher-worker-1] DEBUG org.ossreviewtoolkit.utils.common.ProcessCapture - 1 package is looking for funding
10:07:27.574 [DefaultDispatcher-worker-1] DEBUG org.ossreviewtoolkit.utils.common.ProcessCapture -   run `npm fund` for details
10:07:27.574 [DefaultDispatcher-worker-1] DEBUG org.ossreviewtoolkit.utils.common.ProcessCapture - 
10:07:27.576 [DefaultDispatcher-worker-1] DEBUG org.ossreviewtoolkit.plugins.packagemanagers.node.Npm - Parsing project info from '/builds/group/my-application/e2e/package.json'.
10:07:27.652 [DefaultDispatcher-worker-1] DEBUG org.ossreviewtoolkit.plugins.packagemanagers.node.Npm - Parsing module info from '/builds/group/my-application/e2e/package.json'.
10:07:27.653 [DefaultDispatcher-worker-1] DEBUG org.ossreviewtoolkit.plugins.packagemanagers.node.Npm - Parsing module info from '/builds/group/my-application/e2e/node_modules/dotenv/package.json'.
10:07:27.657 [DefaultDispatcher-worker-1] DEBUG org.ossreviewtoolkit.utils.common.EnvironmentVariableFilter - Filtering out these variables from the environment: [CI_RUNNER_SHORT_TOKEN, GITLAB_USER_ID, CI_JOB_TOKEN, CI_DEPENDENCY_PROXY_USER, GITLAB_USER_EMAIL, GITLAB_USER_NAME, ANDROID_USER_HOME, GITLAB_USER_LOGIN, CI_REGISTRY_PASSWORD, FF_SECRET_RESOLVING_FAILS_IF_MISSING, CI_DEPENDENCY_PROXY_PASSWORD, CI_REGISTRY_USER, FF_DISABLE_AUTOMATIC_TOKEN_ROTATION, FF_GIT_URLS_WITHOUT_TOKENS]
10:07:27.660 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/group/my-application/e2e/node_modules/dotenv'...

Environment

We are running ort inside GitLab pipelines using the official docker image.

Tested versions:

  • ghcr.io/oss-review-toolkit/ort:34.0.0 (fast)
  • ghcr.io/oss-review-toolkit/ort:37.0.0 (slow)
  • ghcr.io/oss-review-toolkit/ort:52.0.0 (slow)
@malmor malmor added the to triage Issues that need triaging label Feb 21, 2025
@sschuberth sschuberth added analyzer About the analyzer tool and removed to triage Issues that need triaging labels Feb 21, 2025
@fviernau
Copy link
Member

fviernau commented Feb 24, 2025

After looking at the changes introduced in the relevant versions I assume the following refactoring/change might have caused the performance regression: #9316

This guess can easily be checked. Can you please take a look at the info level logs to see if there is much time spent with "requesting remote package details", @malmor ?

@malmor
Copy link
Author

malmor commented Feb 24, 2025

Hey @fviernau, thanks for taking a look at this. I did a new run with --info enabled, but don't really see any specific output regarding "requesting remote package details".

Here is the log from analyze which took 8min to complete:

Logs
[0Ksection_start:1740408866:analyze_section
[0KAnalyze
14:54:27.328 [main] INFO  org.ossreviewtoolkit.model.config.OrtConfiguration - Using ORT configuration arguments:
  ort.analyzer.enabledPackageManagers=Bundler,Cargo,CocoaPods,Composer,Conan,GoMod,Gradle,Maven,NPM,NuGet,PIP,Pipenv,PNPM,Poetry,Yarn,Yarn2
  ort.analyzer.allowDynamicVersions=false
14:54:27.331 [main] INFO  org.ossreviewtoolkit.model.config.OrtConfiguration - Using ORT configuration file '/home/ort/.ort/config/config.yml'.
Hoplite is configured to infer which sealed type to choose by inspecting the config values at runtime. This behaviour is now deprecated in favour of explicitly specifying the type through a discriminator field. In 3.0 this new behavior will become the default. To enable this behavior now (and disable this warning), invoke withExplicitSealedTypes() on the ConfigLoaderBuilder.
______________________________                                                
/        \_______   \__    ___/                  The OSS Review Toolkit, versio
|    |   | |       _/ |    |                     built with JDK 21.0.5+11-LTS, 
|    |   | |    |   \ |    |                     Executing 'analyze' as 'ort' o
\________/ |____|___/ |____|                     with 8 CPUs and a maximum of 8
                                                                             
Environment variables:                                                        
ORT_CONFIG_DIR = /home/ort/.ort/config                                        
ORT_DATA_DIR = /builds/my-group/my-project
HOME = /home/ort                                                              
JAVA_HOME = /opt/java/openjdk                                                 
ANDROID_HOME = /opt/android-sdk                                               
                                                                            
Looking for ORT configuration in the following file:
      /home/ort/.ort/config/config.yml

Looking for analyzer-specific configuration in the following files and directories:
      /builds/my-group/my-project/.ort.yml
      /home/ort/.ort/config/resolutions.yml
The following 16 package manager(s) are enabled:
      Bundler, Cargo, CocoaPods, Composer, Conan, GoMod, Gradle, Maven, NPM, NuGet, PIP, Pipenv, PNPM, Poetry, Yarn, Yarn2
The following 3 package curation provider(s) are enabled:
      RepositoryConfiguration, DefaultDir, DefaultFile
Analyzing project path:
      /builds/my-group/my-project
14:54:29.017 [main] INFO  org.ossreviewtoolkit.analyzer.PackageManager - Not analyzing directory '/builds/my-group/my-project/.git' as it is hard-coded to be ignored.
14:54:29.069 [main] INFO  org.ossreviewtoolkit.plugins.packagemanagers.node.NodePackageManagerDetection - Detected '/builds/my-group/my-project/package.json' to be the root of a(n) NPM project.
14:54:29.070 [main] INFO  org.ossreviewtoolkit.plugins.packagemanagers.node.NodePackageManagerDetection - Detected '/builds/my-group/my-project/ui/package.json' to be the root of a(n) NPM project.
14:54:29.070 [main] INFO  org.ossreviewtoolkit.plugins.packagemanagers.node.NodePackageManagerDetection - Detected '/builds/my-group/my-project/bff/package.json' to be the root of a(n) NPM project.
14:54:29.070 [main] INFO  org.ossreviewtoolkit.plugins.packagemanagers.node.NodePackageManagerDetection - Detected '/builds/my-group/my-project/e2e/package.json' to be the root of a(n) NPM project.
Found 4 NPM definition file(s) at:
      bff/package.json
      e2e/package.json
      package.json
      ui/package.json
Found in total 4 definition file(s) from the following 1 package manager(s):
      NPM
14:54:29.154 [main] INFO  org.ossreviewtoolkit.analyzer.Analyzer - Calling before resolution hooks for 1 manager(s).
14:54:29.167 [main] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm --version' in '/builds/my-group/my-project'...
14:54:29.293 [main] INFO  org.ossreviewtoolkit.analyzer.PackageManagerRunner - Starting NPM analysis.
14:54:29.300 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.analyzer.PackageManager - Using NPM to resolve dependencies for path 'package.json'...
14:54:29.309 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm ci --ignore-scripts --no-audit' in '/builds/my-group/my-project'...
14:54:29.999 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.ort.OrtProxySelector - Proxy selector was successfully installed.
14:54:30.016 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.ort.OrtAuthenticator - Authenticator was successfully installed.
14:54:30.283 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm list --depth Infinity --json --long' in '/builds/my-group/my-project'...
14:54:30.584 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.analyzer.PackageManager - NPM resolved dependencies for path 'package.json' in 1.277044970s.
14:54:30.584 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.analyzer.PackageManager - Using NPM to resolve dependencies for path 'ui/package.json'...
14:54:30.588 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm ci --ignore-scripts --no-audit' in '/builds/my-group/my-project/ui'...
14:54:45.856 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm list --depth Infinity --json --long' in '/builds/my-group/my-project/ui'...
14:54:46.843 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:54:47.196 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:54:47.503 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:54:47.808 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:54:48.130 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:54:48.445 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:54:48.825 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:54:49.149 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:54:49.478 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:54:49.792 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:54:50.236 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:54:50.597 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:54:50.889 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:54:51.210 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:54:51.897 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:54:52.211 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:54:52.505 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:54:52.844 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:54:53.152 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:54:53.753 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @microsoft/[email protected]' in '/builds/my-group/my-project'...
14:54:54.155 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:54:54.535 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:54:54.892 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @griffel/[email protected]' in '/builds/my-group/my-project'...
14:54:55.216 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @griffel/[email protected]' in '/builds/my-group/my-project'...
14:54:55.538 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @emotion/[email protected]' in '/builds/my-group/my-project'...
14:54:55.901 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @griffel/[email protected]' in '/builds/my-group/my-project'...
14:54:56.202 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:54:56.504 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
14:54:56.944 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:54:57.270 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:54:57.632 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:54:57.999 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:54:58.331 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:54:58.652 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:54:58.957 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @uifabric/[email protected]' in '/builds/my-group/my-project'...
14:54:59.320 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:54:59.618 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @uifabric/[email protected]' in '/builds/my-group/my-project'...
14:54:59.991 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:55:00.304 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:55:00.631 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @uifabric/[email protected]' in '/builds/my-group/my-project'...
14:55:01.014 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:01.663 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:02.287 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:55:02.607 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:55:02.918 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:55:03.271 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @uifabric/[email protected]' in '/builds/my-group/my-project'...
14:55:03.596 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:55:04.505 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:55:04.844 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:55:05.185 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:55:05.505 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:55:05.859 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:55:06.184 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:55:06.657 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @swc/[email protected]' in '/builds/my-group/my-project'...
14:55:07.054 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:55:07.372 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @fluentui/[email protected]' in '/builds/my-group/my-project'...
14:55:07.690 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @progress/[email protected]' in '/builds/my-group/my-project'...
14:55:08.044 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:08.357 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:55:08.671 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:55:09.012 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:09.540 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:09.898 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:10.233 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:10.545 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:10.875 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:11.255 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:11.583 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:11.906 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:12.212 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:12.521 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:12.815 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:13.141 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:13.477 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:13.780 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:14.167 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:14.602 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:14.938 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:15.283 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:15.633 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:16.003 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:16.338 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:16.684 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:17.015 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:17.332 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:17.698 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:18.028 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:18.380 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:18.737 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:19.089 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:19.432 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:19.771 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:20.098 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:20.502 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:20.851 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:21.202 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:21.563 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:22.204 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @typescript-eslint/[email protected]' in '/builds/my-group/my-project'...
14:55:23.604 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @typescript-eslint/[email protected]' in '/builds/my-group/my-project'...
14:55:24.593 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @typescript-eslint/[email protected]' in '/builds/my-group/my-project'...
14:55:25.546 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @typescript-eslint/[email protected]' in '/builds/my-group/my-project'...
14:55:26.422 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @typescript-eslint/[email protected]' in '/builds/my-group/my-project'...
14:55:27.373 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:27.681 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @typescript-eslint/[email protected]' in '/builds/my-group/my-project'...
14:55:28.639 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:28.981 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:29.301 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:29.629 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:29.943 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:30.260 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:30.574 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:30.895 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @nodelib/[email protected]' in '/builds/my-group/my-project'...
14:55:31.203 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @nodelib/[email protected]' in '/builds/my-group/my-project'...
14:55:31.525 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @nodelib/[email protected]' in '/builds/my-group/my-project'...
14:55:31.837 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:32.164 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:32.543 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:32.910 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:33.242 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:33.574 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:33.898 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:34.194 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:34.485 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:34.803 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:35.107 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:35.414 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:35.718 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:36.132 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:36.498 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:36.845 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:37.204 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:37.666 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:38.006 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:39.072 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:39.556 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @eslint-community/[email protected]' in '/builds/my-group/my-project'...
14:55:39.908 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @eslint/[email protected]' in '/builds/my-group/my-project'...
14:55:40.319 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:40.903 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:41.312 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:41.653 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:41.994 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:42.309 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:42.639 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:43.063 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:43.404 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:43.747 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:44.116 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:44.545 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:44.999 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:45.445 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:45.925 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:46.400 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:46.950 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:47.403 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:47.854 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:48.327 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:48.726 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:49.204 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:49.623 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @eslint/[email protected]' in '/builds/my-group/my-project'...
14:55:50.019 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @humanwhocodes/[email protected]' in '/builds/my-group/my-project'...
14:55:50.511 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @humanwhocodes/[email protected]' in '/builds/my-group/my-project'...
14:55:50.888 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @humanwhocodes/[email protected]' in '/builds/my-group/my-project'...
14:55:51.183 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:51.514 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:51.869 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:52.207 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:52.553 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:52.873 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:53.249 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:53.607 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:53.990 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:54.300 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:54.632 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:55.002 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:55.399 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:55.721 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:56.142 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:56.473 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:56.777 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:57.262 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:57.603 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:57.938 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:58.289 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:58.701 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:59.058 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:59.404 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:55:59.703 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:00.025 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:00.540 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:00.915 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:01.218 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:01.544 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:01.860 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:02.194 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:02.523 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:02.835 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:03.156 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:03.481 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:03.809 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:04.111 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:04.425 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:04.743 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:05.041 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:05.464 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:05.777 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:06.105 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:06.435 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:06.747 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:07.049 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:07.418 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:07.768 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:08.093 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @aashutoshrathi/[email protected]' in '/builds/my-group/my-project'...
14:56:08.415 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:08.768 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:09.097 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:09.429 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:09.843 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:10.215 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @typescript-eslint/[email protected]' in '/builds/my-group/my-project'...
14:56:10.994 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @typescript-eslint/[email protected]' in '/builds/my-group/my-project'...
14:56:11.819 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:56:12.205 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:56:12.595 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:12.947 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:13.319 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:13.822 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:14.197 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:14.618 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:15.023 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:15.446 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:15.811 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:16.108 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:16.428 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:16.779 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:17.094 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:17.486 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:17.809 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:18.102 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:18.506 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:18.937 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:19.250 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:19.648 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:20.076 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:20.458 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:20.873 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:21.256 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:21.628 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:22.020 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:22.475 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:22.895 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:23.331 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:23.742 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:24.149 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:24.530 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:24.907 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:25.321 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:25.757 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:26.171 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:26.611 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:27.004 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:27.298 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:27.724 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:28.117 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:28.494 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:28.839 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:29.197 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:29.538 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:29.826 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:30.186 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:30.547 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:30.843 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:31.151 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:31.443 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:31.741 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:32.095 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:32.425 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:32.821 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:33.209 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:33.546 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:33.877 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:34.239 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:34.618 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:34.946 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:35.272 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:35.586 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:35.908 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:36.231 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:36.543 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:36.853 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:37.180 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:37.503 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:37.829 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:38.148 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:38.473 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:38.821 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:39.132 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:39.483 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:39.822 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:40.141 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:40.458 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:40.778 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:41.069 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:41.379 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:41.712 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:42.017 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:42.350 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:42.681 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:43.024 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:43.334 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:43.632 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:56:43.998 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:44.297 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:44.636 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:45.037 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:45.351 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:45.697 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:46.014 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:46.312 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:46.632 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:46.969 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:47.301 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:47.624 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:47.957 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:48.448 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:48.734 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:49.040 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:49.343 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:49.645 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:49.969 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:50.313 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:50.616 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:50.928 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:51.327 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:51.663 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:51.960 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:52.301 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:52.626 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:53.047 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:56:53.361 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:56:53.714 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:56:54.654 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:54.993 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:55.439 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:55.779 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:56.166 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:56.479 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:56.826 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:57.508 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:57.860 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:58.168 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:58.488 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:58.827 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:59.119 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:59.446 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:56:59.751 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:00.049 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:00.344 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:00.670 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:00.980 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:01.323 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:01.620 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:01.912 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:02.265 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:02.587 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:02.906 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:03.261 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:03.582 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:03.878 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:04.173 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:04.481 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:04.823 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:05.112 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:05.412 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:05.745 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:06.043 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:06.366 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jsdevtools/[email protected]' in '/builds/my-group/my-project'...
14:57:06.663 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:06.964 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:07.288 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
14:57:07.609 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @ampproject/[email protected]' in '/builds/my-group/my-project'...
14:57:07.897 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jridgewell/[email protected]' in '/builds/my-group/my-project'...
14:57:08.176 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jridgewell/[email protected]' in '/builds/my-group/my-project'...
14:57:08.458 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jridgewell/[email protected]' in '/builds/my-group/my-project'...
14:57:08.739 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jridgewell/[email protected]' in '/builds/my-group/my-project'...
14:57:09.028 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jridgewell/[email protected]' in '/builds/my-group/my-project'...
14:57:09.305 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
14:57:09.602 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
14:57:09.893 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
14:57:10.182 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:10.492 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:10.778 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:11.066 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:11.358 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:11.643 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:11.933 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:12.216 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:12.500 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
14:57:12.805 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
14:57:13.114 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
14:57:13.397 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:13.731 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:14.017 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
14:57:14.307 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
14:57:14.613 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
14:57:14.908 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:15.233 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:15.648 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:16.201 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:16.510 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:16.795 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:17.088 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:17.402 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:17.699 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
14:57:18.011 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
14:57:18.304 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
14:57:18.614 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
14:57:18.947 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
14:57:19.245 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:19.528 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
14:57:19.856 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
14:57:20.162 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:20.476 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:20.755 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:21.045 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @istanbuljs/[email protected]' in '/builds/my-group/my-project'...
14:57:21.341 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:21.635 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:21.945 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:22.276 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:22.590 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:22.887 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:23.218 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:23.521 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:23.846 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:57:24.157 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:57:24.447 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:57:24.737 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:57:25.057 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:57:25.381 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:57:25.673 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:57:25.979 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:26.326 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:26.667 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:26.989 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:27.328 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:27.613 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:27.950 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:28.241 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:57:28.565 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:57:28.864 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:29.150 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:29.449 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:29.742 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:30.050 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:30.355 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:30.646 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:30.938 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:31.216 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:31.536 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:31.827 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:32.122 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:32.406 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:32.706 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:33.003 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:33.297 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:33.842 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:57:34.136 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:57:34.436 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:57:34.732 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @webassemblyjs/[email protected]' in '/builds/my-group/my-project'...
14:57:35.037 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @webassemblyjs/[email protected]' in '/builds/my-group/my-project'...
14:57:35.336 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @webassemblyjs/[email protected]' in '/builds/my-group/my-project'...
14:57:35.647 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @webassemblyjs/[email protected]' in '/builds/my-group/my-project'...
14:57:35.948 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @xtuc/[email protected]' in '/builds/my-group/my-project'...
14:57:36.249 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @webassemblyjs/[email protected]' in '/builds/my-group/my-project'...
14:57:36.560 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @webassemblyjs/[email protected]' in '/builds/my-group/my-project'...
14:57:36.864 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @webassemblyjs/[email protected]' in '/builds/my-group/my-project'...
14:57:37.168 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @webassemblyjs/[email protected]' in '/builds/my-group/my-project'...
14:57:37.479 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @webassemblyjs/[email protected]' in '/builds/my-group/my-project'...
14:57:37.805 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @webassemblyjs/[email protected]' in '/builds/my-group/my-project'...
14:57:38.092 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @xtuc/[email protected]' in '/builds/my-group/my-project'...
14:57:38.385 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @webassemblyjs/[email protected]' in '/builds/my-group/my-project'...
14:57:38.687 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @webassemblyjs/[email protected]' in '/builds/my-group/my-project'...
14:57:38.999 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @webassemblyjs/[email protected]' in '/builds/my-group/my-project'...
14:57:39.307 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @webassemblyjs/[email protected]' in '/builds/my-group/my-project'...
14:57:39.620 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @webassemblyjs/[email protected]' in '/builds/my-group/my-project'...
14:57:39.945 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:40.225 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:40.560 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:40.887 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:41.187 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:41.480 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:41.774 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:42.071 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:42.364 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:42.679 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:43.026 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:43.337 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:43.654 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:43.970 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:44.283 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:44.577 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:44.882 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:45.216 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:45.519 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:45.843 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:46.166 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:46.490 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:46.788 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:47.092 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:47.434 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:47.760 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jridgewell/[email protected]' in '/builds/my-group/my-project'...
14:57:48.082 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:48.399 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:48.724 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:49.022 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:49.324 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:49.661 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:49.955 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:50.254 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:50.582 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:50.927 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:51.223 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:51.537 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:51.864 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:52.181 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:52.492 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:52.818 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:53.148 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:53.462 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:53.786 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:54.076 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:54.416 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:54.802 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:55.154 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:55.459 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:55.779 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:56.157 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:56.454 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:56.756 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:57.114 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:57.420 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:57.720 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:58.010 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:58.299 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:58.590 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:58.906 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:59.213 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:59.505 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:57:59.863 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:00.176 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:00.469 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:00.780 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:01.084 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:01.377 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:01.681 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:01.985 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:02.288 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:02.590 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:02.902 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:03.227 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:03.759 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:04.112 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:04.448 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:04.736 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:05.059 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:05.361 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:05.693 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:06.053 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:58:06.415 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:06.719 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:07.007 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:07.300 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:07.595 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:07.921 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:08.221 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:08.532 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:08.902 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:09.240 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:09.527 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:09.875 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:58:10.236 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:10.603 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:10.927 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:11.217 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:11.510 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:11.814 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:12.194 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:12.503 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:12.789 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:13.131 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:13.481 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:13.804 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:14.119 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:14.436 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:14.757 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:15.041 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:15.361 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:15.681 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:15.974 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:16.266 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:16.561 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:16.889 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:17.208 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:17.505 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:17.796 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:18.083 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:18.377 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:18.673 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @xmldom/[email protected]' in '/builds/my-group/my-project'...
14:58:18.972 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:19.264 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:19.562 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:19.875 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:20.183 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:20.515 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:20.805 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:21.097 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:21.372 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:21.654 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:21.947 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:22.252 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:22.545 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:22.836 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:23.324 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @colors/[email protected]' in '/builds/my-group/my-project'...
14:58:23.668 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:23.981 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:24.307 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:24.635 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:24.927 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:25.205 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:25.543 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:25.867 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:26.206 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:26.534 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:26.855 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:27.196 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:27.486 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:27.772 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:28.106 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:28.450 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:28.769 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:29.104 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:29.416 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:29.767 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:30.099 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:30.459 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:30.795 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:31.112 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:31.390 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:31.667 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:32.005 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:32.290 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:32.621 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:32.943 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:33.269 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:33.592 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:33.933 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:34.230 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:34.575 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:34.883 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:35.177 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:35.502 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:35.787 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:36.131 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:36.420 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:36.748 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:37.068 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:37.388 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:37.729 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:38.026 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:38.342 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:38.623 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:38.937 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:39.251 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:58:39.571 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:58:39.863 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:40.153 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:40.493 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:40.819 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:41.150 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:41.488 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @socket.io/[email protected]' in '/builds/my-group/my-project'...
14:58:41.826 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:42.237 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:42.593 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:42.935 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:43.237 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:43.516 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:43.796 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:44.073 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:44.367 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:44.648 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:44.931 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:45.220 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:45.535 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:45.814 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:46.092 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:46.388 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:46.735 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:47.021 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:47.302 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:47.595 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:47.873 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:48.158 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:48.457 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:48.747 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:49.024 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:49.316 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:49.604 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:49.921 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:50.211 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:51.052 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:51.338 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:51.624 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:51.911 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:52.200 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:52.497 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:52.771 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:53.068 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:53.384 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:53.668 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:53.952 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:54.271 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:54.563 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:54.850 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:55.131 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:55.413 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:55.692 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:55.978 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:56.259 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:56.545 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:56.845 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:57.132 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:57.408 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:57.690 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:57.983 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:58.273 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:58.572 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:59.133 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:59.426 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:58:59.752 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:00.041 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:00.341 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:00.626 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:00.913 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:01.203 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:01.683 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:02.020 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:59:02.375 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:02.659 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:02.952 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:03.261 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:03.608 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:03.889 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:04.216 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:04.547 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:04.830 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:05.129 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:05.459 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:06.772 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:07.061 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:07.364 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:07.654 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:07.950 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:08.250 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:08.552 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:08.856 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:09.139 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:09.478 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:09.784 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:10.078 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:10.415 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:10.713 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:11.018 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:11.321 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:11.658 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:11.972 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:12.270 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:12.555 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:12.918 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:13.211 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:13.507 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:13.796 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:14.120 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:14.407 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:14.695 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:14.993 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:15.322 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:15.617 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:15.903 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:16.190 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:16.480 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:16.790 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:17.088 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:17.426 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:17.722 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:18.024 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:18.341 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:18.628 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:18.916 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:19.228 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:19.540 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:19.847 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:20.170 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:20.481 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:20.766 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:21.092 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @cspotcode/[email protected]' in '/builds/my-group/my-project'...
14:59:21.390 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jridgewell/[email protected]' in '/builds/my-group/my-project'...
14:59:21.685 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @tsconfig/[email protected]' in '/builds/my-group/my-project'...
14:59:21.969 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @tsconfig/[email protected]' in '/builds/my-group/my-project'...
14:59:22.253 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @tsconfig/[email protected]' in '/builds/my-group/my-project'...
14:59:22.560 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @tsconfig/[email protected]' in '/builds/my-group/my-project'...
14:59:22.860 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:23.294 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:23.642 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:23.986 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:24.332 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:24.683 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:25.012 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:25.316 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:25.633 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:25.930 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:26.225 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:26.565 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:26.858 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:27.138 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:27.440 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:27.747 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:28.035 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:28.332 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:28.629 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:28.933 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @discoveryjs/[email protected]' in '/builds/my-group/my-project'...
14:59:29.222 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:29.523 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:29.848 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:30.139 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:30.433 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:30.762 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @polka/[email protected]' in '/builds/my-group/my-project'...
14:59:31.058 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:31.341 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:31.625 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:31.933 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @webpack-cli/[email protected]' in '/builds/my-group/my-project'...
14:59:32.272 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @webpack-cli/[email protected]' in '/builds/my-group/my-project'...
14:59:32.621 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @webpack-cli/[email protected]' in '/builds/my-group/my-project'...
14:59:32.958 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:33.299 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:33.589 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:33.927 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:34.209 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:34.517 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:34.817 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:35.093 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:35.499 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:35.817 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:36.099 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:36.420 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:36.737 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:37.038 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:37.335 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:37.641 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:37.964 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:38.275 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:38.616 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:59:38.893 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:59:39.199 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:59:39.505 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:59:39.808 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:59:40.096 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:59:40.408 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:59:40.693 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:59:41.015 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:59:41.299 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:59:41.575 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:59:41.864 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:59:42.163 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:59:42.456 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:59:42.739 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:59:43.046 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:43.346 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:43.640 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:43.961 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:44.268 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @leichtgewicht/[email protected]' in '/builds/my-group/my-project'...
14:59:44.547 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:44.843 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:45.149 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:45.451 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:45.745 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:46.063 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:46.353 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:46.647 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:47.016 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:47.311 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:47.593 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:47.878 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:48.155 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:48.436 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:48.719 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:49.032 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:49.313 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:49.632 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:49.914 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:50.214 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:50.507 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:50.794 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:51.096 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:51.414 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:51.727 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:52.018 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:52.345 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:59:52.637 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:52.938 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:53.237 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:53.527 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:53.829 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:54.153 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:54.473 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:54.813 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:55.857 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:56.171 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:56.519 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:56.803 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:57.088 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:57.378 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:59:57.710 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:58.035 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:58.331 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:58.665 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
14:59:58.955 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:59.254 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:59.545 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
14:59:59.865 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:00.173 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:00.464 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:00.779 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:01.075 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:01.359 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:01.646 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:01.930 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:02.216 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:02.518 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:02.808 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:03.147 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:03.429 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:03.724 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:04.018 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:04.309 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:04.607 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:04.893 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:05.175 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:05.469 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:05.752 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:06.031 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:06.308 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:06.581 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:06.880 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:07.180 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jsonjoy.com/[email protected]' in '/builds/my-group/my-project'...
15:00:07.520 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jsonjoy.com/[email protected]' in '/builds/my-group/my-project'...
15:00:07.883 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jsonjoy.com/[email protected]' in '/builds/my-group/my-project'...
15:00:08.251 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:08.619 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:08.946 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:09.269 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:09.559 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:09.929 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:10.240 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:10.544 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:10.841 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:11.178 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:11.554 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:11.848 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:12.210 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:12.496 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:12.782 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:13.108 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:13.411 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:13.713 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:14.058 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:14.374 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:14.665 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:14.959 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:15.249 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:15.547 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:15.834 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:16.159 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:16.515 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:16.881 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.analyzer.PackageManager - NPM resolved dependencies for path 'ui/package.json' in 5m 46.296079848s.
15:00:16.881 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.analyzer.PackageManager - Using NPM to resolve dependencies for path 'bff/package.json'...
15:00:16.884 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm ci --ignore-scripts --no-audit' in '/builds/my-group/my-project/bff'...
15:00:25.234 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm list --depth Infinity --json --long' in '/builds/my-group/my-project/bff'...
15:00:28.890 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @azure/[email protected]' in '/builds/my-group/my-project'...
15:00:29.239 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @azure/[email protected]' in '/builds/my-group/my-project'...
15:00:29.551 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:29.866 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:30.184 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:30.497 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:30.813 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:31.131 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:31.439 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:31.737 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:32.039 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:32.331 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:32.647 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:32.971 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:33.627 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:33.949 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:34.244 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:34.579 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:34.917 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:35.248 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:35.559 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:00:35.849 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:36.164 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:36.504 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:36.815 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:37.176 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:37.488 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:37.803 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:38.095 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:38.441 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:38.753 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:39.054 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:39.376 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:39.684 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:40.033 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:40.423 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:40.724 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @grpc/[email protected]' in '/builds/my-group/my-project'...
15:00:41.109 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @grpc/[email protected]' in '/builds/my-group/my-project'...
15:00:41.462 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:41.774 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:42.152 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:42.483 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @protobufjs/[email protected]' in '/builds/my-group/my-project'...
15:00:42.774 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @protobufjs/[email protected]' in '/builds/my-group/my-project'...
15:00:43.087 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @protobufjs/[email protected]' in '/builds/my-group/my-project'...
15:00:43.390 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @protobufjs/[email protected]' in '/builds/my-group/my-project'...
15:00:43.689 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @protobufjs/[email protected]' in '/builds/my-group/my-project'...
15:00:43.991 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @protobufjs/[email protected]' in '/builds/my-group/my-project'...
15:00:44.278 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @protobufjs/[email protected]' in '/builds/my-group/my-project'...
15:00:44.563 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @protobufjs/[email protected]' in '/builds/my-group/my-project'...
15:00:44.857 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @protobufjs/[email protected]' in '/builds/my-group/my-project'...
15:00:45.153 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @protobufjs/[email protected]' in '/builds/my-group/my-project'...
15:00:45.448 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:00:46.150 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:46.452 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:46.779 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:47.099 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:47.410 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @js-sdsl/[email protected]' in '/builds/my-group/my-project'...
15:00:47.730 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:48.060 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:48.383 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:48.677 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:48.995 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:49.303 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:49.607 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:49.952 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:50.274 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:50.586 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:50.897 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:51.232 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:51.553 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:51.937 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:52.262 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:52.591 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:52.919 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @opentelemetry/[email protected]' in '/builds/my-group/my-project'...
15:00:53.248 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:53.609 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @colors/[email protected]' in '/builds/my-group/my-project'...
15:00:53.909 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @dabh/[email protected]' in '/builds/my-group/my-project'...
15:00:54.218 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:54.525 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:54.855 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:55.172 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:55.469 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:55.749 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:56.059 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:56.371 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:56.666 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:56.960 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:57.262 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:00:57.553 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:57.849 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:58.177 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:58.497 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:58.801 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:59.102 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:59.401 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:00:59.712 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:00.140 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:00.474 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:00.799 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:01.137 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:01.471 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:01.778 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:02.125 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @ioredis/[email protected]' in '/builds/my-group/my-project'...
15:01:02.495 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:02.829 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:03.183 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:03.522 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:03.869 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:04.200 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:04.530 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:04.867 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:05.187 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:01:05.498 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:01:05.844 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:06.196 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:06.485 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:06.783 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:07.097 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:07.414 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:07.719 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:08.026 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:09.085 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:09.385 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:09.831 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:10.141 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:10.506 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:10.864 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @msgpackr-extract/[email protected]' in '/builds/my-group/my-project'...
15:01:11.205 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:11.534 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:11.851 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:12.143 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:12.474 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:12.774 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:13.096 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:13.392 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:13.709 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:14.011 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:14.302 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:14.594 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:14.889 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:15.187 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:15.516 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @hapi/[email protected]' in '/builds/my-group/my-project'...
15:01:15.813 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @hapi/[email protected]' in '/builds/my-group/my-project'...
15:01:16.108 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @sideway/[email protected]' in '/builds/my-group/my-project'...
15:01:16.403 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @sideway/[email protected]' in '/builds/my-group/my-project'...
15:01:16.695 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @sideway/[email protected]' in '/builds/my-group/my-project'...
15:01:16.982 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:17.513 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:17.837 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:18.214 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:18.665 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @mongodb-js/[email protected]' in '/builds/my-group/my-project'...
15:01:18.973 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:19.259 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:19.553 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:19.874 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:01:20.174 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:01:20.492 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:20.806 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:21.105 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:21.406 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:21.706 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:22.033 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:22.663 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:24.418 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:24.717 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:25.019 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:25.467 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:25.813 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:26.200 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jest/[email protected]' in '/builds/my-group/my-project'...
15:01:26.521 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jest/[email protected]' in '/builds/my-group/my-project'...
15:01:26.831 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jest/[email protected]' in '/builds/my-group/my-project'...
15:01:27.126 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jest/[email protected]' in '/builds/my-group/my-project'...
15:01:27.416 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @sinclair/[email protected]' in '/builds/my-group/my-project'...
15:01:27.783 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:01:28.065 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:01:28.359 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:01:28.648 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:01:28.980 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:01:29.278 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:29.641 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:01:29.946 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:30.276 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:30.616 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:31.117 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:31.423 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:31.720 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:32.045 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:32.342 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jest/[email protected]' in '/builds/my-group/my-project'...
15:01:32.726 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @bcoe/[email protected]' in '/builds/my-group/my-project'...
15:01:33.044 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jest/[email protected]' in '/builds/my-group/my-project'...
15:01:33.360 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:33.649 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jest/[email protected]' in '/builds/my-group/my-project'...
15:01:33.990 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:34.304 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:34.691 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:35.164 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:35.467 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:35.753 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:36.084 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
15:01:36.376 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @istanbuljs/[email protected]' in '/builds/my-group/my-project'...
15:01:36.688 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:36.989 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:37.275 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:37.577 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:37.913 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:38.373 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:01:38.714 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:39.092 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:39.381 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:39.684 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:40.033 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:40.402 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:40.808 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:41.217 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:41.639 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:42.028 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:42.345 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:42.644 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:42.950 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:43.278 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:43.575 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:43.881 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:44.168 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:44.504 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:44.843 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:45.160 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:45.474 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:45.816 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:46.139 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:46.433 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:46.735 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:47.161 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:47.507 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jest/[email protected]' in '/builds/my-group/my-project'...
15:01:47.815 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:48.146 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:01:48.437 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:01:48.726 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:01:49.036 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:01:49.347 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:49.697 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:50.011 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:50.291 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
15:01:50.589 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
15:01:50.889 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
15:01:51.176 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
15:01:51.469 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
15:01:51.759 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
15:01:52.040 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
15:01:52.321 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
15:01:52.605 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
15:01:52.882 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
15:01:53.170 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
15:01:53.455 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
15:01:53.755 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
15:01:54.051 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
15:01:54.347 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
15:01:54.682 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:55.036 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jest/[email protected]' in '/builds/my-group/my-project'...
15:01:55.366 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jest/[email protected]' in '/builds/my-group/my-project'...
15:01:55.679 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @sinonjs/[email protected]' in '/builds/my-group/my-project'...
15:01:55.985 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @sinonjs/[email protected]' in '/builds/my-group/my-project'...
15:01:56.287 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:56.579 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:56.902 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jest/[email protected]' in '/builds/my-group/my-project'...
15:01:57.198 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:57.521 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jest/[email protected]' in '/builds/my-group/my-project'...
15:01:57.812 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:58.118 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:58.444 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:58.758 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:59.058 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:01:59.396 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
15:01:59.710 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @babel/[email protected]' in '/builds/my-group/my-project'...
15:02:00.074 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:00.370 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:00.656 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:00.940 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:01.239 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:01.582 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jest/[email protected]' in '/builds/my-group/my-project'...
15:02:01.896 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @jest/[email protected]' in '/builds/my-group/my-project'...
15:02:02.198 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:02.545 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:02.836 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:03.175 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:03.474 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:03.788 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:04.097 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:04.398 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:04.688 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:05.010 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:05.344 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:05.647 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:05.964 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:06.309 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:06.612 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:06.901 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:07.288 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:07.780 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:08.161 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:08.452 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:08.741 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:09.114 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:09.410 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:09.782 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:10.071 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:10.382 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:10.679 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:10.988 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:11.283 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:11.580 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:11.880 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:12.172 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:12.454 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:12.732 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:13.009 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:13.298 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:13.581 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:13.881 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:14.183 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:14.484 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:14.859 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:15.160 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:15.469 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:15.757 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:16.038 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:16.316 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:16.596 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:16.895 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:17.213 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:17.522 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:17.814 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:18.103 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:02:18.412 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:02:18.752 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:02:19.714 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:20.140 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:20.422 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:20.702 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:20.985 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:21.271 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:21.552 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:21.927 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:22.224 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:22.545 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:22.884 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:23.215 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:23.779 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:24.097 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.analyzer.PackageManager - NPM resolved dependencies for path 'bff/package.json' in 2m 7.216062085s.
15:02:24.097 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.analyzer.PackageManager - Using NPM to resolve dependencies for path 'e2e/package.json'...
15:02:24.103 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm ci --ignore-scripts --no-audit' in '/builds/my-group/my-project/e2e'...
15:02:24.888 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm list --depth Infinity --json --long' in '/builds/my-group/my-project/e2e'...
15:02:25.239 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:25.658 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @playwright/[email protected]' in '/builds/my-group/my-project'...
15:02:26.419 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:27.584 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:28.768 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json @types/[email protected]' in '/builds/my-group/my-project'...
15:02:29.384 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.utils.common.ProcessCapture - Running 'npm info --json [email protected]' in '/builds/my-group/my-project'...
15:02:29.682 [DefaultDispatcher-worker-1] INFO  org.ossreviewtoolkit.analyzer.PackageManager - NPM resolved dependencies for path 'e2e/package.json' in 5.584946241s.
15:02:29.720 [DefaultDispatcher-worker-1] INFO  kotlinx.coroutines.CoroutineScope - Finished NPM analysis.
15:02:29.722 [DefaultDispatcher-worker-3] ERROR org.ossreviewtoolkit.analyzer.AnalyzerResultBuilder - Multiple projects with the same id 'NPM::my-app:1.0.0' found. Not adding the project defined in 'https://[email protected]/mygroup/my-project.git/e2e/package.json' to the analyzer results as it duplicates the project defined in 'https://[email protected]/my-group/my-project.git/package.json'.
15:02:29.725 [main] INFO  org.ossreviewtoolkit.analyzer.Analyzer - Calling after resolution hooks for 1 manager(s).
15:02:32.801 [main] INFO  org.ossreviewtoolkit.utils.config.ConfigurationResolver - Getting 0 package curation(s) from provider 'RepositoryConfiguration' took 377.87us.
15:02:32.842 [main] INFO  org.ossreviewtoolkit.utils.config.ConfigurationResolver - Getting 1 package curation(s) from provider 'DefaultDir' took 40.465963ms.
15:02:32.843 [main] INFO  org.ossreviewtoolkit.utils.config.ConfigurationResolver - Getting 0 package curation(s) from provider 'DefaultFile' took 34.804us.
Wrote analyzer result to '/builds/my-group/my-project/output/analyzer-result.yml' (1.53 MiB) in 673.709941ms.
The analysis took 8m 3.614869012s.
Found 3 project(s) and 386 package(s) in total (not counting excluded ones).
Applied 0 curation(s) from 1 of 3 provider(s).
Resolved issues: 0 errors, 0 warnings, 0 hints.
Unresolved issues: 1 error, 0 warnings, 22 hints.
There is 1 unresolved issue with a severity equal to or greater than the WARNING threshold.
[0Ksection_end:1740409353:analyze_section

Is there anything else I should/could enable?

@fviernau
Copy link
Member

fviernau commented Feb 25, 2025

I did a new run with --info enabled, but don't really see any specific output regarding "requesting remote package details".

Thanks. Yeah, my wording was a bit inaccurate. But these npm info calls are exactly what I was having in mind, and as the logs indicate, these are the cause of the delay. (I had parallelizing of these already on my TODO list, but never came to it, and wanted to do some clean-ups first). I made one experiment with one of the three node managers (don't recall which one). It gave a improvement in the area of 3-5x with the fun tests.

@fviernau
Copy link
Member

fviernau commented Feb 25, 2025

I've just made some experiment, see [1], trying to request all package details upfront in parallel.
It seems that npm info cannot run in parallel, so it does not have any effect.

What do you think about filing an issue with npm CLI, to support running npm view in parallel, or alternatively to allow to pass multiple module IDs to the command?

[1] https://github.com/oss-review-toolkit/ort/tree/npm-view-concurrency

@malmor
Copy link
Author

malmor commented Feb 26, 2025

Hey @fviernau,
I had another look at this - and maybe the assumption regarding #9316 was wrong after all.

Because we upgraded from v34 to v37 directly, I re-did some testing with a public repository (for easier reproduction) using the versions in-between to pinpoint to moment it got slower.

Setup / How to reproduce

$ git clone https://github.com/semantic-release/semantic-release
$ cd semantic-release/
$ time docker run --user root -it --rm -v $(pwd):/project ghcr.io/oss-review-toolkit/ort:34.0.0 --warn -P ort.analyzer.enabledPackageManagers=NPM -P ort.analyzer.allowDynamicVersions=true analyze -i /project -o /

Results

Host v33.0.0 v34.0.0 v35.0.0 v36.0.0 v37.0.0
1 vCPU 7m34.974s 7m52.206s 8m26.836s 8m9.002s 8m33.344s
2 vCPU* 4m1.176s 3m57.750s 8m22.429s 7m36.519s 7m23.306s
6 vCPU* 1m51.423s 2m26.677s 6m15.526s 6m16.572s 6m34.573s

* These hosts had some other small tasks running at the time, more runs might result in a bit faster times.

Based on the results it seems that the regression occurred in v35.0.0 - and definitely had greater impact on hosts / runs with more CPUs available (that could perform concurrent tasks).

The release notes for that version mention a few refactorings for NPM, but nothing I would suspect of having such an impact.

Regarding your question / idea about an upstream issue at npm:
I am not that familiar with the npm ecosystem, but it sounds like a great long-term solution for optimizing this scanning!

@fviernau
Copy link
Member

fviernau commented Feb 27, 2025

Regarding your question / idea about an upstream issue at npm:
I am not that familiar with the npm ecosystem, but it sounds like a great long-term solution for optimizing this scanning!

If you want to help, you could try / verify yourself, that my results were right and that it is really not possible to run multiple npm view calls in parallel. (I don't have the time to look into this right now)
If you confirm, then we can file upstream ticket at npm, otherwise we can easily adjust the code in the my branch shared above to fix it in ORT.

@malmor
Copy link
Author

malmor commented Feb 27, 2025

Hey @fviernau,
I think the main issue / regression seems to be unrelated to the npm view calls, because that did not change in v35.0.0 right? So a different change must be the cause (e.g. the Java 21 upgrade or one of the small npm-related refactorings)?

If you want to help, you could try / verify yourself, that my results were right and that it is really not possible to run multiple npm view calls in parallel. (I don't have the time to look into this right now)

I did some testing with this and as far as I can tell, there can be multiple npm view commands running at the same time. Here is what I did:

  • Create two small bash scripts: concurrent.sh and sequential.sh
    #!/bin/bash
    echo "Running multiple npm view commands in sequence"
    npm view lodash
    npm view chalk
    npm view request
    npm view commander
    npm view react
    npm view express
    npm view debug
    npm view async
    npm view fs-extra
    npm view moment
    npm view prop-types
    npm view react-dom
    npm view bluebird
    npm view underscore
    npm view vuew
    npm view axios
    npm view tslib
    npm view mkdirp
    npm view glob
    npm view yargs
    #!/bin/bash
    echo "Running multiple npm view commands in parallel"
    npm view lodash &
    npm view chalk &
    npm view request &
    npm view commander &
    npm view react &
    npm view express &
    npm view debug &
    npm view async &
    npm view fs-extra &
    npm view moment &
    npm view prop-types &
    npm view react-dom &
    npm view bluebird &
    npm view underscore &
    npm view vuew &
    npm view axios &
    npm view tslib &
    npm view mkdirp &
    npm view glob &
    npm view yargs &
    wait
  • Run both scripts multiple times, checking their duration: time ./concurrent.sh

Results for 5x runs each:

  • concurrent.sh: 1.371s - 1.261s - 1.747s - 1.258s - 1.281s
  • sequential.sh: 5.873s - 7.134s - 5.738s - 5.475s - 5.360s

Based on this I would say that running multiple npm view command in parallel should be possible - and speed up the process (given that you have additional CPUs to process concurrent tasks). Does this test look useful?

@fviernau
Copy link
Member

I think the main issue / regression seems to be unrelated to the npm view calls, because that did not change in v35.0.0 right?

Hm, npm view is just an alias for npm info which is visible in the logs you shared above.
From the logs I'd guess that there is > 6 minutes spent in executing all this info calls. (It could be I'm wrong here)
So, even if there was no change, still it seems the npm info is taking a while, isn't it?

Does this test look useful?

Very helpful. This means it can be run in parallel, so I'd only need to figure out why it does not work in my experiment I shared above.

@malmor
Copy link
Author

malmor commented Feb 27, 2025

Hm, npm view is just an alias for npm info which is visible in the logs you shared above.
From the logs I'd guess that there is > 6 minutes spent in executing all this info calls. (It could be I'm wrong here)
So, even if there was no change, still it seems the npm info is taking a while, isn't it?

I re-did my performance tests from earlier, this time looking for the exact commit when the analyze started to get slower for NPM packages.

Setup:

$ git clone https://github.com/semantic-release/semantic-release
$ cd semantic-release/
# This time use --info logging to see if multiple workers are being used for 'npm info' calls
$ time docker run --user root -it --rm -v $(pwd):/project ghcr.io/oss-review-toolkit/ort:sha-0092efa --info -P ort.analyzer.enabledPackageManagers=NPM -P ort.analyzer.allowDynamicVersions=true analyze -i /project -o /

Results (running on 6 vCPU host):

0092efa seems to have decreased the analyzer performance. Looking at the --info logs confirms that versions before that commit use multiple workers, while this one just uses a single worker instead (or maybe different 2-3 workers, but not longer in parallel).

So, even if there was no change, still it seems the npm info is taking a while, isn't it?

Yeah, the npm info calls seem to be the only thing happening for most of that time, running through all the hundreds/thousands packages 👍

@fviernau
Copy link
Member

fviernau commented Feb 28, 2025

To me it's not obvious, without investigating further, why 0092efa could have caused this. Because, it seems to only reduce the number of packages getting parsed. It would still probably be interesting to understand that, but we could also go the other route:

Would you be willing @malmor to try to patch up https://github.com/oss-review-toolkit/ort/tree/npm-view-concurrency, so that it runs in parallel? (This would also fix your performance issue I believe, and would be more straight forward todo imho compared to figuring out the root cause of 0092efa degradation)

@malmor
Copy link
Author

malmor commented Feb 28, 2025

Hey @fviernau,
I can probably have a look at it next week - but I have to admit, that I have no experience working with Kotlin at all 🤷
But we'll see!

@malmor
Copy link
Author

malmor commented Mar 9, 2025

Hey @fviernau, I had a look at https://github.com/oss-review-toolkit/ort/tree/npm-view-concurrency and think that it already (kinda) works.

I did some performance tests using https://github.com/renovatebot/renovate as the repository:

time ./gradlew cli:run --args="--warn analyze -i /workspaces/ort/renovate -o ."

Results:

# Without any changes:
- 7m 27.330082422s.
- 7m 34.676918384s.
- 7m 37.070041468s.

# With your commit applied:
- 6m 4.303820216s.
- 6m 8.415606343s.
- 6m 9.952986760s.

I added some logging (trying to understand what is actually happening there), which shows that there are multiple threads running:

12:54:15.976 [ForkJoinPool.commonPool-worker-5] WARN  org.ossreviewtoolkit.plugins.packagemanagers.node.npm.Npm - Added [email protected] to cache
12:54:15.976 [ForkJoinPool.commonPool-worker-5] WARN  org.ossreviewtoolkit.plugins.packagemanagers.node.npm.Npm - Getting [email protected] upfront
12:54:15.976 [ForkJoinPool.commonPool-worker-5] WARN  org.ossreviewtoolkit.plugins.packagemanagers.node.npm.Npm - Inside getRemotePackageDetails for [email protected], cache size 6
12:54:16.021 [ForkJoinPool.commonPool-worker-11] WARN  org.ossreviewtoolkit.plugins.packagemanagers.node.npm.Npm - Added [email protected] to cache
12:54:16.022 [ForkJoinPool.commonPool-worker-11] WARN  org.ossreviewtoolkit.plugins.packagemanagers.node.npm.Npm - Getting [email protected] upfront
12:54:16.022 [ForkJoinPool.commonPool-worker-11] WARN  org.ossreviewtoolkit.plugins.packagemanagers.node.npm.Npm - Inside getRemotePackageDetails for [email protected], cache size 7
12:54:16.071 [ForkJoinPool.commonPool-worker-6] WARN  org.ossreviewtoolkit.plugins.packagemanagers.node.npm.Npm - Added [email protected] to cache
12:54:16.071 [ForkJoinPool.commonPool-worker-6] WARN  org.ossreviewtoolkit.plugins.packagemanagers.node.npm.Npm - Getting [email protected] upfront
12:54:16.071 [ForkJoinPool.commonPool-worker-6] WARN  org.ossreviewtoolkit.plugins.packagemanagers.node.npm.Npm - Inside getRemotePackageDetails for [email protected], cache size 8
12:54:16.082 [ForkJoinPool.commonPool-worker-13] WARN  org.ossreviewtoolkit.plugins.packagemanagers.node.npm.Npm - Added [email protected] to cache
12:54:16.082 [ForkJoinPool.commonPool-worker-13] WARN  org.ossreviewtoolkit.plugins.packagemanagers.node.npm.Npm - Getting [email protected] upfront
12:54:16.082 [ForkJoinPool.commonPool-worker-13] WARN  org.ossreviewtoolkit.plugins.packagemanagers.node.npm.Npm - Inside getRemotePackageDetails for [email protected], cache size 9
12:54:16.090 [ForkJoinPool.commonPool-worker-10] WARN  org.ossreviewtoolkit.plugins.packagemanagers.node.npm.Npm - Added [email protected] to cache
12:54:16.094 [ForkJoinPool.commonPool-worker-10] WARN  org.ossreviewtoolkit.plugins.packagemanagers.node.npm.Npm - Getting [email protected] upfront
12:54:16.094 [ForkJoinPool.commonPool-worker-10] WARN  org.ossreviewtoolkit.plugins.packagemanagers.node.npm.Npm - Inside getRemotePackageDetails for [email protected], cache size 10

But this only seems to run for all direct (dev) dependencies from the package.json - so it only makes a notable difference when having like 100+ dependencies. I tested some smaller projects, but could not see any notable improvement.

I have no idea how to include transitive dependencies in this.

@malmor
Copy link
Author

malmor commented Mar 19, 2025

Hey, do you have any insights in how to process the transitive dependencies upfront?
Then I would be happy to submit a pull request for this change.

Or should we discuss this on Slack? 🙂

@fviernau
Copy link
Member

fviernau commented Mar 19, 2025

Hey, do you have any insights in how to process the transitive dependencies upfront?
Then I would be happy to submit a pull request for this change.

This is what https://github.com/oss-review-toolkit/ort/tree/npm-view-concurrency I've shared before actually was about.
I believe finding the root cause why it still does run serial instead of parallel would be a good idea.

edit: I just noticed you already found the issue, here:

But this only seems to run for all direct (dev) dependencies from the package.json - so it only makes a notable difference when having like 100+ dependencies. I tested some smaller projects, but could not see any notable improvement.

I have no idea how to include transitive dependencies in this.

Let me quickly fix that.

fviernau added a commit that referenced this issue Mar 19, 2025
Obtaining the package details viva `npm info` is a performance
bottleneck of ORT's NPM package manager. Request the package details
for all packages upfront, in parellel to reduce execution time.
Experiments on a development machine show that execution of `NpmFunTest`
now takes `1 min 13 sec` instead of `3 min 47 sec`.

Fixes: #9950.

Signed-off-by: Frank Viernau <[email protected]>
@fviernau
Copy link
Member

Let me quickly fix that.

Done and PR opened. @malmor mind trying it out?

fviernau added a commit that referenced this issue Mar 19, 2025
Obtaining the package details via `npm info` is a performance
bottleneck of ORT's NPM package manager. Request the package details
for all packages upfront, in parellel to reduce execution time.
Experiments on a development machine show that execution of `NpmFunTest`
now takes `1 min 13 sec` instead of `3 min 47 sec`.

Fixes: #9950.

Signed-off-by: Frank Viernau <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
analyzer About the analyzer tool
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants