├── .c8rc.json ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 1-feature_request.md │ ├── 2-bug_report.md │ ├── ValidationError-report.md │ └── config.yml ├── dependabot.yml └── workflows │ ├── nodejs.yml │ ├── npm-ls_demo-results.yml │ └── release.yml ├── .gitignore ├── .license-header.js ├── .npmignore ├── .npmrc ├── CODEOWNERS ├── CONTRIBUTING.md ├── HISTORY.md ├── LICENSE ├── NOTICE ├── README.md ├── bin └── cyclonedx-npm-cli.js ├── demo ├── .gitattributes ├── .gitignore ├── README.md ├── alternative-package-registry │ ├── README.md │ ├── example-results │ │ ├── bare │ │ │ ├── bom.1.2.json │ │ │ ├── bom.1.2.xml │ │ │ ├── bom.1.3.json │ │ │ ├── bom.1.3.xml │ │ │ ├── bom.1.4.json │ │ │ ├── bom.1.4.xml │ │ │ ├── bom.1.5.json │ │ │ ├── bom.1.5.xml │ │ │ ├── bom.1.6.json │ │ │ └── bom.1.6.xml │ │ └── flat │ │ │ ├── bom.1.2.json │ │ │ ├── bom.1.2.xml │ │ │ ├── bom.1.3.json │ │ │ ├── bom.1.3.xml │ │ │ ├── bom.1.4.json │ │ │ ├── bom.1.4.xml │ │ │ ├── bom.1.5.json │ │ │ ├── bom.1.5.xml │ │ │ ├── bom.1.6.json │ │ │ └── bom.1.6.xml │ └── project │ │ ├── .gitignore │ │ ├── .npmrc │ │ └── package.json ├── bundled-dependencies │ ├── README.md │ ├── example-results │ │ ├── bare │ │ │ ├── bom.1.2.json │ │ │ ├── bom.1.2.xml │ │ │ ├── bom.1.3.json │ │ │ ├── bom.1.3.xml │ │ │ ├── bom.1.4.json │ │ │ ├── bom.1.4.xml │ │ │ ├── bom.1.5.json │ │ │ ├── bom.1.5.xml │ │ │ ├── bom.1.6.json │ │ │ └── bom.1.6.xml │ │ └── flat │ │ │ ├── bom.1.2.json │ │ │ ├── bom.1.2.xml │ │ │ ├── bom.1.3.json │ │ │ ├── bom.1.3.xml │ │ │ ├── bom.1.4.json │ │ │ ├── bom.1.4.xml │ │ │ ├── bom.1.5.json │ │ │ ├── bom.1.5.xml │ │ │ ├── bom.1.6.json │ │ │ └── bom.1.6.xml │ └── project │ │ ├── .gitignore │ │ └── package.json ├── deps-from-git │ ├── README.md │ ├── example-results │ │ ├── bare │ │ │ ├── bom.1.2.json │ │ │ ├── bom.1.2.xml │ │ │ ├── bom.1.3.json │ │ │ ├── bom.1.3.xml │ │ │ ├── bom.1.4.json │ │ │ ├── bom.1.4.xml │ │ │ ├── bom.1.5.json │ │ │ ├── bom.1.5.xml │ │ │ ├── bom.1.6.json │ │ │ └── bom.1.6.xml │ │ └── flat │ │ │ ├── bom.1.2.json │ │ │ ├── bom.1.2.xml │ │ │ ├── bom.1.3.json │ │ │ ├── bom.1.3.xml │ │ │ ├── bom.1.4.json │ │ │ ├── bom.1.4.xml │ │ │ ├── bom.1.5.json │ │ │ ├── bom.1.5.xml │ │ │ ├── bom.1.6.json │ │ │ └── bom.1.6.xml │ └── project │ │ ├── .gitignore │ │ ├── .npmrc │ │ └── package.json ├── dev-dependencies │ ├── README.md │ ├── example-results │ │ ├── bare │ │ │ ├── bom.1.2.json │ │ │ ├── bom.1.2.xml │ │ │ ├── bom.1.3.json │ │ │ ├── bom.1.3.xml │ │ │ ├── bom.1.4.json │ │ │ ├── bom.1.4.xml │ │ │ ├── bom.1.5.json │ │ │ ├── bom.1.5.xml │ │ │ ├── bom.1.6.json │ │ │ └── bom.1.6.xml │ │ └── flat │ │ │ ├── bom.1.2.json │ │ │ ├── bom.1.2.xml │ │ │ ├── bom.1.3.json │ │ │ ├── bom.1.3.xml │ │ │ ├── bom.1.4.json │ │ │ ├── bom.1.4.xml │ │ │ ├── bom.1.5.json │ │ │ ├── bom.1.5.xml │ │ │ ├── bom.1.6.json │ │ │ └── bom.1.6.xml │ └── project │ │ ├── .gitignore │ │ └── package.json ├── gen-boms.sh ├── juice-shop │ ├── README.md │ ├── example-results │ │ ├── bare │ │ │ ├── bom.1.2.json │ │ │ ├── bom.1.2.xml │ │ │ ├── bom.1.3.json │ │ │ ├── bom.1.3.xml │ │ │ ├── bom.1.4.json │ │ │ ├── bom.1.4.xml │ │ │ ├── bom.1.5.json │ │ │ ├── bom.1.5.xml │ │ │ ├── bom.1.6.json │ │ │ └── bom.1.6.xml │ │ └── flat │ │ │ ├── bom.1.2.json │ │ │ ├── bom.1.2.xml │ │ │ ├── bom.1.3.json │ │ │ ├── bom.1.3.xml │ │ │ ├── bom.1.4.json │ │ │ ├── bom.1.4.xml │ │ │ ├── bom.1.5.json │ │ │ ├── bom.1.5.xml │ │ │ ├── bom.1.6.json │ │ │ └── bom.1.6.xml │ └── project │ │ ├── .gitignore │ │ └── package.json ├── local-dependencies │ ├── README.md │ ├── example-results │ │ ├── bare │ │ │ ├── bom.1.2.json │ │ │ ├── bom.1.2.xml │ │ │ ├── bom.1.3.json │ │ │ ├── bom.1.3.xml │ │ │ ├── bom.1.4.json │ │ │ ├── bom.1.4.xml │ │ │ ├── bom.1.5.json │ │ │ ├── bom.1.5.xml │ │ │ ├── bom.1.6.json │ │ │ └── bom.1.6.xml │ │ └── flat │ │ │ ├── bom.1.2.json │ │ │ ├── bom.1.2.xml │ │ │ ├── bom.1.3.json │ │ │ ├── bom.1.3.xml │ │ │ ├── bom.1.4.json │ │ │ ├── bom.1.4.xml │ │ │ ├── bom.1.5.json │ │ │ ├── bom.1.5.xml │ │ │ ├── bom.1.6.json │ │ │ └── bom.1.6.xml │ └── project │ │ ├── .gitignore │ │ ├── .npmrc │ │ ├── package.json │ │ └── packages │ │ ├── my-local-a │ │ ├── .gitignore │ │ └── package.json │ │ ├── my-local-b │ │ ├── .gitignore │ │ └── package.json │ │ ├── my-local-e │ │ ├── .gitignore │ │ └── package.json │ │ └── my-noname │ │ ├── .gitignore │ │ └── package.json ├── local-workspaces │ ├── README.md │ ├── example-results │ │ ├── bare │ │ │ ├── bom.1.2.json │ │ │ ├── bom.1.2.xml │ │ │ ├── bom.1.3.json │ │ │ ├── bom.1.3.xml │ │ │ ├── bom.1.4.json │ │ │ ├── bom.1.4.xml │ │ │ ├── bom.1.5.json │ │ │ ├── bom.1.5.xml │ │ │ ├── bom.1.6.json │ │ │ └── bom.1.6.xml │ │ └── flat │ │ │ ├── bom.1.2.json │ │ │ ├── bom.1.2.xml │ │ │ ├── bom.1.3.json │ │ │ ├── bom.1.3.xml │ │ │ ├── bom.1.4.json │ │ │ ├── bom.1.4.xml │ │ │ ├── bom.1.5.json │ │ │ ├── bom.1.5.xml │ │ │ ├── bom.1.6.json │ │ │ └── bom.1.6.xml │ └── project │ │ ├── .gitignore │ │ ├── package.json │ │ └── workspaces │ │ ├── my-local-a │ │ ├── .gitignore │ │ └── package.json │ │ ├── my-local-b │ │ ├── .gitignore │ │ └── package.json │ │ ├── my-local-e │ │ ├── .gitignore │ │ └── package.json │ │ └── my-local │ │ ├── .gitignore │ │ └── package.json ├── package-integrity │ ├── README.md │ ├── example-results │ │ ├── bare │ │ │ ├── bom.1.2.json │ │ │ ├── bom.1.2.xml │ │ │ ├── bom.1.3.json │ │ │ ├── bom.1.3.xml │ │ │ ├── bom.1.4.json │ │ │ ├── bom.1.4.xml │ │ │ ├── bom.1.5.json │ │ │ ├── bom.1.5.xml │ │ │ ├── bom.1.6.json │ │ │ └── bom.1.6.xml │ │ └── flat │ │ │ ├── bom.1.2.json │ │ │ ├── bom.1.2.xml │ │ │ ├── bom.1.3.json │ │ │ ├── bom.1.3.xml │ │ │ ├── bom.1.4.json │ │ │ ├── bom.1.4.xml │ │ │ ├── bom.1.5.json │ │ │ ├── bom.1.5.xml │ │ │ ├── bom.1.6.json │ │ │ └── bom.1.6.xml │ └── project │ │ ├── .gitignore │ │ ├── package-lock.json │ │ └── package.json └── package-with-build-id │ ├── README.md │ ├── example-results │ ├── bare │ │ ├── bom.1.2.json │ │ ├── bom.1.2.xml │ │ ├── bom.1.3.json │ │ ├── bom.1.3.xml │ │ ├── bom.1.4.json │ │ ├── bom.1.4.xml │ │ ├── bom.1.5.json │ │ ├── bom.1.5.xml │ │ ├── bom.1.6.json │ │ └── bom.1.6.xml │ └── flat │ │ ├── bom.1.2.json │ │ ├── bom.1.2.xml │ │ ├── bom.1.3.json │ │ ├── bom.1.3.xml │ │ ├── bom.1.4.json │ │ ├── bom.1.4.xml │ │ ├── bom.1.5.json │ │ ├── bom.1.5.xml │ │ ├── bom.1.6.json │ │ └── bom.1.6.xml │ └── project │ ├── .gitignore │ └── package.json ├── docs ├── component_deduplication.md ├── dev │ ├── breaking-chanes.md │ ├── dependencies.md │ ├── exports.md │ ├── lockfile.md │ └── state.md ├── how.md ├── nodejs_internals.md └── result.md ├── eslint.config.mjs ├── index.js ├── jest.config.js ├── knip.jsonc ├── package.json ├── src ├── _helpers.ts ├── builders.ts ├── cli.ts ├── logger.ts ├── npmRunner.ts └── properties.ts ├── tests ├── README.md ├── _data │ ├── dummy_projects │ │ ├── README.md │ │ ├── no-lockfile │ │ │ ├── .gitattributes │ │ │ └── package.json │ │ ├── no-manifest │ │ │ ├── .gitattributes │ │ │ └── package-lock.json │ │ ├── with-lockfile │ │ │ ├── .gitattributes │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── with-prepared │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── LICENCE.mit │ │ │ ├── LICENSES │ │ │ │ ├── Apache-2.0.txt │ │ │ │ └── CC0-1.0.txt │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ └── index.md │ │ │ ├── node_modules │ │ │ │ ├── .package-lock.json │ │ │ │ ├── @cyclonedx │ │ │ │ │ ├── cyclonedx-library-same_aliased │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ ├── dist.web │ │ │ │ │ │ │ └── lib.js.LICENSE.txt │ │ │ │ │ │ └── package.json │ │ │ │ │ └── cyclonedx-library │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── NOTICE │ │ │ │ │ │ ├── dist.web │ │ │ │ │ │ └── lib.js.LICENSE.txt │ │ │ │ │ │ └── package.json │ │ │ │ ├── @db-ui │ │ │ │ │ └── base │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── LICENSES │ │ │ │ │ │ ├── Apache-2.0.txt │ │ │ │ │ │ ├── CC0-1.0.txt │ │ │ │ │ │ └── LicenseRef-DB-Designs-License.txt │ │ │ │ │ │ └── package.json │ │ │ │ ├── @isaacs │ │ │ │ │ └── cliui │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ └── package.json │ │ │ │ ├── @npmcli │ │ │ │ │ ├── agent │ │ │ │ │ │ └── package.json │ │ │ │ │ └── fs │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ └── package.json │ │ │ │ ├── @oozcitak │ │ │ │ │ ├── dom │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── infra │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── url │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── package.json │ │ │ │ │ └── util │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── package.json │ │ │ │ ├── @pkgjs │ │ │ │ │ └── parseargs │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── package.json │ │ │ │ ├── @types │ │ │ │ │ ├── node │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── package.json │ │ │ │ │ └── uuid │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── package.json │ │ │ │ ├── abbrev │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── agent-base │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── aggregate-error │ │ │ │ │ ├── license │ │ │ │ │ └── package.json │ │ │ │ ├── ajv-formats-draft2019 │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── ajv-formats │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── ajv │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── ansi-regex │ │ │ │ │ ├── license │ │ │ │ │ └── package.json │ │ │ │ ├── ansi-styles │ │ │ │ │ ├── license │ │ │ │ │ └── package.json │ │ │ │ ├── argparse │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── sprintf-js │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ ├── balanced-match │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ └── package.json │ │ │ │ ├── base64-js │ │ │ │ │ ├── LICENSE.MIT │ │ │ │ │ └── package.json │ │ │ │ ├── bindings │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ └── package.json │ │ │ │ ├── bl │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ └── package.json │ │ │ │ ├── brace-expansion │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── buffer │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── base64-js │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ ├── bundle-dependencies │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── ansi-regex │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── builtin-modules │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── camelcase │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── cliui │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── code-point-at │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── decamelize │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── error-ex │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── escape-string-regexp │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── find-up │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── graceful-fs │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── hosted-git-info │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── invert-kv │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── is-arrayish │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── is-builtin-module │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── is-fullwidth-code-point │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── is-utf8 │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── lcid │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── load-json-file │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── lodash.assign │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── lodash.keys │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── lodash.rest │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── normalize-package-data │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── number-is-nan │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── object-assign │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── os-locale │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── parse-json │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── path-exists │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── path-type │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── pify │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── pinkie-promise │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── pinkie │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── pkg-conf │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── read-pkg-up │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── read-pkg │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── require-main-filename │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── semver │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── spdx-correct │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── spdx-exceptions │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── spdx-expression-parse │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── spdx-license-ids │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── spdx-license-ids.json │ │ │ │ │ │ ├── string-width │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── strip-ansi │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── strip-bom │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── symbol │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── validate-npm-package-license │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── window-size │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── wrap-ansi │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── y18n │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── yargs-parser │ │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── yargs │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ ├── cacache │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ └── package.json │ │ │ │ ├── chownr │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── clean-stack │ │ │ │ │ ├── license │ │ │ │ │ └── package.json │ │ │ │ ├── color-convert │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── color-name │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── commander │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── cross-spawn │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── isexe │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── which │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ ├── debug │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── decompress-response │ │ │ │ │ ├── license │ │ │ │ │ └── package.json │ │ │ │ ├── deep-extend │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── detect-libc │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── discontinuous-range │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── eastasianwidth │ │ │ │ │ └── package.json │ │ │ │ ├── emoji-regex │ │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ │ └── package.json │ │ │ │ ├── encoding │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── end-of-stream │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── env-paths │ │ │ │ │ ├── license │ │ │ │ │ └── package.json │ │ │ │ ├── err-code │ │ │ │ │ └── package.json │ │ │ │ ├── esprima │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ └── package.json │ │ │ │ ├── expand-template │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── exponential-backoff │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── extend │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── fast-deep-equal │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── fast-uri │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── file-uri-to-path │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── foreground-child │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── fs-constants │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── fs-minipass │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── github-from-package │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── example │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ ├── glob │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── graceful-fs │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── http-cache-semantics │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── http-proxy-agent │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── https-proxy-agent │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── iconv-lite │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── ieee754 │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── ignore │ │ │ │ │ ├── LICENSE-MIT │ │ │ │ │ └── package.json │ │ │ │ ├── imurmurhash │ │ │ │ │ └── package.json │ │ │ │ ├── indent-string │ │ │ │ │ ├── license │ │ │ │ │ └── package.json │ │ │ │ ├── inherits │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── ini │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── ip-address │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── is-fullwidth-code-point │ │ │ │ │ ├── license │ │ │ │ │ └── package.json │ │ │ │ ├── is-lambda │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── is-obj │ │ │ │ │ ├── license │ │ │ │ │ └── package.json │ │ │ │ ├── isexe │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── jackspeak │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ └── package.json │ │ │ │ ├── js-yaml │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── jsbn │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── json-schema-traverse │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── libxmljs2 │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── lru-cache │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── make-fetch-happen │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── mimic-response │ │ │ │ │ ├── license │ │ │ │ │ └── package.json │ │ │ │ ├── minimatch │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── minimist │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── minipass-collect │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── minipass-fetch │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── minipass-flush │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── minipass │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ ├── minipass-pipeline │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── minipass │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ ├── minipass-sized │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── minipass │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ ├── minipass │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── minizlib │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── minipass │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ ├── mkdirp-classic │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── mkdirp │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── moo │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── ms │ │ │ │ │ ├── license.md │ │ │ │ │ └── package.json │ │ │ │ ├── nan │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── tools │ │ │ │ │ │ └── package.json │ │ │ │ ├── napi-build-utils │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── nearley │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── package.json │ │ │ │ ├── negotiator │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── node-abi │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── node-gyp │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── gyp │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── pylib │ │ │ │ │ │ │ └── packaging │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── LICENSE.APACHE │ │ │ │ │ │ │ └── LICENSE.BSD │ │ │ │ │ └── package.json │ │ │ │ ├── nopt │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── once │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── p-map │ │ │ │ │ ├── license │ │ │ │ │ └── package.json │ │ │ │ ├── package-json-from-dist │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ └── package.json │ │ │ │ ├── packageurl-js │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── path-key │ │ │ │ │ ├── license │ │ │ │ │ └── package.json │ │ │ │ ├── path-scurry │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ └── package.json │ │ │ │ ├── prebuild-install │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── proc-log │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── promise-retry │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── pump │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── punycode │ │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ │ └── package.json │ │ │ │ ├── railroad-diagrams │ │ │ │ │ └── package.json │ │ │ │ ├── randexp │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── rc │ │ │ │ │ ├── LICENSE.APACHE2 │ │ │ │ │ ├── LICENSE.BSD │ │ │ │ │ ├── LICENSE.MIT │ │ │ │ │ └── package.json │ │ │ │ ├── readable-stream │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── require-from-string │ │ │ │ │ ├── license │ │ │ │ │ └── package.json │ │ │ │ ├── ret │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── retry │ │ │ │ │ ├── License │ │ │ │ │ └── package.json │ │ │ │ ├── safe-buffer │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── safer-buffer │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── schemes │ │ │ │ │ └── package.json │ │ │ │ ├── semver │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── shebang-command │ │ │ │ │ ├── license │ │ │ │ │ └── package.json │ │ │ │ ├── shebang-regex │ │ │ │ │ ├── license │ │ │ │ │ └── package.json │ │ │ │ ├── signal-exit │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── package.json │ │ │ │ ├── simple-concat │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── simple-get │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── smart-buffer │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── smtp-address-parser │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── socks-proxy-agent │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── socks │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── spdx-exceptions │ │ │ │ │ └── package.json │ │ │ │ ├── spdx-expression-parse │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── spdx-license-ids │ │ │ │ │ └── package.json │ │ │ │ ├── sprintf-js │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── ssri │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ └── package.json │ │ │ │ ├── string-width-cjs │ │ │ │ │ ├── license │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── ansi-regex │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── emoji-regex │ │ │ │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── strip-ansi │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ ├── string-width │ │ │ │ │ ├── license │ │ │ │ │ └── package.json │ │ │ │ ├── string_decoder │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── strip-ansi-cjs │ │ │ │ │ ├── license │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── ansi-regex │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ ├── strip-ansi │ │ │ │ │ ├── license │ │ │ │ │ └── package.json │ │ │ │ ├── strip-json-comments │ │ │ │ │ ├── license │ │ │ │ │ └── package.json │ │ │ │ ├── tar-fs │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── chownr │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ ├── tar-stream │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── tar │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── fs-minipass │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── minipass │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── minipass │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ ├── tunnel-agent │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── undici-types │ │ │ │ │ └── package.json │ │ │ │ ├── unique-filename │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── unique-slug │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── uri-js │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── util-deprecate │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── uuid │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ └── package.json │ │ │ │ ├── uuidv4 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── licenseCheck.json │ │ │ │ │ └── package.json │ │ │ │ ├── which │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── wrap-ansi-cjs │ │ │ │ │ ├── license │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── ansi-regex │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── ansi-styles │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── emoji-regex │ │ │ │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── string-width │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── strip-ansi │ │ │ │ │ │ │ ├── license │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ ├── wrap-ansi │ │ │ │ │ ├── license │ │ │ │ │ └── package.json │ │ │ │ ├── wrappy │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ ├── xmlbuilder2 │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ │ └── yallist │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── package.json │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── setup.sh │ │ └── with-shrinkwrap │ │ │ ├── .gitattributes │ │ │ ├── npm-shrinkwrap.json │ │ │ └── package.json │ ├── npm-ls_demo-results │ │ ├── .gitattributes │ │ ├── README.md │ │ ├── _duplicates-cleaner │ │ │ ├── .gitignore │ │ │ ├── cleanup.mjs │ │ │ └── package.json │ │ ├── alternative-package-registry │ │ │ └── CI_results │ │ │ │ ├── npm-ls_npm10_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm10_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm10_node20_windows-latest.json │ │ │ │ ├── npm-ls_npm10_node22_windows-latest.json │ │ │ │ ├── npm-ls_npm11_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm11_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm11_node20_windows-latest.json │ │ │ │ ├── npm-ls_npm11_node22_windows-latest.json │ │ │ │ ├── npm-ls_npm9_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm9_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm9_node20_windows-latest.json │ │ │ │ └── npm-ls_npm9_node22_windows-latest.json │ │ ├── bundled-dependencies │ │ │ └── CI_results │ │ │ │ ├── npm-ls_npm10_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm10_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm10_node20_windows-latest.json │ │ │ │ ├── npm-ls_npm10_node22_windows-latest.json │ │ │ │ ├── npm-ls_npm11_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm11_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm11_node20_windows-latest.json │ │ │ │ ├── npm-ls_npm11_node22_windows-latest.json │ │ │ │ ├── npm-ls_npm9_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm9_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm9_node20_windows-latest.json │ │ │ │ └── npm-ls_npm9_node22_windows-latest.json │ │ ├── deps-from-git │ │ │ └── CI_results │ │ │ │ ├── npm-ls_npm10_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm10_node24_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm11_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm11_node24_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm9_node20_ubuntu-latest.json │ │ │ │ └── npm-ls_npm9_node24_ubuntu-latest.json │ │ ├── dev-dependencies │ │ │ └── CI_results │ │ │ │ ├── npm-ls_npm10_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm10_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm10_node20_windows-latest.json │ │ │ │ ├── npm-ls_npm10_node22_windows-latest.json │ │ │ │ ├── npm-ls_npm11_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm11_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm11_node20_windows-latest.json │ │ │ │ ├── npm-ls_npm11_node22_windows-latest.json │ │ │ │ ├── npm-ls_npm9_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm9_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm9_node20_windows-latest.json │ │ │ │ └── npm-ls_npm9_node22_windows-latest.json │ │ ├── index.js │ │ ├── juice-shop │ │ │ └── CI_results │ │ │ │ ├── npm-ls_npm10_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm10_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm10_node20_windows-latest.json │ │ │ │ ├── npm-ls_npm10_node24_macos-latest.json │ │ │ │ ├── npm-ls_npm10_node24_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm10_node24_windows-latest.json │ │ │ │ ├── npm-ls_npm11_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm11_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm11_node20_windows-latest.json │ │ │ │ ├── npm-ls_npm11_node24_macos-latest.json │ │ │ │ ├── npm-ls_npm11_node24_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm11_node24_windows-latest.json │ │ │ │ ├── npm-ls_npm9_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm9_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm9_node20_windows-latest.json │ │ │ │ ├── npm-ls_npm9_node24_macos-latest.json │ │ │ │ ├── npm-ls_npm9_node24_ubuntu-latest.json │ │ │ │ └── npm-ls_npm9_node24_windows-latest.json │ │ ├── local-dependencies │ │ │ └── CI_results │ │ │ │ ├── npm-ls_npm10_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm10_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm10_node20_windows-latest.json │ │ │ │ ├── npm-ls_npm10_node22_windows-latest.json │ │ │ │ ├── npm-ls_npm11_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm11_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm11_node20_windows-latest.json │ │ │ │ ├── npm-ls_npm11_node22_windows-latest.json │ │ │ │ ├── npm-ls_npm9_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm9_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm9_node20_windows-latest.json │ │ │ │ └── npm-ls_npm9_node22_windows-latest.json │ │ ├── local-workspaces │ │ │ └── CI_results │ │ │ │ ├── npm-ls--no-workspaces_npm11_node22_ubuntu-latest.json │ │ │ │ ├── npm-ls--workspace=my-local --workspace=my-local-e_npm11_node22_ubuntu-latest.json │ │ │ │ ├── npm-ls--workspace=my-local-e_npm11_node22_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm10_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm10_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm10_node20_windows-latest.json │ │ │ │ ├── npm-ls_npm10_node22_windows-latest.json │ │ │ │ ├── npm-ls_npm11_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm11_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm11_node20_windows-latest.json │ │ │ │ ├── npm-ls_npm11_node22_windows-latest.json │ │ │ │ ├── npm-ls_npm9_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm9_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm9_node20_windows-latest.json │ │ │ │ └── npm-ls_npm9_node22_windows-latest.json │ │ ├── package-integrity │ │ │ └── CI_results │ │ │ │ ├── npm-ls_npm10_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm10_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm10_node20_windows-latest.json │ │ │ │ ├── npm-ls_npm10_node22_windows-latest.json │ │ │ │ ├── npm-ls_npm11_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm11_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm11_node20_windows-latest.json │ │ │ │ ├── npm-ls_npm11_node22_windows-latest.json │ │ │ │ ├── npm-ls_npm9_node20_macos-latest.json │ │ │ │ ├── npm-ls_npm9_node20_ubuntu-latest.json │ │ │ │ ├── npm-ls_npm9_node20_windows-latest.json │ │ │ │ └── npm-ls_npm9_node22_windows-latest.json │ │ └── package-with-build-id │ │ │ └── CI_results │ │ │ ├── npm-ls_npm10_node20_macos-latest.json │ │ │ ├── npm-ls_npm10_node20_ubuntu-latest.json │ │ │ ├── npm-ls_npm10_node20_windows-latest.json │ │ │ ├── npm-ls_npm10_node22_windows-latest.json │ │ │ ├── npm-ls_npm11_node20_macos-latest.json │ │ │ ├── npm-ls_npm11_node20_ubuntu-latest.json │ │ │ ├── npm-ls_npm11_node20_windows-latest.json │ │ │ ├── npm-ls_npm11_node22_windows-latest.json │ │ │ ├── npm-ls_npm9_node20_macos-latest.json │ │ │ ├── npm-ls_npm9_node20_ubuntu-latest.json │ │ │ ├── npm-ls_npm9_node20_windows-latest.json │ │ │ └── npm-ls_npm9_node22_windows-latest.json │ ├── npm-ls_replacement │ │ ├── broken-json.js │ │ ├── check-args.js │ │ ├── demo-results.js │ │ └── just-exit.js │ ├── sbom_demo-results │ │ ├── .gitattributes │ │ ├── README.md │ │ ├── bare │ │ │ ├── alternative-package-registry_npm10_node20_macos-latest.snap.json │ │ │ ├── alternative-package-registry_npm10_node20_ubuntu-latest.snap.json │ │ │ ├── alternative-package-registry_npm10_node20_windows-latest.snap.json │ │ │ ├── alternative-package-registry_npm10_node22_windows-latest.snap.json │ │ │ ├── alternative-package-registry_npm11_node20_macos-latest.snap.json │ │ │ ├── alternative-package-registry_npm11_node20_ubuntu-latest.snap.json │ │ │ ├── alternative-package-registry_npm11_node20_windows-latest.snap.json │ │ │ ├── alternative-package-registry_npm11_node22_windows-latest.snap.json │ │ │ ├── alternative-package-registry_npm9_node20_macos-latest.snap.json │ │ │ ├── alternative-package-registry_npm9_node20_ubuntu-latest.snap.json │ │ │ ├── alternative-package-registry_npm9_node20_windows-latest.snap.json │ │ │ ├── alternative-package-registry_npm9_node22_windows-latest.snap.json │ │ │ ├── bundled-dependencies_npm10_node20_macos-latest.snap.json │ │ │ ├── bundled-dependencies_npm10_node20_ubuntu-latest.snap.json │ │ │ ├── bundled-dependencies_npm10_node20_windows-latest.snap.json │ │ │ ├── bundled-dependencies_npm10_node22_windows-latest.snap.json │ │ │ ├── bundled-dependencies_npm11_node20_macos-latest.snap.json │ │ │ ├── bundled-dependencies_npm11_node20_ubuntu-latest.snap.json │ │ │ ├── bundled-dependencies_npm11_node20_windows-latest.snap.json │ │ │ ├── bundled-dependencies_npm11_node22_windows-latest.snap.json │ │ │ ├── bundled-dependencies_npm9_node20_macos-latest.snap.json │ │ │ ├── bundled-dependencies_npm9_node20_ubuntu-latest.snap.json │ │ │ ├── bundled-dependencies_npm9_node20_windows-latest.snap.json │ │ │ ├── bundled-dependencies_npm9_node22_windows-latest.snap.json │ │ │ ├── deps-from-git_npm10_node20_ubuntu-latest.snap.json │ │ │ ├── deps-from-git_npm10_node24_ubuntu-latest.snap.json │ │ │ ├── deps-from-git_npm11_node20_ubuntu-latest.snap.json │ │ │ ├── deps-from-git_npm11_node24_ubuntu-latest.snap.json │ │ │ ├── deps-from-git_npm9_node20_ubuntu-latest.snap.json │ │ │ ├── deps-from-git_npm9_node24_ubuntu-latest.snap.json │ │ │ ├── dev-dependencies_npm10_node20_macos-latest.snap.json │ │ │ ├── dev-dependencies_npm10_node20_ubuntu-latest.snap.json │ │ │ ├── dev-dependencies_npm10_node20_windows-latest.snap.json │ │ │ ├── dev-dependencies_npm10_node22_windows-latest.snap.json │ │ │ ├── dev-dependencies_npm11_node20_macos-latest.snap.json │ │ │ ├── dev-dependencies_npm11_node20_ubuntu-latest.snap.json │ │ │ ├── dev-dependencies_npm11_node20_windows-latest.snap.json │ │ │ ├── dev-dependencies_npm11_node22_windows-latest.snap.json │ │ │ ├── dev-dependencies_npm9_node20_macos-latest.snap.json │ │ │ ├── dev-dependencies_npm9_node20_ubuntu-latest.snap.json │ │ │ ├── dev-dependencies_npm9_node20_windows-latest.snap.json │ │ │ ├── dev-dependencies_npm9_node22_windows-latest.snap.json │ │ │ ├── juice-shop_npm10_node20_macos-latest.snap.json │ │ │ ├── juice-shop_npm10_node20_ubuntu-latest.snap.json │ │ │ ├── juice-shop_npm10_node20_windows-latest.snap.json │ │ │ ├── juice-shop_npm10_node24_macos-latest.snap.json │ │ │ ├── juice-shop_npm10_node24_ubuntu-latest.snap.json │ │ │ ├── juice-shop_npm10_node24_windows-latest.snap.json │ │ │ ├── juice-shop_npm11_node20_macos-latest.snap.json │ │ │ ├── juice-shop_npm11_node20_ubuntu-latest.snap.json │ │ │ ├── juice-shop_npm11_node20_windows-latest.snap.json │ │ │ ├── juice-shop_npm11_node24_macos-latest.snap.json │ │ │ ├── juice-shop_npm11_node24_ubuntu-latest.snap.json │ │ │ ├── juice-shop_npm11_node24_windows-latest.snap.json │ │ │ ├── juice-shop_npm9_node20_macos-latest.snap.json │ │ │ ├── juice-shop_npm9_node20_ubuntu-latest.snap.json │ │ │ ├── juice-shop_npm9_node20_windows-latest.snap.json │ │ │ ├── juice-shop_npm9_node24_macos-latest.snap.json │ │ │ ├── juice-shop_npm9_node24_ubuntu-latest.snap.json │ │ │ ├── juice-shop_npm9_node24_windows-latest.snap.json │ │ │ ├── local-dependencies_npm10_node20_macos-latest.snap.json │ │ │ ├── local-dependencies_npm10_node20_ubuntu-latest.snap.json │ │ │ ├── local-dependencies_npm10_node20_windows-latest.snap.json │ │ │ ├── local-dependencies_npm10_node22_windows-latest.snap.json │ │ │ ├── local-dependencies_npm11_node20_macos-latest.snap.json │ │ │ ├── local-dependencies_npm11_node20_ubuntu-latest.snap.json │ │ │ ├── local-dependencies_npm11_node20_windows-latest.snap.json │ │ │ ├── local-dependencies_npm11_node22_windows-latest.snap.json │ │ │ ├── local-dependencies_npm9_node20_macos-latest.snap.json │ │ │ ├── local-dependencies_npm9_node20_ubuntu-latest.snap.json │ │ │ ├── local-dependencies_npm9_node20_windows-latest.snap.json │ │ │ ├── local-dependencies_npm9_node22_windows-latest.snap.json │ │ │ ├── local-workspaces--no-workspaces_npm11_node22_ubuntu-latest.snap.json │ │ │ ├── local-workspaces--workspace=my-local --workspace=my-local-e_npm11_node22_ubuntu-latest.snap.json │ │ │ ├── local-workspaces--workspace=my-local-e_npm11_node22_ubuntu-latest.snap.json │ │ │ ├── local-workspaces_npm10_node20_macos-latest.snap.json │ │ │ ├── local-workspaces_npm10_node20_ubuntu-latest.snap.json │ │ │ ├── local-workspaces_npm10_node20_windows-latest.snap.json │ │ │ ├── local-workspaces_npm10_node22_windows-latest.snap.json │ │ │ ├── local-workspaces_npm11_node20_macos-latest.snap.json │ │ │ ├── local-workspaces_npm11_node20_ubuntu-latest.snap.json │ │ │ ├── local-workspaces_npm11_node20_windows-latest.snap.json │ │ │ ├── local-workspaces_npm11_node22_windows-latest.snap.json │ │ │ ├── local-workspaces_npm9_node20_macos-latest.snap.json │ │ │ ├── local-workspaces_npm9_node20_ubuntu-latest.snap.json │ │ │ ├── local-workspaces_npm9_node20_windows-latest.snap.json │ │ │ ├── local-workspaces_npm9_node22_windows-latest.snap.json │ │ │ ├── package-integrity_npm10_node20_macos-latest.snap.json │ │ │ ├── package-integrity_npm10_node20_ubuntu-latest.snap.json │ │ │ ├── package-integrity_npm10_node20_windows-latest.snap.json │ │ │ ├── package-integrity_npm10_node22_windows-latest.snap.json │ │ │ ├── package-integrity_npm11_node20_macos-latest.snap.json │ │ │ ├── package-integrity_npm11_node20_ubuntu-latest.snap.json │ │ │ ├── package-integrity_npm11_node20_windows-latest.snap.json │ │ │ ├── package-integrity_npm11_node22_windows-latest.snap.json │ │ │ ├── package-integrity_npm9_node20_macos-latest.snap.json │ │ │ ├── package-integrity_npm9_node20_ubuntu-latest.snap.json │ │ │ ├── package-integrity_npm9_node20_windows-latest.snap.json │ │ │ ├── package-integrity_npm9_node22_windows-latest.snap.json │ │ │ ├── package-with-build-id_npm10_node20_macos-latest.snap.json │ │ │ ├── package-with-build-id_npm10_node20_ubuntu-latest.snap.json │ │ │ ├── package-with-build-id_npm10_node20_windows-latest.snap.json │ │ │ ├── package-with-build-id_npm10_node22_windows-latest.snap.json │ │ │ ├── package-with-build-id_npm11_node20_macos-latest.snap.json │ │ │ ├── package-with-build-id_npm11_node20_ubuntu-latest.snap.json │ │ │ ├── package-with-build-id_npm11_node20_windows-latest.snap.json │ │ │ ├── package-with-build-id_npm11_node22_windows-latest.snap.json │ │ │ ├── package-with-build-id_npm9_node20_macos-latest.snap.json │ │ │ ├── package-with-build-id_npm9_node20_ubuntu-latest.snap.json │ │ │ ├── package-with-build-id_npm9_node20_windows-latest.snap.json │ │ │ └── package-with-build-id_npm9_node22_windows-latest.snap.json │ │ ├── flatten-components │ │ │ ├── bundled-dependencies_npm9_node20_macos-latest.snap.json │ │ │ ├── bundled-dependencies_npm9_node20_ubuntu-latest.snap.json │ │ │ ├── bundled-dependencies_npm9_node20_windows-latest.snap.json │ │ │ ├── bundled-dependencies_npm9_node22_windows-latest.snap.json │ │ │ ├── juice-shop_npm9_node20_macos-latest.snap.json │ │ │ ├── juice-shop_npm9_node20_ubuntu-latest.snap.json │ │ │ ├── juice-shop_npm9_node20_windows-latest.snap.json │ │ │ ├── juice-shop_npm9_node24_macos-latest.snap.json │ │ │ ├── juice-shop_npm9_node24_ubuntu-latest.snap.json │ │ │ └── juice-shop_npm9_node24_windows-latest.snap.json │ │ └── suppressed-error-on-non-zero-exit │ │ │ └── dev-dependencies_npm9_node20_ubuntu-latest.snap.json │ └── sbom_dummy-results │ │ ├── .gitattributes │ │ ├── README.md │ │ ├── bare │ │ ├── with-prepared.snap.json │ │ └── with-prepared.snap.xml │ │ ├── flat │ │ ├── with-prepared.snap.json │ │ └── with-prepared.snap.xml │ │ ├── omit-dev-optional-peer │ │ ├── with-prepared.snap.json │ │ └── with-prepared.snap.xml │ │ ├── omit-dev-optional │ │ ├── with-prepared.snap.json │ │ └── with-prepared.snap.xml │ │ ├── omit-dev-peer │ │ ├── with-prepared.snap.json │ │ └── with-prepared.snap.xml │ │ ├── omit-dev │ │ ├── with-prepared.snap.json │ │ └── with-prepared.snap.xml │ │ ├── omit-optional-peer │ │ ├── with-prepared.snap.json │ │ └── with-prepared.snap.xml │ │ ├── omit-optional │ │ ├── with-prepared.snap.json │ │ └── with-prepared.snap.xml │ │ ├── omit-peer │ │ ├── with-prepared.snap.json │ │ └── with-prepared.snap.xml │ │ ├── package-lock-only │ │ ├── with-prepared.snap.json │ │ └── with-prepared.snap.xml │ │ └── with-licenses │ │ ├── with-prepared.snap.json │ │ └── with-prepared.snap.xml ├── _helper │ └── index.js ├── _tmp │ └── .gitignore ├── integration │ ├── cli.args-pass-through.test.js │ ├── cli.dogfooding.test.js │ ├── cli.edge-cases.test.js │ ├── cli.from-collected.test.js │ ├── cli.from-setups.test.js │ ├── index.js │ └── setup.js └── unit │ ├── builders.TreeBuilder.spec.js │ └── versionCompare.spec.js ├── tools ├── code-style │ ├── .gitignore │ ├── .npmrc │ ├── eslint.config.mjs │ └── package.json └── test-dependencies │ ├── .gitignore │ ├── .npmrc │ └── package.json └── tsconfig.json /.c8rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/.c8rc.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/.github/ISSUE_TEMPLATE/1-feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/.github/ISSUE_TEMPLATE/2-bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ValidationError-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/.github/ISSUE_TEMPLATE/ValidationError-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/npm-ls_demo-results.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/.github/workflows/npm-ls_demo-results.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/.gitignore -------------------------------------------------------------------------------- /.license-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/.license-header.js -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/.npmrc -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/README.md -------------------------------------------------------------------------------- /bin/cyclonedx-npm-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/bin/cyclonedx-npm-cli.js -------------------------------------------------------------------------------- /demo/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/.gitattributes -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/.gitignore -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/alternative-package-registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/README.md -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/bare/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/bare/bom.1.2.json -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/bare/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/bare/bom.1.2.xml -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/bare/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/bare/bom.1.3.json -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/bare/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/bare/bom.1.3.xml -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/bare/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/bare/bom.1.4.json -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/bare/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/bare/bom.1.4.xml -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/bare/bom.1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/bare/bom.1.5.json -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/bare/bom.1.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/bare/bom.1.5.xml -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/bare/bom.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/bare/bom.1.6.json -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/bare/bom.1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/bare/bom.1.6.xml -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/flat/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/flat/bom.1.2.json -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/flat/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/flat/bom.1.2.xml -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/flat/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/flat/bom.1.3.json -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/flat/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/flat/bom.1.3.xml -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/flat/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/flat/bom.1.4.json -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/flat/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/flat/bom.1.4.xml -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/flat/bom.1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/flat/bom.1.5.json -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/flat/bom.1.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/flat/bom.1.5.xml -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/flat/bom.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/flat/bom.1.6.json -------------------------------------------------------------------------------- /demo/alternative-package-registry/example-results/flat/bom.1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/example-results/flat/bom.1.6.xml -------------------------------------------------------------------------------- /demo/alternative-package-registry/project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/project/.gitignore -------------------------------------------------------------------------------- /demo/alternative-package-registry/project/.npmrc: -------------------------------------------------------------------------------- 1 | 2 | @jsr:registry=https://npm.jsr.io 3 | -------------------------------------------------------------------------------- /demo/alternative-package-registry/project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/alternative-package-registry/project/package.json -------------------------------------------------------------------------------- /demo/bundled-dependencies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/README.md -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/bare/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/bare/bom.1.2.json -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/bare/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/bare/bom.1.2.xml -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/bare/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/bare/bom.1.3.json -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/bare/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/bare/bom.1.3.xml -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/bare/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/bare/bom.1.4.json -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/bare/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/bare/bom.1.4.xml -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/bare/bom.1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/bare/bom.1.5.json -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/bare/bom.1.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/bare/bom.1.5.xml -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/bare/bom.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/bare/bom.1.6.json -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/bare/bom.1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/bare/bom.1.6.xml -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/flat/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/flat/bom.1.2.json -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/flat/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/flat/bom.1.2.xml -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/flat/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/flat/bom.1.3.json -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/flat/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/flat/bom.1.3.xml -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/flat/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/flat/bom.1.4.json -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/flat/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/flat/bom.1.4.xml -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/flat/bom.1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/flat/bom.1.5.json -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/flat/bom.1.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/flat/bom.1.5.xml -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/flat/bom.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/flat/bom.1.6.json -------------------------------------------------------------------------------- /demo/bundled-dependencies/example-results/flat/bom.1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/example-results/flat/bom.1.6.xml -------------------------------------------------------------------------------- /demo/bundled-dependencies/project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/project/.gitignore -------------------------------------------------------------------------------- /demo/bundled-dependencies/project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/bundled-dependencies/project/package.json -------------------------------------------------------------------------------- /demo/deps-from-git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/README.md -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/bare/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/bare/bom.1.2.json -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/bare/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/bare/bom.1.2.xml -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/bare/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/bare/bom.1.3.json -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/bare/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/bare/bom.1.3.xml -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/bare/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/bare/bom.1.4.json -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/bare/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/bare/bom.1.4.xml -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/bare/bom.1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/bare/bom.1.5.json -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/bare/bom.1.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/bare/bom.1.5.xml -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/bare/bom.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/bare/bom.1.6.json -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/bare/bom.1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/bare/bom.1.6.xml -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/flat/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/flat/bom.1.2.json -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/flat/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/flat/bom.1.2.xml -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/flat/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/flat/bom.1.3.json -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/flat/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/flat/bom.1.3.xml -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/flat/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/flat/bom.1.4.json -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/flat/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/flat/bom.1.4.xml -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/flat/bom.1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/flat/bom.1.5.json -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/flat/bom.1.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/flat/bom.1.5.xml -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/flat/bom.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/flat/bom.1.6.json -------------------------------------------------------------------------------- /demo/deps-from-git/example-results/flat/bom.1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/example-results/flat/bom.1.6.xml -------------------------------------------------------------------------------- /demo/deps-from-git/project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/project/.gitignore -------------------------------------------------------------------------------- /demo/deps-from-git/project/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/project/.npmrc -------------------------------------------------------------------------------- /demo/deps-from-git/project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/deps-from-git/project/package.json -------------------------------------------------------------------------------- /demo/dev-dependencies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/README.md -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/bare/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/bare/bom.1.2.json -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/bare/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/bare/bom.1.2.xml -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/bare/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/bare/bom.1.3.json -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/bare/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/bare/bom.1.3.xml -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/bare/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/bare/bom.1.4.json -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/bare/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/bare/bom.1.4.xml -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/bare/bom.1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/bare/bom.1.5.json -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/bare/bom.1.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/bare/bom.1.5.xml -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/bare/bom.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/bare/bom.1.6.json -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/bare/bom.1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/bare/bom.1.6.xml -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/flat/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/flat/bom.1.2.json -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/flat/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/flat/bom.1.2.xml -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/flat/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/flat/bom.1.3.json -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/flat/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/flat/bom.1.3.xml -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/flat/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/flat/bom.1.4.json -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/flat/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/flat/bom.1.4.xml -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/flat/bom.1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/flat/bom.1.5.json -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/flat/bom.1.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/flat/bom.1.5.xml -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/flat/bom.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/flat/bom.1.6.json -------------------------------------------------------------------------------- /demo/dev-dependencies/example-results/flat/bom.1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/example-results/flat/bom.1.6.xml -------------------------------------------------------------------------------- /demo/dev-dependencies/project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/project/.gitignore -------------------------------------------------------------------------------- /demo/dev-dependencies/project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/dev-dependencies/project/package.json -------------------------------------------------------------------------------- /demo/gen-boms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/gen-boms.sh -------------------------------------------------------------------------------- /demo/juice-shop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/README.md -------------------------------------------------------------------------------- /demo/juice-shop/example-results/bare/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/bare/bom.1.2.json -------------------------------------------------------------------------------- /demo/juice-shop/example-results/bare/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/bare/bom.1.2.xml -------------------------------------------------------------------------------- /demo/juice-shop/example-results/bare/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/bare/bom.1.3.json -------------------------------------------------------------------------------- /demo/juice-shop/example-results/bare/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/bare/bom.1.3.xml -------------------------------------------------------------------------------- /demo/juice-shop/example-results/bare/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/bare/bom.1.4.json -------------------------------------------------------------------------------- /demo/juice-shop/example-results/bare/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/bare/bom.1.4.xml -------------------------------------------------------------------------------- /demo/juice-shop/example-results/bare/bom.1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/bare/bom.1.5.json -------------------------------------------------------------------------------- /demo/juice-shop/example-results/bare/bom.1.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/bare/bom.1.5.xml -------------------------------------------------------------------------------- /demo/juice-shop/example-results/bare/bom.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/bare/bom.1.6.json -------------------------------------------------------------------------------- /demo/juice-shop/example-results/bare/bom.1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/bare/bom.1.6.xml -------------------------------------------------------------------------------- /demo/juice-shop/example-results/flat/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/flat/bom.1.2.json -------------------------------------------------------------------------------- /demo/juice-shop/example-results/flat/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/flat/bom.1.2.xml -------------------------------------------------------------------------------- /demo/juice-shop/example-results/flat/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/flat/bom.1.3.json -------------------------------------------------------------------------------- /demo/juice-shop/example-results/flat/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/flat/bom.1.3.xml -------------------------------------------------------------------------------- /demo/juice-shop/example-results/flat/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/flat/bom.1.4.json -------------------------------------------------------------------------------- /demo/juice-shop/example-results/flat/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/flat/bom.1.4.xml -------------------------------------------------------------------------------- /demo/juice-shop/example-results/flat/bom.1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/flat/bom.1.5.json -------------------------------------------------------------------------------- /demo/juice-shop/example-results/flat/bom.1.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/flat/bom.1.5.xml -------------------------------------------------------------------------------- /demo/juice-shop/example-results/flat/bom.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/flat/bom.1.6.json -------------------------------------------------------------------------------- /demo/juice-shop/example-results/flat/bom.1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/example-results/flat/bom.1.6.xml -------------------------------------------------------------------------------- /demo/juice-shop/project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/project/.gitignore -------------------------------------------------------------------------------- /demo/juice-shop/project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/juice-shop/project/package.json -------------------------------------------------------------------------------- /demo/local-dependencies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/README.md -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/bare/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/bare/bom.1.2.json -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/bare/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/bare/bom.1.2.xml -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/bare/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/bare/bom.1.3.json -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/bare/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/bare/bom.1.3.xml -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/bare/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/bare/bom.1.4.json -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/bare/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/bare/bom.1.4.xml -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/bare/bom.1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/bare/bom.1.5.json -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/bare/bom.1.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/bare/bom.1.5.xml -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/bare/bom.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/bare/bom.1.6.json -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/bare/bom.1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/bare/bom.1.6.xml -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/flat/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/flat/bom.1.2.json -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/flat/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/flat/bom.1.2.xml -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/flat/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/flat/bom.1.3.json -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/flat/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/flat/bom.1.3.xml -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/flat/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/flat/bom.1.4.json -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/flat/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/flat/bom.1.4.xml -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/flat/bom.1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/flat/bom.1.5.json -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/flat/bom.1.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/flat/bom.1.5.xml -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/flat/bom.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/flat/bom.1.6.json -------------------------------------------------------------------------------- /demo/local-dependencies/example-results/flat/bom.1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/example-results/flat/bom.1.6.xml -------------------------------------------------------------------------------- /demo/local-dependencies/project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/project/.gitignore -------------------------------------------------------------------------------- /demo/local-dependencies/project/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/project/.npmrc -------------------------------------------------------------------------------- /demo/local-dependencies/project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/project/package.json -------------------------------------------------------------------------------- /demo/local-dependencies/project/packages/my-local-a/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/project/packages/my-local-a/.gitignore -------------------------------------------------------------------------------- /demo/local-dependencies/project/packages/my-local-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/project/packages/my-local-a/package.json -------------------------------------------------------------------------------- /demo/local-dependencies/project/packages/my-local-b/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/project/packages/my-local-b/.gitignore -------------------------------------------------------------------------------- /demo/local-dependencies/project/packages/my-local-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/project/packages/my-local-b/package.json -------------------------------------------------------------------------------- /demo/local-dependencies/project/packages/my-local-e/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/project/packages/my-local-e/.gitignore -------------------------------------------------------------------------------- /demo/local-dependencies/project/packages/my-local-e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/project/packages/my-local-e/package.json -------------------------------------------------------------------------------- /demo/local-dependencies/project/packages/my-noname/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/project/packages/my-noname/.gitignore -------------------------------------------------------------------------------- /demo/local-dependencies/project/packages/my-noname/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-dependencies/project/packages/my-noname/package.json -------------------------------------------------------------------------------- /demo/local-workspaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/README.md -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/bare/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/bare/bom.1.2.json -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/bare/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/bare/bom.1.2.xml -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/bare/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/bare/bom.1.3.json -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/bare/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/bare/bom.1.3.xml -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/bare/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/bare/bom.1.4.json -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/bare/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/bare/bom.1.4.xml -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/bare/bom.1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/bare/bom.1.5.json -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/bare/bom.1.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/bare/bom.1.5.xml -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/bare/bom.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/bare/bom.1.6.json -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/bare/bom.1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/bare/bom.1.6.xml -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/flat/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/flat/bom.1.2.json -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/flat/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/flat/bom.1.2.xml -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/flat/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/flat/bom.1.3.json -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/flat/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/flat/bom.1.3.xml -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/flat/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/flat/bom.1.4.json -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/flat/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/flat/bom.1.4.xml -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/flat/bom.1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/flat/bom.1.5.json -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/flat/bom.1.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/flat/bom.1.5.xml -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/flat/bom.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/flat/bom.1.6.json -------------------------------------------------------------------------------- /demo/local-workspaces/example-results/flat/bom.1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/example-results/flat/bom.1.6.xml -------------------------------------------------------------------------------- /demo/local-workspaces/project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/project/.gitignore -------------------------------------------------------------------------------- /demo/local-workspaces/project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/project/package.json -------------------------------------------------------------------------------- /demo/local-workspaces/project/workspaces/my-local-a/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/project/workspaces/my-local-a/.gitignore -------------------------------------------------------------------------------- /demo/local-workspaces/project/workspaces/my-local-a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/project/workspaces/my-local-a/package.json -------------------------------------------------------------------------------- /demo/local-workspaces/project/workspaces/my-local-b/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/project/workspaces/my-local-b/.gitignore -------------------------------------------------------------------------------- /demo/local-workspaces/project/workspaces/my-local-b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/project/workspaces/my-local-b/package.json -------------------------------------------------------------------------------- /demo/local-workspaces/project/workspaces/my-local-e/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/project/workspaces/my-local-e/.gitignore -------------------------------------------------------------------------------- /demo/local-workspaces/project/workspaces/my-local-e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/project/workspaces/my-local-e/package.json -------------------------------------------------------------------------------- /demo/local-workspaces/project/workspaces/my-local/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/project/workspaces/my-local/.gitignore -------------------------------------------------------------------------------- /demo/local-workspaces/project/workspaces/my-local/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/local-workspaces/project/workspaces/my-local/package.json -------------------------------------------------------------------------------- /demo/package-integrity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/README.md -------------------------------------------------------------------------------- /demo/package-integrity/example-results/bare/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/bare/bom.1.2.json -------------------------------------------------------------------------------- /demo/package-integrity/example-results/bare/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/bare/bom.1.2.xml -------------------------------------------------------------------------------- /demo/package-integrity/example-results/bare/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/bare/bom.1.3.json -------------------------------------------------------------------------------- /demo/package-integrity/example-results/bare/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/bare/bom.1.3.xml -------------------------------------------------------------------------------- /demo/package-integrity/example-results/bare/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/bare/bom.1.4.json -------------------------------------------------------------------------------- /demo/package-integrity/example-results/bare/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/bare/bom.1.4.xml -------------------------------------------------------------------------------- /demo/package-integrity/example-results/bare/bom.1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/bare/bom.1.5.json -------------------------------------------------------------------------------- /demo/package-integrity/example-results/bare/bom.1.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/bare/bom.1.5.xml -------------------------------------------------------------------------------- /demo/package-integrity/example-results/bare/bom.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/bare/bom.1.6.json -------------------------------------------------------------------------------- /demo/package-integrity/example-results/bare/bom.1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/bare/bom.1.6.xml -------------------------------------------------------------------------------- /demo/package-integrity/example-results/flat/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/flat/bom.1.2.json -------------------------------------------------------------------------------- /demo/package-integrity/example-results/flat/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/flat/bom.1.2.xml -------------------------------------------------------------------------------- /demo/package-integrity/example-results/flat/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/flat/bom.1.3.json -------------------------------------------------------------------------------- /demo/package-integrity/example-results/flat/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/flat/bom.1.3.xml -------------------------------------------------------------------------------- /demo/package-integrity/example-results/flat/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/flat/bom.1.4.json -------------------------------------------------------------------------------- /demo/package-integrity/example-results/flat/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/flat/bom.1.4.xml -------------------------------------------------------------------------------- /demo/package-integrity/example-results/flat/bom.1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/flat/bom.1.5.json -------------------------------------------------------------------------------- /demo/package-integrity/example-results/flat/bom.1.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/flat/bom.1.5.xml -------------------------------------------------------------------------------- /demo/package-integrity/example-results/flat/bom.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/flat/bom.1.6.json -------------------------------------------------------------------------------- /demo/package-integrity/example-results/flat/bom.1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/example-results/flat/bom.1.6.xml -------------------------------------------------------------------------------- /demo/package-integrity/project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/project/.gitignore -------------------------------------------------------------------------------- /demo/package-integrity/project/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/project/package-lock.json -------------------------------------------------------------------------------- /demo/package-integrity/project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-integrity/project/package.json -------------------------------------------------------------------------------- /demo/package-with-build-id/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/README.md -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/bare/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/bare/bom.1.2.json -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/bare/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/bare/bom.1.2.xml -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/bare/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/bare/bom.1.3.json -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/bare/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/bare/bom.1.3.xml -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/bare/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/bare/bom.1.4.json -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/bare/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/bare/bom.1.4.xml -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/bare/bom.1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/bare/bom.1.5.json -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/bare/bom.1.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/bare/bom.1.5.xml -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/bare/bom.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/bare/bom.1.6.json -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/bare/bom.1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/bare/bom.1.6.xml -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/flat/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/flat/bom.1.2.json -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/flat/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/flat/bom.1.2.xml -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/flat/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/flat/bom.1.3.json -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/flat/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/flat/bom.1.3.xml -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/flat/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/flat/bom.1.4.json -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/flat/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/flat/bom.1.4.xml -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/flat/bom.1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/flat/bom.1.5.json -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/flat/bom.1.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/flat/bom.1.5.xml -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/flat/bom.1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/flat/bom.1.6.json -------------------------------------------------------------------------------- /demo/package-with-build-id/example-results/flat/bom.1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/example-results/flat/bom.1.6.xml -------------------------------------------------------------------------------- /demo/package-with-build-id/project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/project/.gitignore -------------------------------------------------------------------------------- /demo/package-with-build-id/project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/demo/package-with-build-id/project/package.json -------------------------------------------------------------------------------- /docs/component_deduplication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/docs/component_deduplication.md -------------------------------------------------------------------------------- /docs/dev/breaking-chanes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/docs/dev/breaking-chanes.md -------------------------------------------------------------------------------- /docs/dev/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/docs/dev/dependencies.md -------------------------------------------------------------------------------- /docs/dev/exports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/docs/dev/exports.md -------------------------------------------------------------------------------- /docs/dev/lockfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/docs/dev/lockfile.md -------------------------------------------------------------------------------- /docs/dev/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/docs/dev/state.md -------------------------------------------------------------------------------- /docs/how.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/docs/how.md -------------------------------------------------------------------------------- /docs/nodejs_internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/docs/nodejs_internals.md -------------------------------------------------------------------------------- /docs/result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/docs/result.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/index.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/jest.config.js -------------------------------------------------------------------------------- /knip.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/knip.jsonc -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/package.json -------------------------------------------------------------------------------- /src/_helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/src/_helpers.ts -------------------------------------------------------------------------------- /src/builders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/src/builders.ts -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/src/logger.ts -------------------------------------------------------------------------------- /src/npmRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/src/npmRunner.ts -------------------------------------------------------------------------------- /src/properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/src/properties.ts -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/_data/dummy_projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/README.md -------------------------------------------------------------------------------- /tests/_data/dummy_projects/no-lockfile/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/no-lockfile/.gitattributes -------------------------------------------------------------------------------- /tests/_data/dummy_projects/no-lockfile/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true 3 | } 4 | -------------------------------------------------------------------------------- /tests/_data/dummy_projects/no-manifest/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/no-manifest/.gitattributes -------------------------------------------------------------------------------- /tests/_data/dummy_projects/no-manifest/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/no-manifest/package-lock.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-lockfile/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-lockfile/.gitattributes -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-lockfile/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-lockfile/package-lock.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-lockfile/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true 3 | } 4 | -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/.gitattributes -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/.gitignore -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/LICENCE.mit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/LICENCE.mit -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/README.md -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/docs/index.md -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/.package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/.package-lock.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@db-ui/base/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@db-ui/base/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@db-ui/base/LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@db-ui/base/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@db-ui/base/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@db-ui/base/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@isaacs/cliui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@isaacs/cliui/LICENSE.txt -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@isaacs/cliui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@isaacs/cliui/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@npmcli/agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@npmcli/agent/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@npmcli/fs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@npmcli/fs/LICENSE.md -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@npmcli/fs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@npmcli/fs/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@oozcitak/dom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@oozcitak/dom/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@oozcitak/dom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@oozcitak/dom/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@oozcitak/infra/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@oozcitak/infra/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@oozcitak/infra/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@oozcitak/infra/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@oozcitak/url/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@oozcitak/url/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@oozcitak/url/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@oozcitak/url/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@oozcitak/util/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@oozcitak/util/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@oozcitak/util/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@oozcitak/util/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@pkgjs/parseargs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@pkgjs/parseargs/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@pkgjs/parseargs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@pkgjs/parseargs/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@types/node/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@types/node/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@types/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@types/node/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@types/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@types/uuid/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/@types/uuid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/@types/uuid/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/abbrev/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/abbrev/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/abbrev/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/abbrev/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/agent-base/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/agent-base/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/agent-base/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/agent-base/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/aggregate-error/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/aggregate-error/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/aggregate-error/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/aggregate-error/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ajv-formats-draft2019/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ajv-formats-draft2019/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ajv-formats/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ajv-formats/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ajv-formats/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ajv-formats/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ajv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ajv/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ajv/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ajv/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ansi-regex/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ansi-regex/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ansi-regex/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ansi-regex/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ansi-styles/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ansi-styles/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ansi-styles/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ansi-styles/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/argparse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/argparse/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/argparse/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/argparse/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/balanced-match/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/balanced-match/LICENSE.md -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/balanced-match/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/balanced-match/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/base64-js/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/base64-js/LICENSE.MIT -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/base64-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/base64-js/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/bindings/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/bindings/LICENSE.md -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/bindings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/bindings/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/bl/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/bl/LICENSE.md -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/bl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/bl/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/brace-expansion/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/brace-expansion/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/brace-expansion/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/brace-expansion/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/buffer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/buffer/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/buffer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/buffer/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/bundle-dependencies/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/bundle-dependencies/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/bundle-dependencies/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/bundle-dependencies/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/cacache/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/cacache/LICENSE.md -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/cacache/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/cacache/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/chownr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/chownr/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/chownr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/chownr/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/clean-stack/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/clean-stack/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/clean-stack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/clean-stack/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/color-convert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/color-convert/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/color-convert/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/color-convert/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/color-name/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/color-name/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/color-name/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/color-name/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/commander/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/commander/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/commander/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/commander/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/cross-spawn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/cross-spawn/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/cross-spawn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/cross-spawn/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/debug/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/debug/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/debug/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/decompress-response/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/decompress-response/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/decompress-response/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/decompress-response/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/deep-extend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/deep-extend/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/deep-extend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/deep-extend/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/detect-libc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/detect-libc/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/detect-libc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/detect-libc/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/discontinuous-range/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/discontinuous-range/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/discontinuous-range/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/discontinuous-range/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/eastasianwidth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/eastasianwidth/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/emoji-regex/LICENSE-MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/emoji-regex/LICENSE-MIT.txt -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/emoji-regex/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/emoji-regex/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/encoding/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/encoding/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/encoding/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/encoding/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/end-of-stream/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/end-of-stream/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/end-of-stream/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/end-of-stream/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/env-paths/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/env-paths/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/env-paths/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/env-paths/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/err-code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/err-code/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/esprima/LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/esprima/LICENSE.BSD -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/esprima/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/esprima/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/expand-template/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/expand-template/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/expand-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/expand-template/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/exponential-backoff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/exponential-backoff/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/exponential-backoff/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/exponential-backoff/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/extend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/extend/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/extend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/extend/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/fast-deep-equal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/fast-deep-equal/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/fast-deep-equal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/fast-deep-equal/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/fast-uri/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/fast-uri/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/fast-uri/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/fast-uri/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/file-uri-to-path/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/file-uri-to-path/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/file-uri-to-path/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/file-uri-to-path/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/foreground-child/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/foreground-child/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/foreground-child/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/foreground-child/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/fs-constants/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/fs-constants/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/fs-constants/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/fs-constants/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/fs-minipass/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/fs-minipass/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/fs-minipass/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/fs-minipass/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/github-from-package/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/github-from-package/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/github-from-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/github-from-package/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/glob/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/glob/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/glob/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/graceful-fs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/graceful-fs/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/graceful-fs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/graceful-fs/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/http-cache-semantics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/http-cache-semantics/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/http-cache-semantics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/http-cache-semantics/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/http-proxy-agent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/http-proxy-agent/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/http-proxy-agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/http-proxy-agent/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/https-proxy-agent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/https-proxy-agent/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/https-proxy-agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/https-proxy-agent/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/iconv-lite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/iconv-lite/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/iconv-lite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/iconv-lite/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ieee754/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ieee754/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ieee754/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ieee754/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ignore/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ignore/LICENSE-MIT -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ignore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ignore/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/imurmurhash/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/imurmurhash/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/indent-string/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/indent-string/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/indent-string/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/indent-string/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/inherits/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/inherits/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/inherits/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/inherits/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ini/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ini/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ini/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ini/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ip-address/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ip-address/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ip-address/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ip-address/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/is-fullwidth-code-point/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/is-fullwidth-code-point/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/is-lambda/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/is-lambda/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/is-lambda/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/is-lambda/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/is-obj/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/is-obj/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/is-obj/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/is-obj/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/isexe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/isexe/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/isexe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/isexe/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/jackspeak/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/jackspeak/LICENSE.md -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/jackspeak/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/jackspeak/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/js-yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/js-yaml/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/js-yaml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/js-yaml/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/jsbn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/jsbn/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/jsbn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/jsbn/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/json-schema-traverse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/json-schema-traverse/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/json-schema-traverse/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/json-schema-traverse/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/libxmljs2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/libxmljs2/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/libxmljs2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/libxmljs2/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/lru-cache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/lru-cache/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/lru-cache/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/lru-cache/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/make-fetch-happen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/make-fetch-happen/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/make-fetch-happen/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/make-fetch-happen/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/mimic-response/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/mimic-response/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/mimic-response/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/mimic-response/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/minimatch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/minimatch/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/minimatch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/minimatch/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/minimist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/minimist/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/minimist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/minimist/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/minipass-collect/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/minipass-collect/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/minipass-collect/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/minipass-collect/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/minipass-fetch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/minipass-fetch/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/minipass-fetch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/minipass-fetch/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/minipass-flush/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/minipass-flush/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/minipass-flush/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/minipass-flush/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/minipass-pipeline/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/minipass-pipeline/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/minipass-pipeline/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/minipass-pipeline/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/minipass-sized/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/minipass-sized/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/minipass-sized/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/minipass-sized/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/minipass/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/minipass/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/minipass/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/minipass/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/minizlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/minizlib/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/minizlib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/minizlib/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/mkdirp-classic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/mkdirp-classic/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/mkdirp-classic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/mkdirp-classic/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/mkdirp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/mkdirp/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/mkdirp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/mkdirp/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/moo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/moo/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/moo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/moo/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ms/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ms/license.md -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ms/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/nan/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/nan/LICENSE.md -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/nan/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/nan/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/nan/tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/nan/tools/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/napi-build-utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/napi-build-utils/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/napi-build-utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/napi-build-utils/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/nearley/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/nearley/LICENSE.txt -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/nearley/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/nearley/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/negotiator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/negotiator/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/negotiator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/negotiator/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/node-abi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/node-abi/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/node-abi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/node-abi/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/node-gyp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/node-gyp/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/node-gyp/gyp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/node-gyp/gyp/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/node-gyp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/node-gyp/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/nopt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/nopt/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/nopt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/nopt/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/once/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/once/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/once/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/once/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/p-map/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/p-map/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/p-map/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/p-map/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/package-json-from-dist/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/package-json-from-dist/LICENSE.md -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/packageurl-js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/packageurl-js/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/packageurl-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/packageurl-js/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/path-key/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/path-key/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/path-key/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/path-key/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/path-scurry/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/path-scurry/LICENSE.md -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/path-scurry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/path-scurry/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/prebuild-install/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/prebuild-install/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/prebuild-install/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/prebuild-install/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/proc-log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/proc-log/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/proc-log/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/proc-log/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/promise-retry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/promise-retry/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/promise-retry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/promise-retry/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/pump/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/pump/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/pump/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/pump/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/punycode/LICENSE-MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/punycode/LICENSE-MIT.txt -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/punycode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/punycode/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/railroad-diagrams/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/railroad-diagrams/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/randexp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/randexp/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/randexp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/randexp/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/rc/LICENSE.APACHE2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/rc/LICENSE.APACHE2 -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/rc/LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/rc/LICENSE.BSD -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/rc/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/rc/LICENSE.MIT -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/rc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/rc/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/readable-stream/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/readable-stream/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/readable-stream/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/readable-stream/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/require-from-string/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/require-from-string/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/require-from-string/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/require-from-string/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ret/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ret/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ret/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ret/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/retry/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/retry/License -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/retry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/retry/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/safe-buffer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/safe-buffer/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/safe-buffer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/safe-buffer/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/safer-buffer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/safer-buffer/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/safer-buffer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/safer-buffer/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/schemes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/schemes/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/semver/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/semver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/semver/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/shebang-command/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/shebang-command/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/shebang-command/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/shebang-command/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/shebang-regex/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/shebang-regex/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/shebang-regex/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/shebang-regex/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/signal-exit/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/signal-exit/LICENSE.txt -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/signal-exit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/signal-exit/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/simple-concat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/simple-concat/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/simple-concat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/simple-concat/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/simple-get/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/simple-get/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/simple-get/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/simple-get/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/smart-buffer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/smart-buffer/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/smart-buffer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/smart-buffer/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/smtp-address-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/smtp-address-parser/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/smtp-address-parser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/smtp-address-parser/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/socks-proxy-agent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/socks-proxy-agent/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/socks-proxy-agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/socks-proxy-agent/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/socks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/socks/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/socks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/socks/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/spdx-exceptions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/spdx-exceptions/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/spdx-expression-parse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/spdx-expression-parse/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/spdx-license-ids/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/spdx-license-ids/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/sprintf-js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/sprintf-js/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/sprintf-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/sprintf-js/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ssri/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ssri/LICENSE.md -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/ssri/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/ssri/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/string-width-cjs/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/string-width-cjs/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/string-width-cjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/string-width-cjs/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/string-width/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/string-width/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/string-width/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/string-width/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/string_decoder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/string_decoder/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/string_decoder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/string_decoder/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/strip-ansi-cjs/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/strip-ansi-cjs/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/strip-ansi-cjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/strip-ansi-cjs/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/strip-ansi/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/strip-ansi/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/strip-ansi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/strip-ansi/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/strip-json-comments/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/strip-json-comments/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/strip-json-comments/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/strip-json-comments/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/tar-fs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/tar-fs/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/tar-fs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/tar-fs/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/tar-stream/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/tar-stream/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/tar-stream/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/tar-stream/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/tar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/tar/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/tar/node_modules/minipass/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/tar/node_modules/minipass/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/tar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/tar/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/tunnel-agent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/tunnel-agent/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/tunnel-agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/tunnel-agent/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/undici-types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/undici-types/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/unique-filename/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/unique-filename/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/unique-filename/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/unique-filename/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/unique-slug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/unique-slug/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/unique-slug/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/unique-slug/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/uri-js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/uri-js/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/uri-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/uri-js/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/util-deprecate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/util-deprecate/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/util-deprecate/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/util-deprecate/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/uuid/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/uuid/LICENSE.md -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/uuid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/uuid/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/uuidv4/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/uuidv4/LICENSE.txt -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/uuidv4/licenseCheck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/uuidv4/licenseCheck.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/uuidv4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/uuidv4/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/which/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/which/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/which/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/which/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/wrap-ansi-cjs/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/wrap-ansi-cjs/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/wrap-ansi-cjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/wrap-ansi-cjs/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/wrap-ansi/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/wrap-ansi/license -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/wrap-ansi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/wrap-ansi/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/wrappy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/wrappy/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/wrappy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/wrappy/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/xmlbuilder2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/xmlbuilder2/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/xmlbuilder2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/xmlbuilder2/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/yallist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/yallist/LICENSE -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/node_modules/yallist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/node_modules/yallist/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/package-lock.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/package.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-prepared/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-prepared/setup.sh -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-shrinkwrap/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-shrinkwrap/.gitattributes -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-shrinkwrap/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/dummy_projects/with-shrinkwrap/npm-shrinkwrap.json -------------------------------------------------------------------------------- /tests/_data/dummy_projects/with-shrinkwrap/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true 3 | } 4 | -------------------------------------------------------------------------------- /tests/_data/npm-ls_demo-results/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/npm-ls_demo-results/.gitattributes -------------------------------------------------------------------------------- /tests/_data/npm-ls_demo-results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/npm-ls_demo-results/README.md -------------------------------------------------------------------------------- /tests/_data/npm-ls_demo-results/_duplicates-cleaner/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/npm-ls_demo-results/_duplicates-cleaner/.gitignore -------------------------------------------------------------------------------- /tests/_data/npm-ls_demo-results/_duplicates-cleaner/cleanup.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/npm-ls_demo-results/_duplicates-cleaner/cleanup.mjs -------------------------------------------------------------------------------- /tests/_data/npm-ls_demo-results/_duplicates-cleaner/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/npm-ls_demo-results/_duplicates-cleaner/package.json -------------------------------------------------------------------------------- /tests/_data/npm-ls_demo-results/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/npm-ls_demo-results/index.js -------------------------------------------------------------------------------- /tests/_data/npm-ls_replacement/broken-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/npm-ls_replacement/broken-json.js -------------------------------------------------------------------------------- /tests/_data/npm-ls_replacement/check-args.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/npm-ls_replacement/check-args.js -------------------------------------------------------------------------------- /tests/_data/npm-ls_replacement/demo-results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/npm-ls_replacement/demo-results.js -------------------------------------------------------------------------------- /tests/_data/npm-ls_replacement/just-exit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/npm-ls_replacement/just-exit.js -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/.gitattributes -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/README.md -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/deps-from-git_npm10_node20_ubuntu-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/deps-from-git_npm10_node20_ubuntu-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/deps-from-git_npm10_node24_ubuntu-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/deps-from-git_npm10_node24_ubuntu-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/deps-from-git_npm11_node20_ubuntu-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/deps-from-git_npm11_node20_ubuntu-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/deps-from-git_npm11_node24_ubuntu-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/deps-from-git_npm11_node24_ubuntu-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/deps-from-git_npm9_node20_ubuntu-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/deps-from-git_npm9_node20_ubuntu-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/deps-from-git_npm9_node24_ubuntu-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/deps-from-git_npm9_node24_ubuntu-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/dev-dependencies_npm10_node20_macos-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/dev-dependencies_npm10_node20_macos-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/juice-shop_npm10_node20_macos-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/juice-shop_npm10_node20_macos-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/juice-shop_npm10_node20_ubuntu-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/juice-shop_npm10_node20_ubuntu-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/juice-shop_npm10_node20_windows-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/juice-shop_npm10_node20_windows-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/juice-shop_npm10_node24_macos-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/juice-shop_npm10_node24_macos-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/juice-shop_npm10_node24_ubuntu-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/juice-shop_npm10_node24_ubuntu-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/juice-shop_npm10_node24_windows-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/juice-shop_npm10_node24_windows-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/juice-shop_npm11_node20_macos-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/juice-shop_npm11_node20_macos-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/juice-shop_npm11_node20_ubuntu-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/juice-shop_npm11_node20_ubuntu-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/juice-shop_npm11_node20_windows-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/juice-shop_npm11_node20_windows-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/juice-shop_npm11_node24_macos-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/juice-shop_npm11_node24_macos-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/juice-shop_npm11_node24_ubuntu-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/juice-shop_npm11_node24_ubuntu-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/juice-shop_npm11_node24_windows-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/juice-shop_npm11_node24_windows-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/juice-shop_npm9_node20_macos-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/juice-shop_npm9_node20_macos-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/juice-shop_npm9_node20_ubuntu-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/juice-shop_npm9_node20_ubuntu-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/juice-shop_npm9_node20_windows-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/juice-shop_npm9_node20_windows-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/juice-shop_npm9_node24_macos-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/juice-shop_npm9_node24_macos-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/juice-shop_npm9_node24_ubuntu-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/juice-shop_npm9_node24_ubuntu-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_demo-results/bare/juice-shop_npm9_node24_windows-latest.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_demo-results/bare/juice-shop_npm9_node24_windows-latest.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/.gitattributes -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/README.md -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/bare/with-prepared.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/bare/with-prepared.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/bare/with-prepared.snap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/bare/with-prepared.snap.xml -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/flat/with-prepared.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/flat/with-prepared.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/flat/with-prepared.snap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/flat/with-prepared.snap.xml -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/omit-dev-optional-peer/with-prepared.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/omit-dev-optional-peer/with-prepared.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/omit-dev-optional-peer/with-prepared.snap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/omit-dev-optional-peer/with-prepared.snap.xml -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/omit-dev-optional/with-prepared.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/omit-dev-optional/with-prepared.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/omit-dev-optional/with-prepared.snap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/omit-dev-optional/with-prepared.snap.xml -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/omit-dev-peer/with-prepared.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/omit-dev-peer/with-prepared.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/omit-dev-peer/with-prepared.snap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/omit-dev-peer/with-prepared.snap.xml -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/omit-dev/with-prepared.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/omit-dev/with-prepared.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/omit-dev/with-prepared.snap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/omit-dev/with-prepared.snap.xml -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/omit-optional-peer/with-prepared.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/omit-optional-peer/with-prepared.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/omit-optional-peer/with-prepared.snap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/omit-optional-peer/with-prepared.snap.xml -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/omit-optional/with-prepared.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/omit-optional/with-prepared.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/omit-optional/with-prepared.snap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/omit-optional/with-prepared.snap.xml -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/omit-peer/with-prepared.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/omit-peer/with-prepared.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/omit-peer/with-prepared.snap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/omit-peer/with-prepared.snap.xml -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/package-lock-only/with-prepared.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/package-lock-only/with-prepared.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/package-lock-only/with-prepared.snap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/package-lock-only/with-prepared.snap.xml -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/with-licenses/with-prepared.snap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/with-licenses/with-prepared.snap.json -------------------------------------------------------------------------------- /tests/_data/sbom_dummy-results/with-licenses/with-prepared.snap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_data/sbom_dummy-results/with-licenses/with-prepared.snap.xml -------------------------------------------------------------------------------- /tests/_helper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/_helper/index.js -------------------------------------------------------------------------------- /tests/_tmp/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /tests/integration/cli.args-pass-through.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/integration/cli.args-pass-through.test.js -------------------------------------------------------------------------------- /tests/integration/cli.dogfooding.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/integration/cli.dogfooding.test.js -------------------------------------------------------------------------------- /tests/integration/cli.edge-cases.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/integration/cli.edge-cases.test.js -------------------------------------------------------------------------------- /tests/integration/cli.from-collected.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/integration/cli.from-collected.test.js -------------------------------------------------------------------------------- /tests/integration/cli.from-setups.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/integration/cli.from-setups.test.js -------------------------------------------------------------------------------- /tests/integration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/integration/index.js -------------------------------------------------------------------------------- /tests/integration/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/integration/setup.js -------------------------------------------------------------------------------- /tests/unit/builders.TreeBuilder.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/unit/builders.TreeBuilder.spec.js -------------------------------------------------------------------------------- /tests/unit/versionCompare.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tests/unit/versionCompare.spec.js -------------------------------------------------------------------------------- /tools/code-style/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tools/code-style/.gitignore -------------------------------------------------------------------------------- /tools/code-style/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tools/code-style/.npmrc -------------------------------------------------------------------------------- /tools/code-style/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tools/code-style/eslint.config.mjs -------------------------------------------------------------------------------- /tools/code-style/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tools/code-style/package.json -------------------------------------------------------------------------------- /tools/test-dependencies/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tools/test-dependencies/.gitignore -------------------------------------------------------------------------------- /tools/test-dependencies/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tools/test-dependencies/.npmrc -------------------------------------------------------------------------------- /tools/test-dependencies/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tools/test-dependencies/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-node-npm/HEAD/tsconfig.json --------------------------------------------------------------------------------