diff --git a/Compliance.md b/Compliance.md new file mode 100644 index 0000000..9246db6 --- /dev/null +++ b/Compliance.md @@ -0,0 +1,33 @@ +# Compliance Reports + +sbomqs now helps generating compliance reports for your sboms. We support industry standard requirements +like NTIA minimum elements, BSI CRA TR-03183 v1.1 and OWASP SCVS. + +The goal of compliance reports is to verify if the sbom file adheres to these standard, before they are distributed. + +We have explained below how sbomqs approaches compliance reports for BSI CRA TR-03183 v1.1. We are not going to explain +the spec here, but rather go into our intepretation of it. + + +The [BSI CRA TR-03183 v1.1](https://www.bsi.bund.de/SharedDocs/Downloads/EN/BSI/Publications/TechGuidelines/TR03183/BSI-TR-03183-2.pdf?__blob=publicationFile&v=5) which is in draft currently specifies that the compilation of an SBOM is mandatory. Below is how we have derived all the values. + +| TR-03183 | TR-03183 field | CycloneDx | SPDX(2.3) | Notes | +| :--- | :--- | :--- | :--- | :--- | +|4. SBOM formats| `specification` | BomFormat | SPDXversion | CycloneDX and SPDX only | +|| `specification version` | SpecVersion | SPDXversion | CycloneDX 1.4 and above, SPDX 2.3 and above | +|5.1 Level of Detail| `Build SBOM` | metadata->lifecycles (1.5 and above) | no-deterministic-field | | +|| `Depth` | dependencies, compositions | relationships | A complex topic, mostly resolved via attestations via compositions, but spdx lacks that field now| +|5.2.1 Required SBOM fields| `creator` | metadata->authors, metadata->supplier | creator | We are primarily looking for email or url from these fields, if the name exists but email/url missing its deemed non-compliant| +| | | metadata->manufacturer | | | +|| `timestamp`| metadata->timestamp| created | | +|5.2.2 Required Component fields| `creator` | component->supplier | packageSupplier, packageOriginator | Looking for email or url, for spdx, we check supplier then originatior(manufacturer)| +|| `name` | component->name| package->name| | +|| `version` | component->version| package->version| | +|| `dependencies` | dependencies, compositions| relationships| cdx we look for attestations via compositions, spdx nothing exists| +|| `license`| component->license| packageConcluded, packageDeclated| we lookup sdpx,spdx-exceptions,aboutcode, and licenseRef-| +|| `hash` | component->hashes | package->checksums | we only look for sha-256| +|5.3.1 Additional Component fields | `SBOM-URI`| serialNumber, version | namespace | for cdx bom-link is considered a URN | +| | `source code uri`| component->externalReferences->type (vcs) | no-deterministic-field | | +| | `URI of the executable form`| component->externalReferences->type (distribution/distribution-intake) | PackageDownloadLocation | | +| | `hash of source code`| no-deterministic-field | package->PackageVerificationCode | | +| | `other uniq identifiers`| component->cpe, component->purl| package->externalReference->security (cpe/purl) | | \ No newline at end of file diff --git a/README.md b/README.md index 6db5505..a13f2ee 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,11 @@ other installation [options](#installation). sbomqs score ``` +#### Compliance Report: CRA TR-03183 for an sbom +```sh +sbomqs compliance -c samples/photon.spdx.json +``` + #### Quality Score with a shareable link at [sbombenchmark.dev](https://sbombenchmark.dev/). ```sh sbomqs share @@ -232,6 +237,50 @@ json format } ``` +# Compliance Reports +sbomqs can now produce compliance reports for industry standard requirements. Currently we support [BSI CRA TR-03183 v1.1](https://www.bsi.bund.de/SharedDocs/Downloads/EN/BSI/Publications/TechGuidelines/TR03183/BSI-TR-03183-2.pdf?__blob=publicationFile&v=5). More details about the CRA +requirements are avaliable [here](./Compliance.md). + +## Reports +- [BSI CRA TR-03183 v1.1](https://www.bsi.bund.de/SharedDocs/Downloads/EN/BSI/Publications/TechGuidelines/TR03183/BSI-TR-03183-2.pdf?__blob=publicationFile&v=5) +- [NTIA minimum element](https://www.ntia.doc.gov/files/ntia/publications/sbom_minimum_elements_report.pdf) - Coming soon. +- [OWASP SCVS](https://scvs.owasp.org/bom-maturity-model/) - Coming soon. + +Example of a BSI CRA report +``` +{ + "report_name": "Cyber Resilience Requirements for Manufacturers and Products Report", + "subtitle": "Part 2: Software Bill of Materials (SBOM)", + "revision": "TR-03183-2 (1.1)", + "run": { + "id": "375c288b-0928-4066-9e3a-b8655ac29f91", + "generated_at": "2024-04-18T03:22:56Z", + "file_name": "samples/photon.spdx.json" + }, + "tool": { + "name": "sbomqs", + "version": "v0.0.30-23-g344a584-dirty", + "vendor": "Interlynk (https://interlynk.io)" + }, + "summary": { + "total_score": 4.20, + "max_score": 10, + "required_elements_score": 5.91, + "optional_elements_score": 2.50 + }, +"sections": [ + { + "section_title": "SBOM formats", + "section_id": "4", + "section_data_field": "specification", + "required": true, + "element_id": "sbom", + "element_result": "spdx", + "score": 10 + }, +... +``` + # SBOM Samples - A sample set of SBOM is present in the [samples](https://github.com/interlynk-io/sbomqs/tree/main/samples) directory above diff --git a/cmd/compliance.go b/cmd/compliance.go new file mode 100644 index 0000000..ef15639 --- /dev/null +++ b/cmd/compliance.go @@ -0,0 +1,88 @@ +// Copyright 2024 Interlynk.io +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +package cmd + +import ( + "context" + "fmt" + + "github.com/interlynk-io/sbomqs/pkg/engine" + "github.com/interlynk-io/sbomqs/pkg/logger" + "github.com/spf13/cobra" +) + +var complianceCmd = &cobra.Command{ + Use: "compliance ", + Short: "compliance command checks the sbom for compliance with sbom standards", + Long: `Check if you sbom complies with various sbom standards like NTIA minimum elements, CRA TR-03183. + Generate a compliance report for the sbom file. + `, + Args: func(cmd *cobra.Command, args []string) error { + if err := cobra.ExactArgs(1)(cmd, args); err != nil { + return fmt.Errorf("compliance requires a single argument, the path to the sbom file") + } + + return nil + }, + RunE: func(cmd *cobra.Command, args []string) error { + debug, _ := cmd.Flags().GetBool("debug") + if debug { + logger.InitDebugLogger() + } else { + logger.InitProdLogger() + } + + ctx := logger.WithLogger(context.Background()) + + engParams := setupEngineParams(cmd, args) + return engine.ComplianceRun(ctx, engParams) + }, +} + +func setupEngineParams(cmd *cobra.Command, args []string) *engine.Params { + engParams := &engine.Params{} + + // engParams.Basic, _ = cmd.Flags().GetBool("basic") + // engParams.Detailed, _ = cmd.Flags().GetBool("detailed") + engParams.Json, _ = cmd.Flags().GetBool("json") + //engParams.Pdf, _ = cmd.Flags().GetBool("pdf") + + // engParams.Ntia, _ = cmd.Flags().GetBool("ntia") + engParams.Cra, _ = cmd.Flags().GetBool("cra") + + engParams.Debug, _ = cmd.Flags().GetBool("debug") + + engParams.Path = append(engParams.Path, args[0]) + + return engParams +} + +func init() { + rootCmd.AddCommand(complianceCmd) + + //Debug control + complianceCmd.Flags().BoolP("debug", "D", false, "enable debug logging") + + //Output control + complianceCmd.Flags().BoolP("json", "j", false, "output in json format") + // complianceCmd.Flags().BoolP("basic", "b", false, "output in basic format") + // complianceCmd.Flags().BoolP("detailed", "d", false, "output in detailed format") + //complianceCmd.Flags().BoolP("pdf", "p", false, "output in pdf format") + // complianceCmd.MarkFlagsMutuallyExclusive("json", "basic", "detailed") + + //Standards control + // complianceCmd.Flags().BoolP("ntia", "n", false, "check for NTIA minimum elements compliance") + complianceCmd.Flags().BoolP("cra", "c", false, "CRA TR-03183 v1.1 compliance") + // complianceCmd.MarkFlagsMutuallyExclusive("ntia", "cra") +} diff --git a/cra_report.json b/cra_report.json new file mode 100644 index 0000000..61554ea --- /dev/null +++ b/cra_report.json @@ -0,0 +1,25205 @@ +{ + "report_name": "Cyber Resilience Requirements for Manufacturers and Products Report", + "subtitle": "Part 2: Software Bill of Materials (SBOM)", + "revision": "TR-03183-2 (1.1)", + "run": { + "id": "7405502f-8c6f-43ae-a381-afd9be8ce10d", + "generated_at": "2024-04-18T20:21:35Z", + "file_name": "../lynk-api/scripts/samples/biotronix/implantatron.cdx.json" + }, + "tool": { + "name": "sbomqs", + "version": "v0.0.30-26-g8e4f8f5-dirty", + "vendor": "Interlynk (https://interlynk.io)" + }, + "summary": { + "total_score": 3.9431051530223025, + "max_score": 10, + "required_elements_score": 4.185493460166469, + "optional_elements_score": 3.7007168458781363 + }, + "sections": [ + { + "section_title": "SBOM formats", + "section_id": "4", + "section_data_field": "specification", + "required": true, + "element_id": "sbom", + "element_result": "cyclonedx", + "score": 10 + }, + { + "section_title": "SBOM formats", + "section_id": "4", + "section_data_field": "specification version", + "required": true, + "element_id": "sbom", + "element_result": "1.4", + "score": 10 + }, + { + "section_title": "Level of Detail", + "section_id": "5.1", + "section_data_field": "build process", + "required": true, + "element_id": "sbom", + "element_result": "", + "score": 0 + }, + { + "section_title": "Level of Detail", + "section_id": "5.1", + "section_data_field": "depth", + "required": true, + "element_id": "sbom", + "element_result": "no-primary-relationships", + "score": 0 + }, + { + "section_title": "Required fields sboms ", + "section_id": "5.2.1", + "section_data_field": "creator of sbom", + "required": true, + "element_id": "sbom", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields sboms", + "section_id": "5.2.1", + "section_data_field": "timestamp", + "required": true, + "element_id": "sbom", + "element_result": "2023-08-03T20:37:43Z", + "score": 10 + }, + { + "section_title": "Additional fields sboms", + "section_id": "5.3.1", + "section_data_field": "SBOM-URI", + "required": false, + "element_id": "sbom", + "element_result": "urn:cdx:1.4:urn:uuid:0dc5446f-cdf9-46a0-aa7f-c6a70b6fef80", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "components", + "required": true, + "element_id": "sbom", + "element_result": "present", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "5bd218f9-f40a-4383-9b60-f864278a7e16", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "5bd218f9-f40a-4383-9b60-f864278a7e16", + "element_result": "runtime.win.System.Console", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "5bd218f9-f40a-4383-9b60-f864278a7e16", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "5bd218f9-f40a-4383-9b60-f864278a7e16", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "5bd218f9-f40a-4383-9b60-f864278a7e16", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "5bd218f9-f40a-4383-9b60-f864278a7e16", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "5bd218f9-f40a-4383-9b60-f864278a7e16", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "5bd218f9-f40a-4383-9b60-f864278a7e16", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "5bd218f9-f40a-4383-9b60-f864278a7e16", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "5bd218f9-f40a-4383-9b60-f864278a7e16", + "element_result": "pkg:nuget/runtime.win.System.Console@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "461d9f75-86ba-49c6-b4ec-c0dd236cff64", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "461d9f75-86ba-49c6-b4ec-c0dd236cff64", + "element_result": "System.Numerics.Vectors", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "461d9f75-86ba-49c6-b4ec-c0dd236cff64", + "element_result": "4.5.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "461d9f75-86ba-49c6-b4ec-c0dd236cff64", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "461d9f75-86ba-49c6-b4ec-c0dd236cff64", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "461d9f75-86ba-49c6-b4ec-c0dd236cff64", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "461d9f75-86ba-49c6-b4ec-c0dd236cff64", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "461d9f75-86ba-49c6-b4ec-c0dd236cff64", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "461d9f75-86ba-49c6-b4ec-c0dd236cff64", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "461d9f75-86ba-49c6-b4ec-c0dd236cff64", + "element_result": "pkg:nuget/System.Numerics.Vectors@4.5.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "98a7341e-ad7f-4a09-8d3e-aca05e939dad", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "98a7341e-ad7f-4a09-8d3e-aca05e939dad", + "element_result": "System.Security.Cryptography.Csp", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "98a7341e-ad7f-4a09-8d3e-aca05e939dad", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "98a7341e-ad7f-4a09-8d3e-aca05e939dad", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "98a7341e-ad7f-4a09-8d3e-aca05e939dad", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "98a7341e-ad7f-4a09-8d3e-aca05e939dad", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "98a7341e-ad7f-4a09-8d3e-aca05e939dad", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "98a7341e-ad7f-4a09-8d3e-aca05e939dad", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "98a7341e-ad7f-4a09-8d3e-aca05e939dad", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "98a7341e-ad7f-4a09-8d3e-aca05e939dad", + "element_result": "pkg:nuget/System.Security.Cryptography.Csp@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "dc482dc9-fa93-4e29-9f43-a4e11cbab82e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "dc482dc9-fa93-4e29-9f43-a4e11cbab82e", + "element_result": "Microsoft.Build", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "dc482dc9-fa93-4e29-9f43-a4e11cbab82e", + "element_result": "16.9.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "dc482dc9-fa93-4e29-9f43-a4e11cbab82e", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "dc482dc9-fa93-4e29-9f43-a4e11cbab82e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "dc482dc9-fa93-4e29-9f43-a4e11cbab82e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "dc482dc9-fa93-4e29-9f43-a4e11cbab82e", + "element_result": "https://github.com/microsoft/msbuild", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "dc482dc9-fa93-4e29-9f43-a4e11cbab82e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "dc482dc9-fa93-4e29-9f43-a4e11cbab82e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "dc482dc9-fa93-4e29-9f43-a4e11cbab82e", + "element_result": "pkg:nuget/Microsoft.Build@16.9.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "dc963599-2563-49ef-8007-69f5d8a05e86", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "dc963599-2563-49ef-8007-69f5d8a05e86", + "element_result": "Microsoft.IdentityModel.Validators", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "dc963599-2563-49ef-8007-69f5d8a05e86", + "element_result": "6.25.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "dc963599-2563-49ef-8007-69f5d8a05e86", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "dc963599-2563-49ef-8007-69f5d8a05e86", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "dc963599-2563-49ef-8007-69f5d8a05e86", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "dc963599-2563-49ef-8007-69f5d8a05e86", + "element_result": "https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "dc963599-2563-49ef-8007-69f5d8a05e86", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "dc963599-2563-49ef-8007-69f5d8a05e86", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "dc963599-2563-49ef-8007-69f5d8a05e86", + "element_result": "pkg:nuget/Microsoft.IdentityModel.Validators@6.25.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "ba2ea0a6-94ee-4d2d-9a8e-5fc608195482", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "ba2ea0a6-94ee-4d2d-9a8e-5fc608195482", + "element_result": "Microsoft.Extensions.DependencyInjection", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "ba2ea0a6-94ee-4d2d-9a8e-5fc608195482", + "element_result": "6.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "ba2ea0a6-94ee-4d2d-9a8e-5fc608195482", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "ba2ea0a6-94ee-4d2d-9a8e-5fc608195482", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "ba2ea0a6-94ee-4d2d-9a8e-5fc608195482", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "ba2ea0a6-94ee-4d2d-9a8e-5fc608195482", + "element_result": "https://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "ba2ea0a6-94ee-4d2d-9a8e-5fc608195482", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "ba2ea0a6-94ee-4d2d-9a8e-5fc608195482", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "ba2ea0a6-94ee-4d2d-9a8e-5fc608195482", + "element_result": "pkg:nuget/Microsoft.Extensions.DependencyInjection@6.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "37fa4ecf-90ce-46a7-bb00-a9e97651fd1e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "37fa4ecf-90ce-46a7-bb00-a9e97651fd1e", + "element_result": "Microsoft.Identity.Client.Extensions.Msal", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "37fa4ecf-90ce-46a7-bb00-a9e97651fd1e", + "element_result": "2.16.5", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "37fa4ecf-90ce-46a7-bb00-a9e97651fd1e", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "37fa4ecf-90ce-46a7-bb00-a9e97651fd1e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "37fa4ecf-90ce-46a7-bb00-a9e97651fd1e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "37fa4ecf-90ce-46a7-bb00-a9e97651fd1e", + "element_result": "https://github.com/AzureAD/microsoft-authentication-extensions-for-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "37fa4ecf-90ce-46a7-bb00-a9e97651fd1e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "37fa4ecf-90ce-46a7-bb00-a9e97651fd1e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "37fa4ecf-90ce-46a7-bb00-a9e97651fd1e", + "element_result": "pkg:nuget/Microsoft.Identity.Client.Extensions.Msal@2.16.5", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "549c9898-e125-46f4-928b-fe838b387935", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "549c9898-e125-46f4-928b-fe838b387935", + "element_result": "runtime.any.System.Reflection", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "549c9898-e125-46f4-928b-fe838b387935", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "549c9898-e125-46f4-928b-fe838b387935", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "549c9898-e125-46f4-928b-fe838b387935", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "549c9898-e125-46f4-928b-fe838b387935", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "549c9898-e125-46f4-928b-fe838b387935", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "549c9898-e125-46f4-928b-fe838b387935", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "549c9898-e125-46f4-928b-fe838b387935", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "549c9898-e125-46f4-928b-fe838b387935", + "element_result": "pkg:nuget/runtime.any.System.Reflection@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "9b25b1ca-7eb9-46d3-bd25-e64dc68d57d8", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "9b25b1ca-7eb9-46d3-bd25-e64dc68d57d8", + "element_result": "System.Linq.Expressions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "9b25b1ca-7eb9-46d3-bd25-e64dc68d57d8", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "9b25b1ca-7eb9-46d3-bd25-e64dc68d57d8", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "9b25b1ca-7eb9-46d3-bd25-e64dc68d57d8", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "9b25b1ca-7eb9-46d3-bd25-e64dc68d57d8", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "9b25b1ca-7eb9-46d3-bd25-e64dc68d57d8", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "9b25b1ca-7eb9-46d3-bd25-e64dc68d57d8", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "9b25b1ca-7eb9-46d3-bd25-e64dc68d57d8", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "9b25b1ca-7eb9-46d3-bd25-e64dc68d57d8", + "element_result": "pkg:nuget/System.Linq.Expressions@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "3835d139-568a-4c5f-a1cf-bbad4b56a79a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "3835d139-568a-4c5f-a1cf-bbad4b56a79a", + "element_result": "System.Reflection", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "3835d139-568a-4c5f-a1cf-bbad4b56a79a", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "3835d139-568a-4c5f-a1cf-bbad4b56a79a", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "3835d139-568a-4c5f-a1cf-bbad4b56a79a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "3835d139-568a-4c5f-a1cf-bbad4b56a79a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "3835d139-568a-4c5f-a1cf-bbad4b56a79a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "3835d139-568a-4c5f-a1cf-bbad4b56a79a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "3835d139-568a-4c5f-a1cf-bbad4b56a79a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "3835d139-568a-4c5f-a1cf-bbad4b56a79a", + "element_result": "pkg:nuget/System.Reflection@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "9af5c9db-9040-461e-be92-cbb050416bcb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "9af5c9db-9040-461e-be92-cbb050416bcb", + "element_result": "CommunityToolkit.WinUI.UI.Controls.Layout", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "9af5c9db-9040-461e-be92-cbb050416bcb", + "element_result": "7.1.2", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "9af5c9db-9040-461e-be92-cbb050416bcb", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "9af5c9db-9040-461e-be92-cbb050416bcb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "9af5c9db-9040-461e-be92-cbb050416bcb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "9af5c9db-9040-461e-be92-cbb050416bcb", + "element_result": "https://github.com/CommunityToolkit/WindowsCommunityToolkit", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "9af5c9db-9040-461e-be92-cbb050416bcb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "9af5c9db-9040-461e-be92-cbb050416bcb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "9af5c9db-9040-461e-be92-cbb050416bcb", + "element_result": "pkg:nuget/CommunityToolkit.WinUI.UI.Controls.Layout@7.1.2", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "29a4a588-9616-4800-8f54-28ed82dd268d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "29a4a588-9616-4800-8f54-28ed82dd268d", + "element_result": "Microsoft.Graphics.Win2D", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "29a4a588-9616-4800-8f54-28ed82dd268d", + "element_result": "1.0.0.30", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "29a4a588-9616-4800-8f54-28ed82dd268d", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "29a4a588-9616-4800-8f54-28ed82dd268d", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "29a4a588-9616-4800-8f54-28ed82dd268d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "29a4a588-9616-4800-8f54-28ed82dd268d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "29a4a588-9616-4800-8f54-28ed82dd268d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "29a4a588-9616-4800-8f54-28ed82dd268d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "29a4a588-9616-4800-8f54-28ed82dd268d", + "element_result": "pkg:nuget/Microsoft.Graphics.Win2D@1.0.0.30", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "4fc4ec90-647c-43b0-ad2c-6009fa6c8841", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "4fc4ec90-647c-43b0-ad2c-6009fa6c8841", + "element_result": "Microsoft.Identity.Client", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "4fc4ec90-647c-43b0-ad2c-6009fa6c8841", + "element_result": "4.43.2", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "4fc4ec90-647c-43b0-ad2c-6009fa6c8841", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "4fc4ec90-647c-43b0-ad2c-6009fa6c8841", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "4fc4ec90-647c-43b0-ad2c-6009fa6c8841", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "4fc4ec90-647c-43b0-ad2c-6009fa6c8841", + "element_result": "https://github.com/AzureAD/microsoft-authentication-library-for-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "4fc4ec90-647c-43b0-ad2c-6009fa6c8841", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "4fc4ec90-647c-43b0-ad2c-6009fa6c8841", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "4fc4ec90-647c-43b0-ad2c-6009fa6c8841", + "element_result": "pkg:nuget/Microsoft.Identity.Client@4.43.2", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "c59f72d0-60fa-4e44-ac7e-90d577c8848a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "c59f72d0-60fa-4e44-ac7e-90d577c8848a", + "element_result": "System.Console", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "c59f72d0-60fa-4e44-ac7e-90d577c8848a", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "c59f72d0-60fa-4e44-ac7e-90d577c8848a", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "c59f72d0-60fa-4e44-ac7e-90d577c8848a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "c59f72d0-60fa-4e44-ac7e-90d577c8848a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "c59f72d0-60fa-4e44-ac7e-90d577c8848a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "c59f72d0-60fa-4e44-ac7e-90d577c8848a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "c59f72d0-60fa-4e44-ac7e-90d577c8848a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "c59f72d0-60fa-4e44-ac7e-90d577c8848a", + "element_result": "pkg:nuget/System.Console@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "9fd66651-35fb-4f75-9f40-6e929a3ff01f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "9fd66651-35fb-4f75-9f40-6e929a3ff01f", + "element_result": "System.Security.AccessControl", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "9fd66651-35fb-4f75-9f40-6e929a3ff01f", + "element_result": "5.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "9fd66651-35fb-4f75-9f40-6e929a3ff01f", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "9fd66651-35fb-4f75-9f40-6e929a3ff01f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "9fd66651-35fb-4f75-9f40-6e929a3ff01f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "9fd66651-35fb-4f75-9f40-6e929a3ff01f", + "element_result": "git://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "9fd66651-35fb-4f75-9f40-6e929a3ff01f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "9fd66651-35fb-4f75-9f40-6e929a3ff01f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "9fd66651-35fb-4f75-9f40-6e929a3ff01f", + "element_result": "pkg:nuget/System.Security.AccessControl@5.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "50263ee7-6651-437a-ae00-4334b5d168f3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "50263ee7-6651-437a-ae00-4334b5d168f3", + "element_result": "Microsoft.CodeAnalysis.AnalyzerUtilities", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "50263ee7-6651-437a-ae00-4334b5d168f3", + "element_result": "3.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "50263ee7-6651-437a-ae00-4334b5d168f3", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "50263ee7-6651-437a-ae00-4334b5d168f3", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "50263ee7-6651-437a-ae00-4334b5d168f3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "50263ee7-6651-437a-ae00-4334b5d168f3", + "element_result": "https://github.com/dotnet/roslyn-analyzers", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "50263ee7-6651-437a-ae00-4334b5d168f3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "50263ee7-6651-437a-ae00-4334b5d168f3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "50263ee7-6651-437a-ae00-4334b5d168f3", + "element_result": "pkg:nuget/Microsoft.CodeAnalysis.AnalyzerUtilities@3.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "a3b7d2d6-d1d9-4153-9664-970840d9b90b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "a3b7d2d6-d1d9-4153-9664-970840d9b90b", + "element_result": "runtime.win.Microsoft.Win32.Primitives", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "a3b7d2d6-d1d9-4153-9664-970840d9b90b", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "a3b7d2d6-d1d9-4153-9664-970840d9b90b", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "a3b7d2d6-d1d9-4153-9664-970840d9b90b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "a3b7d2d6-d1d9-4153-9664-970840d9b90b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "a3b7d2d6-d1d9-4153-9664-970840d9b90b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "a3b7d2d6-d1d9-4153-9664-970840d9b90b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "a3b7d2d6-d1d9-4153-9664-970840d9b90b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "a3b7d2d6-d1d9-4153-9664-970840d9b90b", + "element_result": "pkg:nuget/runtime.win.Microsoft.Win32.Primitives@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "a49b9af9-1077-4f58-b5d1-64ec815abf41", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "a49b9af9-1077-4f58-b5d1-64ec815abf41", + "element_result": "System.Formats.Asn1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "a49b9af9-1077-4f58-b5d1-64ec815abf41", + "element_result": "6.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "a49b9af9-1077-4f58-b5d1-64ec815abf41", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "a49b9af9-1077-4f58-b5d1-64ec815abf41", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "a49b9af9-1077-4f58-b5d1-64ec815abf41", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "a49b9af9-1077-4f58-b5d1-64ec815abf41", + "element_result": "https://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "a49b9af9-1077-4f58-b5d1-64ec815abf41", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "a49b9af9-1077-4f58-b5d1-64ec815abf41", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "a49b9af9-1077-4f58-b5d1-64ec815abf41", + "element_result": "pkg:nuget/System.Formats.Asn1@6.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "d6c691eb-ccb5-470a-b6cd-d86ba77ad902", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "d6c691eb-ccb5-470a-b6cd-d86ba77ad902", + "element_result": "System.IO.FileSystem.AccessControl", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "d6c691eb-ccb5-470a-b6cd-d86ba77ad902", + "element_result": "5.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "d6c691eb-ccb5-470a-b6cd-d86ba77ad902", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "d6c691eb-ccb5-470a-b6cd-d86ba77ad902", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "d6c691eb-ccb5-470a-b6cd-d86ba77ad902", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "d6c691eb-ccb5-470a-b6cd-d86ba77ad902", + "element_result": "git://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "d6c691eb-ccb5-470a-b6cd-d86ba77ad902", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "d6c691eb-ccb5-470a-b6cd-d86ba77ad902", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "d6c691eb-ccb5-470a-b6cd-d86ba77ad902", + "element_result": "pkg:nuget/System.IO.FileSystem.AccessControl@5.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "28b76e0c-8e91-4fe1-aa4d-e4890fb6e38e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "28b76e0c-8e91-4fe1-aa4d-e4890fb6e38e", + "element_result": "System.Runtime.Handles", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "28b76e0c-8e91-4fe1-aa4d-e4890fb6e38e", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "28b76e0c-8e91-4fe1-aa4d-e4890fb6e38e", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "28b76e0c-8e91-4fe1-aa4d-e4890fb6e38e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "28b76e0c-8e91-4fe1-aa4d-e4890fb6e38e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "28b76e0c-8e91-4fe1-aa4d-e4890fb6e38e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "28b76e0c-8e91-4fe1-aa4d-e4890fb6e38e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "28b76e0c-8e91-4fe1-aa4d-e4890fb6e38e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "28b76e0c-8e91-4fe1-aa4d-e4890fb6e38e", + "element_result": "pkg:nuget/System.Runtime.Handles@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "20a65df7-dae1-4e37-859f-9c1cdb6a433d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "20a65df7-dae1-4e37-859f-9c1cdb6a433d", + "element_result": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "20a65df7-dae1-4e37-859f-9c1cdb6a433d", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "20a65df7-dae1-4e37-859f-9c1cdb6a433d", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "20a65df7-dae1-4e37-859f-9c1cdb6a433d", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "20a65df7-dae1-4e37-859f-9c1cdb6a433d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "20a65df7-dae1-4e37-859f-9c1cdb6a433d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "20a65df7-dae1-4e37-859f-9c1cdb6a433d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "20a65df7-dae1-4e37-859f-9c1cdb6a433d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "20a65df7-dae1-4e37-859f-9c1cdb6a433d", + "element_result": "pkg:nuget/runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "8df06a11-618a-47db-af76-3662fea32138", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "8df06a11-618a-47db-af76-3662fea32138", + "element_result": "Newtonsoft.Json", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "8df06a11-618a-47db-af76-3662fea32138", + "element_result": "13.0.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "8df06a11-618a-47db-af76-3662fea32138", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "8df06a11-618a-47db-af76-3662fea32138", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "8df06a11-618a-47db-af76-3662fea32138", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "8df06a11-618a-47db-af76-3662fea32138", + "element_result": "https://github.com/JamesNK/Newtonsoft.Json", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "8df06a11-618a-47db-af76-3662fea32138", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "8df06a11-618a-47db-af76-3662fea32138", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "8df06a11-618a-47db-af76-3662fea32138", + "element_result": "pkg:nuget/Newtonsoft.Json@13.0.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "3f9c4b4f-1be8-41f0-82b1-45a524aec9be", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "3f9c4b4f-1be8-41f0-82b1-45a524aec9be", + "element_result": "runtime.any.System.Runtime.InteropServices", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "3f9c4b4f-1be8-41f0-82b1-45a524aec9be", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "3f9c4b4f-1be8-41f0-82b1-45a524aec9be", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "3f9c4b4f-1be8-41f0-82b1-45a524aec9be", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "3f9c4b4f-1be8-41f0-82b1-45a524aec9be", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "3f9c4b4f-1be8-41f0-82b1-45a524aec9be", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "3f9c4b4f-1be8-41f0-82b1-45a524aec9be", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "3f9c4b4f-1be8-41f0-82b1-45a524aec9be", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "3f9c4b4f-1be8-41f0-82b1-45a524aec9be", + "element_result": "pkg:nuget/runtime.any.System.Runtime.InteropServices@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "a2dd8382-fee0-4f1d-81f6-fdb763cb7f43", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "a2dd8382-fee0-4f1d-81f6-fdb763cb7f43", + "element_result": "System.Collections.Immutable", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "a2dd8382-fee0-4f1d-81f6-fdb763cb7f43", + "element_result": "6.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "a2dd8382-fee0-4f1d-81f6-fdb763cb7f43", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "a2dd8382-fee0-4f1d-81f6-fdb763cb7f43", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "a2dd8382-fee0-4f1d-81f6-fdb763cb7f43", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "a2dd8382-fee0-4f1d-81f6-fdb763cb7f43", + "element_result": "https://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "a2dd8382-fee0-4f1d-81f6-fdb763cb7f43", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "a2dd8382-fee0-4f1d-81f6-fdb763cb7f43", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "a2dd8382-fee0-4f1d-81f6-fdb763cb7f43", + "element_result": "pkg:nuget/System.Collections.Immutable@6.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "ea934f46-2235-49a2-9bd8-3f315514c859", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "ea934f46-2235-49a2-9bd8-3f315514c859", + "element_result": "System.Diagnostics.Tools", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "ea934f46-2235-49a2-9bd8-3f315514c859", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "ea934f46-2235-49a2-9bd8-3f315514c859", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "ea934f46-2235-49a2-9bd8-3f315514c859", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "ea934f46-2235-49a2-9bd8-3f315514c859", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "ea934f46-2235-49a2-9bd8-3f315514c859", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "ea934f46-2235-49a2-9bd8-3f315514c859", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "ea934f46-2235-49a2-9bd8-3f315514c859", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "ea934f46-2235-49a2-9bd8-3f315514c859", + "element_result": "pkg:nuget/System.Diagnostics.Tools@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "c1444081-74a4-4b80-8fe9-ba681658cf3d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "c1444081-74a4-4b80-8fe9-ba681658cf3d", + "element_result": "System.Net.Primitives", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "c1444081-74a4-4b80-8fe9-ba681658cf3d", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "c1444081-74a4-4b80-8fe9-ba681658cf3d", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "c1444081-74a4-4b80-8fe9-ba681658cf3d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "c1444081-74a4-4b80-8fe9-ba681658cf3d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "c1444081-74a4-4b80-8fe9-ba681658cf3d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "c1444081-74a4-4b80-8fe9-ba681658cf3d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "c1444081-74a4-4b80-8fe9-ba681658cf3d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "c1444081-74a4-4b80-8fe9-ba681658cf3d", + "element_result": "pkg:nuget/System.Net.Primitives@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "4e8e9a05-4af8-4721-b11f-09399869f92a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "4e8e9a05-4af8-4721-b11f-09399869f92a", + "element_result": "System.Reflection.Emit", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "4e8e9a05-4af8-4721-b11f-09399869f92a", + "element_result": "4.6.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "4e8e9a05-4af8-4721-b11f-09399869f92a", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "4e8e9a05-4af8-4721-b11f-09399869f92a", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "4e8e9a05-4af8-4721-b11f-09399869f92a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "4e8e9a05-4af8-4721-b11f-09399869f92a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "4e8e9a05-4af8-4721-b11f-09399869f92a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "4e8e9a05-4af8-4721-b11f-09399869f92a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "4e8e9a05-4af8-4721-b11f-09399869f92a", + "element_result": "pkg:nuget/System.Reflection.Emit@4.6.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "ad5f5a21-d128-4cc6-8993-7e29f5a366b5", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "ad5f5a21-d128-4cc6-8993-7e29f5a366b5", + "element_result": "System.Threading.Tasks.Dataflow", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "ad5f5a21-d128-4cc6-8993-7e29f5a366b5", + "element_result": "4.9.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "ad5f5a21-d128-4cc6-8993-7e29f5a366b5", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "ad5f5a21-d128-4cc6-8993-7e29f5a366b5", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "ad5f5a21-d128-4cc6-8993-7e29f5a366b5", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "ad5f5a21-d128-4cc6-8993-7e29f5a366b5", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "ad5f5a21-d128-4cc6-8993-7e29f5a366b5", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "ad5f5a21-d128-4cc6-8993-7e29f5a366b5", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "ad5f5a21-d128-4cc6-8993-7e29f5a366b5", + "element_result": "pkg:nuget/System.Threading.Tasks.Dataflow@4.9.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "92cc3702-fda7-49c1-a573-e250422f0dc1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "92cc3702-fda7-49c1-a573-e250422f0dc1", + "element_result": "Microsoft.IdentityModel.Logging", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "92cc3702-fda7-49c1-a573-e250422f0dc1", + "element_result": "6.15.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "92cc3702-fda7-49c1-a573-e250422f0dc1", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "92cc3702-fda7-49c1-a573-e250422f0dc1", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "92cc3702-fda7-49c1-a573-e250422f0dc1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "92cc3702-fda7-49c1-a573-e250422f0dc1", + "element_result": "https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "92cc3702-fda7-49c1-a573-e250422f0dc1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "92cc3702-fda7-49c1-a573-e250422f0dc1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "92cc3702-fda7-49c1-a573-e250422f0dc1", + "element_result": "pkg:nuget/Microsoft.IdentityModel.Logging@6.15.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "80ecd8ee-cb9c-4ffb-b63d-92355588350d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "80ecd8ee-cb9c-4ffb-b63d-92355588350d", + "element_result": "NuGet.Common", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "80ecd8ee-cb9c-4ffb-b63d-92355588350d", + "element_result": "5.9.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "80ecd8ee-cb9c-4ffb-b63d-92355588350d", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "80ecd8ee-cb9c-4ffb-b63d-92355588350d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "80ecd8ee-cb9c-4ffb-b63d-92355588350d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "80ecd8ee-cb9c-4ffb-b63d-92355588350d", + "element_result": "https://github.com/NuGet/NuGet.Client", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "80ecd8ee-cb9c-4ffb-b63d-92355588350d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "80ecd8ee-cb9c-4ffb-b63d-92355588350d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "80ecd8ee-cb9c-4ffb-b63d-92355588350d", + "element_result": "pkg:nuget/NuGet.Common@5.9.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "0c84c620-a222-4a35-9027-b8424979f21d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "0c84c620-a222-4a35-9027-b8424979f21d", + "element_result": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "0c84c620-a222-4a35-9027-b8424979f21d", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "0c84c620-a222-4a35-9027-b8424979f21d", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "0c84c620-a222-4a35-9027-b8424979f21d", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "0c84c620-a222-4a35-9027-b8424979f21d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "0c84c620-a222-4a35-9027-b8424979f21d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "0c84c620-a222-4a35-9027-b8424979f21d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "0c84c620-a222-4a35-9027-b8424979f21d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "0c84c620-a222-4a35-9027-b8424979f21d", + "element_result": "pkg:nuget/runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "591012fa-e87b-4ec4-93d4-c1a34bbc9bd5", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "591012fa-e87b-4ec4-93d4-c1a34bbc9bd5", + "element_result": "runtime.win10-arm64.runtime.native.System.IO.Compression", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "591012fa-e87b-4ec4-93d4-c1a34bbc9bd5", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "591012fa-e87b-4ec4-93d4-c1a34bbc9bd5", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "591012fa-e87b-4ec4-93d4-c1a34bbc9bd5", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "591012fa-e87b-4ec4-93d4-c1a34bbc9bd5", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "591012fa-e87b-4ec4-93d4-c1a34bbc9bd5", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "591012fa-e87b-4ec4-93d4-c1a34bbc9bd5", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "591012fa-e87b-4ec4-93d4-c1a34bbc9bd5", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "591012fa-e87b-4ec4-93d4-c1a34bbc9bd5", + "element_result": "pkg:nuget/runtime.win10-arm64.runtime.native.System.IO.Compression@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "b42dbaaf-97f9-44ce-a21b-4e09be0da8d8", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "b42dbaaf-97f9-44ce-a21b-4e09be0da8d8", + "element_result": "runtime.win7-x64.runtime.native.System.IO.Compression", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "b42dbaaf-97f9-44ce-a21b-4e09be0da8d8", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "b42dbaaf-97f9-44ce-a21b-4e09be0da8d8", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "b42dbaaf-97f9-44ce-a21b-4e09be0da8d8", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "b42dbaaf-97f9-44ce-a21b-4e09be0da8d8", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "b42dbaaf-97f9-44ce-a21b-4e09be0da8d8", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "b42dbaaf-97f9-44ce-a21b-4e09be0da8d8", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "b42dbaaf-97f9-44ce-a21b-4e09be0da8d8", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "b42dbaaf-97f9-44ce-a21b-4e09be0da8d8", + "element_result": "pkg:nuget/runtime.win7-x64.runtime.native.System.IO.Compression@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "3de2678a-8d89-4dd7-b2e0-8826e9475fa2", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "3de2678a-8d89-4dd7-b2e0-8826e9475fa2", + "element_result": "SQLitePCLRaw.core", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "3de2678a-8d89-4dd7-b2e0-8826e9475fa2", + "element_result": "2.0.6", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "3de2678a-8d89-4dd7-b2e0-8826e9475fa2", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "3de2678a-8d89-4dd7-b2e0-8826e9475fa2", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "3de2678a-8d89-4dd7-b2e0-8826e9475fa2", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "3de2678a-8d89-4dd7-b2e0-8826e9475fa2", + "element_result": "https://github.com/ericsink/SQLitePCL.raw", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "3de2678a-8d89-4dd7-b2e0-8826e9475fa2", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "3de2678a-8d89-4dd7-b2e0-8826e9475fa2", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "3de2678a-8d89-4dd7-b2e0-8826e9475fa2", + "element_result": "pkg:nuget/SQLitePCLRaw.core@2.0.6", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "451e5e4d-0597-4557-9cd5-7003021c45c6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "451e5e4d-0597-4557-9cd5-7003021c45c6", + "element_result": "Microsoft.AspNetCore.Authentication.JwtBearer", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "451e5e4d-0597-4557-9cd5-7003021c45c6", + "element_result": "5.0.12", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "451e5e4d-0597-4557-9cd5-7003021c45c6", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "451e5e4d-0597-4557-9cd5-7003021c45c6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "451e5e4d-0597-4557-9cd5-7003021c45c6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "451e5e4d-0597-4557-9cd5-7003021c45c6", + "element_result": "https://github.com/dotnet/aspnetcore", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "451e5e4d-0597-4557-9cd5-7003021c45c6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "451e5e4d-0597-4557-9cd5-7003021c45c6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "451e5e4d-0597-4557-9cd5-7003021c45c6", + "element_result": "pkg:nuget/Microsoft.AspNetCore.Authentication.JwtBearer@5.0.12", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "ef91b4ec-e38a-412f-89fd-6048cadc91c3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "ef91b4ec-e38a-412f-89fd-6048cadc91c3", + "element_result": "Microsoft.Build.Utilities.Core", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "ef91b4ec-e38a-412f-89fd-6048cadc91c3", + "element_result": "16.9.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "ef91b4ec-e38a-412f-89fd-6048cadc91c3", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "ef91b4ec-e38a-412f-89fd-6048cadc91c3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "ef91b4ec-e38a-412f-89fd-6048cadc91c3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "ef91b4ec-e38a-412f-89fd-6048cadc91c3", + "element_result": "https://github.com/microsoft/msbuild", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "ef91b4ec-e38a-412f-89fd-6048cadc91c3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "ef91b4ec-e38a-412f-89fd-6048cadc91c3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "ef91b4ec-e38a-412f-89fd-6048cadc91c3", + "element_result": "pkg:nuget/Microsoft.Build.Utilities.Core@16.9.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "e21233a3-109a-47ee-bd94-f62d140c13ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "e21233a3-109a-47ee-bd94-f62d140c13ed", + "element_result": "Microsoft.Data.SqlClient.SNI.runtime", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "e21233a3-109a-47ee-bd94-f62d140c13ed", + "element_result": "2.1.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "e21233a3-109a-47ee-bd94-f62d140c13ed", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "e21233a3-109a-47ee-bd94-f62d140c13ed", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "e21233a3-109a-47ee-bd94-f62d140c13ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "e21233a3-109a-47ee-bd94-f62d140c13ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "e21233a3-109a-47ee-bd94-f62d140c13ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "e21233a3-109a-47ee-bd94-f62d140c13ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "e21233a3-109a-47ee-bd94-f62d140c13ed", + "element_result": "pkg:nuget/Microsoft.Data.SqlClient.SNI.runtime@2.1.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "ead0a6e7-b926-4c8d-9d8c-3939fd3dc51b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "ead0a6e7-b926-4c8d-9d8c-3939fd3dc51b", + "element_result": "System.Security.Cryptography.ProtectedData", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "ead0a6e7-b926-4c8d-9d8c-3939fd3dc51b", + "element_result": "4.5.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "ead0a6e7-b926-4c8d-9d8c-3939fd3dc51b", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "ead0a6e7-b926-4c8d-9d8c-3939fd3dc51b", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "ead0a6e7-b926-4c8d-9d8c-3939fd3dc51b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "ead0a6e7-b926-4c8d-9d8c-3939fd3dc51b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "ead0a6e7-b926-4c8d-9d8c-3939fd3dc51b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "ead0a6e7-b926-4c8d-9d8c-3939fd3dc51b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "ead0a6e7-b926-4c8d-9d8c-3939fd3dc51b", + "element_result": "pkg:nuget/System.Security.Cryptography.ProtectedData@4.5.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "70aaa49e-674b-4846-90b6-3a23d30cba77", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "70aaa49e-674b-4846-90b6-3a23d30cba77", + "element_result": "CommunityToolkit.WinUI", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "70aaa49e-674b-4846-90b6-3a23d30cba77", + "element_result": "7.1.2", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "70aaa49e-674b-4846-90b6-3a23d30cba77", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "70aaa49e-674b-4846-90b6-3a23d30cba77", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "70aaa49e-674b-4846-90b6-3a23d30cba77", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "70aaa49e-674b-4846-90b6-3a23d30cba77", + "element_result": "https://github.com/CommunityToolkit/WindowsCommunityToolkit", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "70aaa49e-674b-4846-90b6-3a23d30cba77", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "70aaa49e-674b-4846-90b6-3a23d30cba77", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "70aaa49e-674b-4846-90b6-3a23d30cba77", + "element_result": "pkg:nuget/CommunityToolkit.WinUI@7.1.2", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "15028d7e-1129-4d6f-854a-0352be77bd6a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "15028d7e-1129-4d6f-854a-0352be77bd6a", + "element_result": "System.Runtime.CompilerServices.Unsafe", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "15028d7e-1129-4d6f-854a-0352be77bd6a", + "element_result": "6.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "15028d7e-1129-4d6f-854a-0352be77bd6a", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "15028d7e-1129-4d6f-854a-0352be77bd6a", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "15028d7e-1129-4d6f-854a-0352be77bd6a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "15028d7e-1129-4d6f-854a-0352be77bd6a", + "element_result": "https://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "15028d7e-1129-4d6f-854a-0352be77bd6a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "15028d7e-1129-4d6f-854a-0352be77bd6a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "15028d7e-1129-4d6f-854a-0352be77bd6a", + "element_result": "pkg:nuget/System.Runtime.CompilerServices.Unsafe@6.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "0c63cfa3-7d75-45f2-b0e2-43b312f3a51a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "0c63cfa3-7d75-45f2-b0e2-43b312f3a51a", + "element_result": "Miradore Windows Client", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "0c63cfa3-7d75-45f2-b0e2-43b312f3a51a", + "element_result": "1.5.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "0c63cfa3-7d75-45f2-b0e2-43b312f3a51a", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "0c63cfa3-7d75-45f2-b0e2-43b312f3a51a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "0c63cfa3-7d75-45f2-b0e2-43b312f3a51a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "0c63cfa3-7d75-45f2-b0e2-43b312f3a51a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "0c63cfa3-7d75-45f2-b0e2-43b312f3a51a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "0c63cfa3-7d75-45f2-b0e2-43b312f3a51a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "0c63cfa3-7d75-45f2-b0e2-43b312f3a51a", + "element_result": "cpe:2.3:a:miradore:miradore_windows_client:1.5.0:*:*:*:*:*:*:*", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "63d4521c-4f5d-429f-a563-253c734d2e17", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "63d4521c-4f5d-429f-a563-253c734d2e17", + "element_result": "System.Composition.AttributedModel", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "63d4521c-4f5d-429f-a563-253c734d2e17", + "element_result": "1.0.31", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "63d4521c-4f5d-429f-a563-253c734d2e17", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "63d4521c-4f5d-429f-a563-253c734d2e17", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "63d4521c-4f5d-429f-a563-253c734d2e17", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "63d4521c-4f5d-429f-a563-253c734d2e17", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "63d4521c-4f5d-429f-a563-253c734d2e17", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "63d4521c-4f5d-429f-a563-253c734d2e17", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "63d4521c-4f5d-429f-a563-253c734d2e17", + "element_result": "pkg:nuget/System.Composition.AttributedModel@1.0.31", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "0625a97b-1e77-43c8-90fc-5f16a1daa050", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "0625a97b-1e77-43c8-90fc-5f16a1daa050", + "element_result": "System.Reflection.Emit", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "0625a97b-1e77-43c8-90fc-5f16a1daa050", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "0625a97b-1e77-43c8-90fc-5f16a1daa050", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "0625a97b-1e77-43c8-90fc-5f16a1daa050", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "0625a97b-1e77-43c8-90fc-5f16a1daa050", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "0625a97b-1e77-43c8-90fc-5f16a1daa050", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "0625a97b-1e77-43c8-90fc-5f16a1daa050", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "0625a97b-1e77-43c8-90fc-5f16a1daa050", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "0625a97b-1e77-43c8-90fc-5f16a1daa050", + "element_result": "pkg:nuget/System.Reflection.Emit@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "88b24ee0-38fb-409b-a5ed-d51c3a60f691", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "88b24ee0-38fb-409b-a5ed-d51c3a60f691", + "element_result": "System.Reflection.Primitives", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "88b24ee0-38fb-409b-a5ed-d51c3a60f691", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "88b24ee0-38fb-409b-a5ed-d51c3a60f691", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "88b24ee0-38fb-409b-a5ed-d51c3a60f691", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "88b24ee0-38fb-409b-a5ed-d51c3a60f691", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "88b24ee0-38fb-409b-a5ed-d51c3a60f691", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "88b24ee0-38fb-409b-a5ed-d51c3a60f691", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "88b24ee0-38fb-409b-a5ed-d51c3a60f691", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "88b24ee0-38fb-409b-a5ed-d51c3a60f691", + "element_result": "pkg:nuget/System.Reflection.Primitives@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "c9e67a0f-b7b2-4607-bc93-15cadfcba6ea", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "c9e67a0f-b7b2-4607-bc93-15cadfcba6ea", + "element_result": "Microsoft.Win32.Registry", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "c9e67a0f-b7b2-4607-bc93-15cadfcba6ea", + "element_result": "5.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "c9e67a0f-b7b2-4607-bc93-15cadfcba6ea", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "c9e67a0f-b7b2-4607-bc93-15cadfcba6ea", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "c9e67a0f-b7b2-4607-bc93-15cadfcba6ea", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "c9e67a0f-b7b2-4607-bc93-15cadfcba6ea", + "element_result": "git://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "c9e67a0f-b7b2-4607-bc93-15cadfcba6ea", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "c9e67a0f-b7b2-4607-bc93-15cadfcba6ea", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "c9e67a0f-b7b2-4607-bc93-15cadfcba6ea", + "element_result": "pkg:nuget/Microsoft.Win32.Registry@5.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "2643509f-86b1-498d-a3dc-d50f6a0b0a79", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "2643509f-86b1-498d-a3dc-d50f6a0b0a79", + "element_result": "System.Composition.Runtime", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "2643509f-86b1-498d-a3dc-d50f6a0b0a79", + "element_result": "1.0.31", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "2643509f-86b1-498d-a3dc-d50f6a0b0a79", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "2643509f-86b1-498d-a3dc-d50f6a0b0a79", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "2643509f-86b1-498d-a3dc-d50f6a0b0a79", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "2643509f-86b1-498d-a3dc-d50f6a0b0a79", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "2643509f-86b1-498d-a3dc-d50f6a0b0a79", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "2643509f-86b1-498d-a3dc-d50f6a0b0a79", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "2643509f-86b1-498d-a3dc-d50f6a0b0a79", + "element_result": "pkg:nuget/System.Composition.Runtime@1.0.31", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "2beecd36-e437-4c88-8ad1-a812f9a6dfe9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "2beecd36-e437-4c88-8ad1-a812f9a6dfe9", + "element_result": "System.Security.Principal.Windows", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "2beecd36-e437-4c88-8ad1-a812f9a6dfe9", + "element_result": "5.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "2beecd36-e437-4c88-8ad1-a812f9a6dfe9", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "2beecd36-e437-4c88-8ad1-a812f9a6dfe9", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "2beecd36-e437-4c88-8ad1-a812f9a6dfe9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "2beecd36-e437-4c88-8ad1-a812f9a6dfe9", + "element_result": "git://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "2beecd36-e437-4c88-8ad1-a812f9a6dfe9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "2beecd36-e437-4c88-8ad1-a812f9a6dfe9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "2beecd36-e437-4c88-8ad1-a812f9a6dfe9", + "element_result": "pkg:nuget/System.Security.Principal.Windows@5.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "9e43e5e5-16e3-4dd8-b9ef-fa3261b087dc", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "9e43e5e5-16e3-4dd8-b9ef-fa3261b087dc", + "element_result": "Microsoft.Extensions.Logging", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "9e43e5e5-16e3-4dd8-b9ef-fa3261b087dc", + "element_result": "6.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "9e43e5e5-16e3-4dd8-b9ef-fa3261b087dc", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "9e43e5e5-16e3-4dd8-b9ef-fa3261b087dc", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "9e43e5e5-16e3-4dd8-b9ef-fa3261b087dc", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "9e43e5e5-16e3-4dd8-b9ef-fa3261b087dc", + "element_result": "https://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "9e43e5e5-16e3-4dd8-b9ef-fa3261b087dc", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "9e43e5e5-16e3-4dd8-b9ef-fa3261b087dc", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "9e43e5e5-16e3-4dd8-b9ef-fa3261b087dc", + "element_result": "pkg:nuget/Microsoft.Extensions.Logging@6.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "8c664ad6-9d10-43cd-91a3-cbd13b61113d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "8c664ad6-9d10-43cd-91a3-cbd13b61113d", + "element_result": "CommunityToolkit.WinUI.UI.Controls.Media", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "8c664ad6-9d10-43cd-91a3-cbd13b61113d", + "element_result": "7.1.2", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "8c664ad6-9d10-43cd-91a3-cbd13b61113d", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "8c664ad6-9d10-43cd-91a3-cbd13b61113d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "8c664ad6-9d10-43cd-91a3-cbd13b61113d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "8c664ad6-9d10-43cd-91a3-cbd13b61113d", + "element_result": "https://github.com/CommunityToolkit/WindowsCommunityToolkit", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "8c664ad6-9d10-43cd-91a3-cbd13b61113d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "8c664ad6-9d10-43cd-91a3-cbd13b61113d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "8c664ad6-9d10-43cd-91a3-cbd13b61113d", + "element_result": "pkg:nuget/CommunityToolkit.WinUI.UI.Controls.Media@7.1.2", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "5066af73-616f-4ab4-b4fd-84c7bfb6ee38", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "5066af73-616f-4ab4-b4fd-84c7bfb6ee38", + "element_result": "Microsoft.CodeAnalysis.Workspaces.MSBuild", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "5066af73-616f-4ab4-b4fd-84c7bfb6ee38", + "element_result": "4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "5066af73-616f-4ab4-b4fd-84c7bfb6ee38", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "5066af73-616f-4ab4-b4fd-84c7bfb6ee38", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "5066af73-616f-4ab4-b4fd-84c7bfb6ee38", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "5066af73-616f-4ab4-b4fd-84c7bfb6ee38", + "element_result": "https://github.com/dotnet/roslyn", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "5066af73-616f-4ab4-b4fd-84c7bfb6ee38", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "5066af73-616f-4ab4-b4fd-84c7bfb6ee38", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "5066af73-616f-4ab4-b4fd-84c7bfb6ee38", + "element_result": "pkg:nuget/Microsoft.CodeAnalysis.Workspaces.MSBuild@4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "03f5a04d-c9b4-4e29-9e4a-1eedb9b1628c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "03f5a04d-c9b4-4e29-9e4a-1eedb9b1628c", + "element_result": "Microsoft.DotNet.Scaffolding.Shared", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "03f5a04d-c9b4-4e29-9e4a-1eedb9b1628c", + "element_result": "6.0.0-rc.1.21464.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "03f5a04d-c9b4-4e29-9e4a-1eedb9b1628c", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "03f5a04d-c9b4-4e29-9e4a-1eedb9b1628c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "03f5a04d-c9b4-4e29-9e4a-1eedb9b1628c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "03f5a04d-c9b4-4e29-9e4a-1eedb9b1628c", + "element_result": "https://github.com/dotnet/Scaffolding", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "03f5a04d-c9b4-4e29-9e4a-1eedb9b1628c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "03f5a04d-c9b4-4e29-9e4a-1eedb9b1628c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "03f5a04d-c9b4-4e29-9e4a-1eedb9b1628c", + "element_result": "pkg:nuget/Microsoft.DotNet.Scaffolding.Shared@6.0.0-rc.1.21464.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "1bae9398-cdb8-4ea2-ab54-6e73a5967c5c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "1bae9398-cdb8-4ea2-ab54-6e73a5967c5c", + "element_result": "Microsoft.VisualStudio.Web.CodeGeneration.Core", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "1bae9398-cdb8-4ea2-ab54-6e73a5967c5c", + "element_result": "6.0.0-rc.1.21464.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "1bae9398-cdb8-4ea2-ab54-6e73a5967c5c", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "1bae9398-cdb8-4ea2-ab54-6e73a5967c5c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "1bae9398-cdb8-4ea2-ab54-6e73a5967c5c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "1bae9398-cdb8-4ea2-ab54-6e73a5967c5c", + "element_result": "https://github.com/dotnet/Scaffolding", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "1bae9398-cdb8-4ea2-ab54-6e73a5967c5c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "1bae9398-cdb8-4ea2-ab54-6e73a5967c5c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "1bae9398-cdb8-4ea2-ab54-6e73a5967c5c", + "element_result": "pkg:nuget/Microsoft.VisualStudio.Web.CodeGeneration.Core@6.0.0-rc.1.21464.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "6509594a-0382-49b5-89a6-c2e7f3e7b607", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "6509594a-0382-49b5-89a6-c2e7f3e7b607", + "element_result": "System.Memory", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "6509594a-0382-49b5-89a6-c2e7f3e7b607", + "element_result": "4.5.4", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "6509594a-0382-49b5-89a6-c2e7f3e7b607", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "6509594a-0382-49b5-89a6-c2e7f3e7b607", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "6509594a-0382-49b5-89a6-c2e7f3e7b607", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "6509594a-0382-49b5-89a6-c2e7f3e7b607", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "6509594a-0382-49b5-89a6-c2e7f3e7b607", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "6509594a-0382-49b5-89a6-c2e7f3e7b607", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "6509594a-0382-49b5-89a6-c2e7f3e7b607", + "element_result": "pkg:nuget/System.Memory@4.5.4", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "bde02a14-e5d9-4848-95d0-00d37bb9d13c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "bde02a14-e5d9-4848-95d0-00d37bb9d13c", + "element_result": "CommunityToolkit.WinUI.UI.Controls.DataGrid", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "bde02a14-e5d9-4848-95d0-00d37bb9d13c", + "element_result": "7.1.2", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "bde02a14-e5d9-4848-95d0-00d37bb9d13c", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "bde02a14-e5d9-4848-95d0-00d37bb9d13c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "bde02a14-e5d9-4848-95d0-00d37bb9d13c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "bde02a14-e5d9-4848-95d0-00d37bb9d13c", + "element_result": "https://github.com/CommunityToolkit/WindowsCommunityToolkit", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "bde02a14-e5d9-4848-95d0-00d37bb9d13c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "bde02a14-e5d9-4848-95d0-00d37bb9d13c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "bde02a14-e5d9-4848-95d0-00d37bb9d13c", + "element_result": "pkg:nuget/CommunityToolkit.WinUI.UI.Controls.DataGrid@7.1.2", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "a5ce919a-2584-4180-a000-4918ddbce550", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "a5ce919a-2584-4180-a000-4918ddbce550", + "element_result": "Microsoft.Graph", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "a5ce919a-2584-4180-a000-4918ddbce550", + "element_result": "4.25.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "a5ce919a-2584-4180-a000-4918ddbce550", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "a5ce919a-2584-4180-a000-4918ddbce550", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "a5ce919a-2584-4180-a000-4918ddbce550", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "a5ce919a-2584-4180-a000-4918ddbce550", + "element_result": "https://github.com/microsoftgraph/msgraph-sdk-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "a5ce919a-2584-4180-a000-4918ddbce550", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "a5ce919a-2584-4180-a000-4918ddbce550", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "a5ce919a-2584-4180-a000-4918ddbce550", + "element_result": "pkg:nuget/Microsoft.Graph@4.25.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "c7f5bf61-7cf8-4ab7-9c6f-5b5dab250377", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "c7f5bf61-7cf8-4ab7-9c6f-5b5dab250377", + "element_result": "runtime.any.System.Text.Encoding", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "c7f5bf61-7cf8-4ab7-9c6f-5b5dab250377", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "c7f5bf61-7cf8-4ab7-9c6f-5b5dab250377", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "c7f5bf61-7cf8-4ab7-9c6f-5b5dab250377", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "c7f5bf61-7cf8-4ab7-9c6f-5b5dab250377", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "c7f5bf61-7cf8-4ab7-9c6f-5b5dab250377", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "c7f5bf61-7cf8-4ab7-9c6f-5b5dab250377", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "c7f5bf61-7cf8-4ab7-9c6f-5b5dab250377", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "c7f5bf61-7cf8-4ab7-9c6f-5b5dab250377", + "element_result": "pkg:nuget/runtime.any.System.Text.Encoding@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "85aadcc3-d683-4465-b616-e508d22f7719", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "85aadcc3-d683-4465-b616-e508d22f7719", + "element_result": "System.CodeDom", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "85aadcc3-d683-4465-b616-e508d22f7719", + "element_result": "4.4.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "85aadcc3-d683-4465-b616-e508d22f7719", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "85aadcc3-d683-4465-b616-e508d22f7719", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "85aadcc3-d683-4465-b616-e508d22f7719", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "85aadcc3-d683-4465-b616-e508d22f7719", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "85aadcc3-d683-4465-b616-e508d22f7719", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "85aadcc3-d683-4465-b616-e508d22f7719", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "85aadcc3-d683-4465-b616-e508d22f7719", + "element_result": "pkg:nuget/System.CodeDom@4.4.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "b833b620-0b36-4566-8242-016e0da51771", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "b833b620-0b36-4566-8242-016e0da51771", + "element_result": "System.Security.Claims", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "b833b620-0b36-4566-8242-016e0da51771", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "b833b620-0b36-4566-8242-016e0da51771", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "b833b620-0b36-4566-8242-016e0da51771", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "b833b620-0b36-4566-8242-016e0da51771", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "b833b620-0b36-4566-8242-016e0da51771", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "b833b620-0b36-4566-8242-016e0da51771", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "b833b620-0b36-4566-8242-016e0da51771", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "b833b620-0b36-4566-8242-016e0da51771", + "element_result": "pkg:nuget/System.Security.Claims@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "e848c049-e836-4502-a30c-9a6e38a75042", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "e848c049-e836-4502-a30c-9a6e38a75042", + "element_result": "System.Security.Cryptography.X509Certificates", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "e848c049-e836-4502-a30c-9a6e38a75042", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "e848c049-e836-4502-a30c-9a6e38a75042", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "e848c049-e836-4502-a30c-9a6e38a75042", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "e848c049-e836-4502-a30c-9a6e38a75042", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "e848c049-e836-4502-a30c-9a6e38a75042", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "e848c049-e836-4502-a30c-9a6e38a75042", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "e848c049-e836-4502-a30c-9a6e38a75042", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "e848c049-e836-4502-a30c-9a6e38a75042", + "element_result": "pkg:nuget/System.Security.Cryptography.X509Certificates@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "7947bf0e-f382-43b1-b83f-1f80393b546e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "7947bf0e-f382-43b1-b83f-1f80393b546e", + "element_result": "Microsoft.CodeAnalysis.Workspaces.Common", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "7947bf0e-f382-43b1-b83f-1f80393b546e", + "element_result": "4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "7947bf0e-f382-43b1-b83f-1f80393b546e", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "7947bf0e-f382-43b1-b83f-1f80393b546e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "7947bf0e-f382-43b1-b83f-1f80393b546e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "7947bf0e-f382-43b1-b83f-1f80393b546e", + "element_result": "https://github.com/dotnet/roslyn", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "7947bf0e-f382-43b1-b83f-1f80393b546e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "7947bf0e-f382-43b1-b83f-1f80393b546e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "7947bf0e-f382-43b1-b83f-1f80393b546e", + "element_result": "pkg:nuget/Microsoft.CodeAnalysis.Workspaces.Common@4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "a0a60d49-6ad6-4b1b-8a91-86424e95208d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "a0a60d49-6ad6-4b1b-8a91-86424e95208d", + "element_result": "Microsoft.CodeAnalysis.VisualBasic", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "a0a60d49-6ad6-4b1b-8a91-86424e95208d", + "element_result": "4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "a0a60d49-6ad6-4b1b-8a91-86424e95208d", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "a0a60d49-6ad6-4b1b-8a91-86424e95208d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "a0a60d49-6ad6-4b1b-8a91-86424e95208d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "a0a60d49-6ad6-4b1b-8a91-86424e95208d", + "element_result": "https://github.com/dotnet/roslyn", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "a0a60d49-6ad6-4b1b-8a91-86424e95208d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "a0a60d49-6ad6-4b1b-8a91-86424e95208d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "a0a60d49-6ad6-4b1b-8a91-86424e95208d", + "element_result": "pkg:nuget/Microsoft.CodeAnalysis.VisualBasic@4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "7f638f2d-0f1a-45c8-b88e-b2652684e8e6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "7f638f2d-0f1a-45c8-b88e-b2652684e8e6", + "element_result": "Microsoft.Identity.Web.Certificateless", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "7f638f2d-0f1a-45c8-b88e-b2652684e8e6", + "element_result": "1.26.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "7f638f2d-0f1a-45c8-b88e-b2652684e8e6", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "7f638f2d-0f1a-45c8-b88e-b2652684e8e6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "7f638f2d-0f1a-45c8-b88e-b2652684e8e6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "7f638f2d-0f1a-45c8-b88e-b2652684e8e6", + "element_result": "https://github.com/AzureAD/microsoft-identity-web", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "7f638f2d-0f1a-45c8-b88e-b2652684e8e6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "7f638f2d-0f1a-45c8-b88e-b2652684e8e6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "7f638f2d-0f1a-45c8-b88e-b2652684e8e6", + "element_result": "pkg:nuget/Microsoft.Identity.Web.Certificateless@1.26.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "0d1ee30f-bf1c-450e-b3e9-e572ee1bf4da", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "0d1ee30f-bf1c-450e-b3e9-e572ee1bf4da", + "element_result": "runtime.win.System.Net.Primitives", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "0d1ee30f-bf1c-450e-b3e9-e572ee1bf4da", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "0d1ee30f-bf1c-450e-b3e9-e572ee1bf4da", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "0d1ee30f-bf1c-450e-b3e9-e572ee1bf4da", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "0d1ee30f-bf1c-450e-b3e9-e572ee1bf4da", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "0d1ee30f-bf1c-450e-b3e9-e572ee1bf4da", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "0d1ee30f-bf1c-450e-b3e9-e572ee1bf4da", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "0d1ee30f-bf1c-450e-b3e9-e572ee1bf4da", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "0d1ee30f-bf1c-450e-b3e9-e572ee1bf4da", + "element_result": "pkg:nuget/runtime.win.System.Net.Primitives@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "ec21bba6-b50c-4909-b006-d0474ba2907b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "ec21bba6-b50c-4909-b006-d0474ba2907b", + "element_result": "System.Buffers", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "ec21bba6-b50c-4909-b006-d0474ba2907b", + "element_result": "4.5.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "ec21bba6-b50c-4909-b006-d0474ba2907b", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "ec21bba6-b50c-4909-b006-d0474ba2907b", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "ec21bba6-b50c-4909-b006-d0474ba2907b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "ec21bba6-b50c-4909-b006-d0474ba2907b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "ec21bba6-b50c-4909-b006-d0474ba2907b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "ec21bba6-b50c-4909-b006-d0474ba2907b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "ec21bba6-b50c-4909-b006-d0474ba2907b", + "element_result": "pkg:nuget/System.Buffers@4.5.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "c980d5be-0aa7-4a54-8e39-06646f87e266", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "c980d5be-0aa7-4a54-8e39-06646f87e266", + "element_result": "Microsoft.Bcl.AsyncInterfaces", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "c980d5be-0aa7-4a54-8e39-06646f87e266", + "element_result": "5.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "c980d5be-0aa7-4a54-8e39-06646f87e266", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "c980d5be-0aa7-4a54-8e39-06646f87e266", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "c980d5be-0aa7-4a54-8e39-06646f87e266", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "c980d5be-0aa7-4a54-8e39-06646f87e266", + "element_result": "git://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "c980d5be-0aa7-4a54-8e39-06646f87e266", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "c980d5be-0aa7-4a54-8e39-06646f87e266", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "c980d5be-0aa7-4a54-8e39-06646f87e266", + "element_result": "pkg:nuget/Microsoft.Bcl.AsyncInterfaces@5.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "fb150659-4c35-4e0e-b893-898423549f8d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "fb150659-4c35-4e0e-b893-898423549f8d", + "element_result": "Microsoft.IdentityModel.Protocols.OpenIdConnect", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "fb150659-4c35-4e0e-b893-898423549f8d", + "element_result": "6.15.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "fb150659-4c35-4e0e-b893-898423549f8d", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "fb150659-4c35-4e0e-b893-898423549f8d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "fb150659-4c35-4e0e-b893-898423549f8d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "fb150659-4c35-4e0e-b893-898423549f8d", + "element_result": "https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "fb150659-4c35-4e0e-b893-898423549f8d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "fb150659-4c35-4e0e-b893-898423549f8d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "fb150659-4c35-4e0e-b893-898423549f8d", + "element_result": "pkg:nuget/Microsoft.IdentityModel.Protocols.OpenIdConnect@6.15.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "1087c413-923d-40e0-b7a4-950546dd7f3f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "1087c413-923d-40e0-b7a4-950546dd7f3f", + "element_result": "System.IO", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "1087c413-923d-40e0-b7a4-950546dd7f3f", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "1087c413-923d-40e0-b7a4-950546dd7f3f", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "1087c413-923d-40e0-b7a4-950546dd7f3f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "1087c413-923d-40e0-b7a4-950546dd7f3f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "1087c413-923d-40e0-b7a4-950546dd7f3f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "1087c413-923d-40e0-b7a4-950546dd7f3f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "1087c413-923d-40e0-b7a4-950546dd7f3f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "1087c413-923d-40e0-b7a4-950546dd7f3f", + "element_result": "pkg:nuget/System.IO@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "b4339d06-4f49-491f-bca1-fbe2c0f015f9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "b4339d06-4f49-491f-bca1-fbe2c0f015f9", + "element_result": "System.Security.Cryptography.ProtectedData", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "b4339d06-4f49-491f-bca1-fbe2c0f015f9", + "element_result": "4.7.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "b4339d06-4f49-491f-bca1-fbe2c0f015f9", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "b4339d06-4f49-491f-bca1-fbe2c0f015f9", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "b4339d06-4f49-491f-bca1-fbe2c0f015f9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "b4339d06-4f49-491f-bca1-fbe2c0f015f9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "b4339d06-4f49-491f-bca1-fbe2c0f015f9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "b4339d06-4f49-491f-bca1-fbe2c0f015f9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "b4339d06-4f49-491f-bca1-fbe2c0f015f9", + "element_result": "pkg:nuget/System.Security.Cryptography.ProtectedData@4.7.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "1e27e13a-d0aa-41d5-9544-125d64315f97", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "1e27e13a-d0aa-41d5-9544-125d64315f97", + "element_result": "Microsoft.CodeAnalysis.VisualBasic.Features", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "1e27e13a-d0aa-41d5-9544-125d64315f97", + "element_result": "4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "1e27e13a-d0aa-41d5-9544-125d64315f97", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "1e27e13a-d0aa-41d5-9544-125d64315f97", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "1e27e13a-d0aa-41d5-9544-125d64315f97", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "1e27e13a-d0aa-41d5-9544-125d64315f97", + "element_result": "https://github.com/dotnet/roslyn", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "1e27e13a-d0aa-41d5-9544-125d64315f97", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "1e27e13a-d0aa-41d5-9544-125d64315f97", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "1e27e13a-d0aa-41d5-9544-125d64315f97", + "element_result": "pkg:nuget/Microsoft.CodeAnalysis.VisualBasic.Features@4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "a07a1aa2-04bf-4586-a90c-c5ef04e536d4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "a07a1aa2-04bf-4586-a90c-c5ef04e536d4", + "element_result": "runtime.any.System.Globalization.Calendars", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "a07a1aa2-04bf-4586-a90c-c5ef04e536d4", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "a07a1aa2-04bf-4586-a90c-c5ef04e536d4", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "a07a1aa2-04bf-4586-a90c-c5ef04e536d4", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "a07a1aa2-04bf-4586-a90c-c5ef04e536d4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "a07a1aa2-04bf-4586-a90c-c5ef04e536d4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "a07a1aa2-04bf-4586-a90c-c5ef04e536d4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "a07a1aa2-04bf-4586-a90c-c5ef04e536d4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "a07a1aa2-04bf-4586-a90c-c5ef04e536d4", + "element_result": "pkg:nuget/runtime.any.System.Globalization.Calendars@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "8fc4d330-a097-4c80-b538-5b6d906ea86b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "8fc4d330-a097-4c80-b538-5b6d906ea86b", + "element_result": "System.Memory.Data", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "8fc4d330-a097-4c80-b538-5b6d906ea86b", + "element_result": "1.0.2", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "8fc4d330-a097-4c80-b538-5b6d906ea86b", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "8fc4d330-a097-4c80-b538-5b6d906ea86b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "8fc4d330-a097-4c80-b538-5b6d906ea86b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "8fc4d330-a097-4c80-b538-5b6d906ea86b", + "element_result": "https://github.com/Azure/azure-sdk-for-net", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "8fc4d330-a097-4c80-b538-5b6d906ea86b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "8fc4d330-a097-4c80-b538-5b6d906ea86b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "8fc4d330-a097-4c80-b538-5b6d906ea86b", + "element_result": "pkg:nuget/System.Memory.Data@1.0.2", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "ec9357d6-f9da-48b8-ad52-21ad4fec02a9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "ec9357d6-f9da-48b8-ad52-21ad4fec02a9", + "element_result": "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "ec9357d6-f9da-48b8-ad52-21ad4fec02a9", + "element_result": "6.0.0-rc.1.21464.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "ec9357d6-f9da-48b8-ad52-21ad4fec02a9", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "ec9357d6-f9da-48b8-ad52-21ad4fec02a9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "ec9357d6-f9da-48b8-ad52-21ad4fec02a9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "ec9357d6-f9da-48b8-ad52-21ad4fec02a9", + "element_result": "https://github.com/dotnet/Scaffolding", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "ec9357d6-f9da-48b8-ad52-21ad4fec02a9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "ec9357d6-f9da-48b8-ad52-21ad4fec02a9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "ec9357d6-f9da-48b8-ad52-21ad4fec02a9", + "element_result": "pkg:nuget/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore@6.0.0-rc.1.21464.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "5f6ebdac-ea93-4002-b51b-6231c8482bed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "5f6ebdac-ea93-4002-b51b-6231c8482bed", + "element_result": "Microsoft.VisualStudio.Debugger.Contracts", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "5f6ebdac-ea93-4002-b51b-6231c8482bed", + "element_result": "17.2.0-beta.21371.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "5f6ebdac-ea93-4002-b51b-6231c8482bed", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "5f6ebdac-ea93-4002-b51b-6231c8482bed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "5f6ebdac-ea93-4002-b51b-6231c8482bed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "5f6ebdac-ea93-4002-b51b-6231c8482bed", + "element_result": "https://devdiv.visualstudio.com/DevDiv/_git/VSDebugCore", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "5f6ebdac-ea93-4002-b51b-6231c8482bed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "5f6ebdac-ea93-4002-b51b-6231c8482bed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "5f6ebdac-ea93-4002-b51b-6231c8482bed", + "element_result": "pkg:nuget/Microsoft.VisualStudio.Debugger.Contracts@17.2.0-beta.21371.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "5dedba8a-4280-4eca-926b-19d60a427c62", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "5dedba8a-4280-4eca-926b-19d60a427c62", + "element_result": "NuGet.Packaging", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "5dedba8a-4280-4eca-926b-19d60a427c62", + "element_result": "5.9.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "5dedba8a-4280-4eca-926b-19d60a427c62", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "5dedba8a-4280-4eca-926b-19d60a427c62", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "5dedba8a-4280-4eca-926b-19d60a427c62", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "5dedba8a-4280-4eca-926b-19d60a427c62", + "element_result": "https://github.com/NuGet/NuGet.Client", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "5dedba8a-4280-4eca-926b-19d60a427c62", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "5dedba8a-4280-4eca-926b-19d60a427c62", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "5dedba8a-4280-4eca-926b-19d60a427c62", + "element_result": "pkg:nuget/NuGet.Packaging@5.9.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "4afbee58-009d-4e14-b35c-80c51fbf8896", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "4afbee58-009d-4e14-b35c-80c51fbf8896", + "element_result": "runtime.any.System.Reflection.Primitives", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "4afbee58-009d-4e14-b35c-80c51fbf8896", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "4afbee58-009d-4e14-b35c-80c51fbf8896", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "4afbee58-009d-4e14-b35c-80c51fbf8896", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "4afbee58-009d-4e14-b35c-80c51fbf8896", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "4afbee58-009d-4e14-b35c-80c51fbf8896", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "4afbee58-009d-4e14-b35c-80c51fbf8896", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "4afbee58-009d-4e14-b35c-80c51fbf8896", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "4afbee58-009d-4e14-b35c-80c51fbf8896", + "element_result": "pkg:nuget/runtime.any.System.Reflection.Primitives@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "b67fa91d-0808-4245-b4f8-d4f64817ec85", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "b67fa91d-0808-4245-b4f8-d4f64817ec85", + "element_result": "runtime.native.System.Security.Cryptography.OpenSsl", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "b67fa91d-0808-4245-b4f8-d4f64817ec85", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "b67fa91d-0808-4245-b4f8-d4f64817ec85", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "b67fa91d-0808-4245-b4f8-d4f64817ec85", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "b67fa91d-0808-4245-b4f8-d4f64817ec85", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "b67fa91d-0808-4245-b4f8-d4f64817ec85", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "b67fa91d-0808-4245-b4f8-d4f64817ec85", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "b67fa91d-0808-4245-b4f8-d4f64817ec85", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "b67fa91d-0808-4245-b4f8-d4f64817ec85", + "element_result": "pkg:nuget/runtime.native.System.Security.Cryptography.OpenSsl@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "82a9b492-2aa2-4d64-a7fd-5ee4f7b73835", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "82a9b492-2aa2-4d64-a7fd-5ee4f7b73835", + "element_result": "SQLitePCLRaw.bundle_e_sqlite3", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "82a9b492-2aa2-4d64-a7fd-5ee4f7b73835", + "element_result": "2.0.6", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "82a9b492-2aa2-4d64-a7fd-5ee4f7b73835", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "82a9b492-2aa2-4d64-a7fd-5ee4f7b73835", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "82a9b492-2aa2-4d64-a7fd-5ee4f7b73835", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "82a9b492-2aa2-4d64-a7fd-5ee4f7b73835", + "element_result": "https://github.com/ericsink/SQLitePCL.raw", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "82a9b492-2aa2-4d64-a7fd-5ee4f7b73835", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "82a9b492-2aa2-4d64-a7fd-5ee4f7b73835", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "82a9b492-2aa2-4d64-a7fd-5ee4f7b73835", + "element_result": "pkg:nuget/SQLitePCLRaw.bundle_e_sqlite3@2.0.6", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "65b8968b-1987-42eb-a4d6-d7f2cb56406f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "65b8968b-1987-42eb-a4d6-d7f2cb56406f", + "element_result": "System.IO.Compression.ZipFile", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "65b8968b-1987-42eb-a4d6-d7f2cb56406f", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "65b8968b-1987-42eb-a4d6-d7f2cb56406f", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "65b8968b-1987-42eb-a4d6-d7f2cb56406f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "65b8968b-1987-42eb-a4d6-d7f2cb56406f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "65b8968b-1987-42eb-a4d6-d7f2cb56406f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "65b8968b-1987-42eb-a4d6-d7f2cb56406f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "65b8968b-1987-42eb-a4d6-d7f2cb56406f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "65b8968b-1987-42eb-a4d6-d7f2cb56406f", + "element_result": "pkg:nuget/System.IO.Compression.ZipFile@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "c37ea3b2-d74d-49ab-a285-54bb5dd57eb1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "c37ea3b2-d74d-49ab-a285-54bb5dd57eb1", + "element_result": "System.Security.AccessControl", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "c37ea3b2-d74d-49ab-a285-54bb5dd57eb1", + "element_result": "6.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "c37ea3b2-d74d-49ab-a285-54bb5dd57eb1", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "c37ea3b2-d74d-49ab-a285-54bb5dd57eb1", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "c37ea3b2-d74d-49ab-a285-54bb5dd57eb1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "c37ea3b2-d74d-49ab-a285-54bb5dd57eb1", + "element_result": "https://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "c37ea3b2-d74d-49ab-a285-54bb5dd57eb1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "c37ea3b2-d74d-49ab-a285-54bb5dd57eb1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "c37ea3b2-d74d-49ab-a285-54bb5dd57eb1", + "element_result": "pkg:nuget/System.Security.AccessControl@6.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "2e3e7d0d-2a84-4e95-89bf-3abaeaf052bb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "2e3e7d0d-2a84-4e95-89bf-3abaeaf052bb", + "element_result": "CommunityToolkit.WinUI.UI.Controls", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "2e3e7d0d-2a84-4e95-89bf-3abaeaf052bb", + "element_result": "7.1.2", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "2e3e7d0d-2a84-4e95-89bf-3abaeaf052bb", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "2e3e7d0d-2a84-4e95-89bf-3abaeaf052bb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "2e3e7d0d-2a84-4e95-89bf-3abaeaf052bb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "2e3e7d0d-2a84-4e95-89bf-3abaeaf052bb", + "element_result": "https://github.com/CommunityToolkit/WindowsCommunityToolkit", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "2e3e7d0d-2a84-4e95-89bf-3abaeaf052bb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "2e3e7d0d-2a84-4e95-89bf-3abaeaf052bb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "2e3e7d0d-2a84-4e95-89bf-3abaeaf052bb", + "element_result": "pkg:nuget/CommunityToolkit.WinUI.UI.Controls@7.1.2", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "5e9798fc-e78e-44d1-9a75-71679f1531ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "5e9798fc-e78e-44d1-9a75-71679f1531ed", + "element_result": "System.Security.Permissions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "5e9798fc-e78e-44d1-9a75-71679f1531ed", + "element_result": "4.7.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "5e9798fc-e78e-44d1-9a75-71679f1531ed", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "5e9798fc-e78e-44d1-9a75-71679f1531ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "5e9798fc-e78e-44d1-9a75-71679f1531ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "5e9798fc-e78e-44d1-9a75-71679f1531ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "5e9798fc-e78e-44d1-9a75-71679f1531ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "5e9798fc-e78e-44d1-9a75-71679f1531ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "5e9798fc-e78e-44d1-9a75-71679f1531ed", + "element_result": "pkg:nuget/System.Security.Permissions@4.7.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "50a11ae1-195e-4ba0-a548-4824adee565b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "50a11ae1-195e-4ba0-a548-4824adee565b", + "element_result": "System.Security.Cryptography.OpenSsl", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "50a11ae1-195e-4ba0-a548-4824adee565b", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "50a11ae1-195e-4ba0-a548-4824adee565b", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "50a11ae1-195e-4ba0-a548-4824adee565b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "50a11ae1-195e-4ba0-a548-4824adee565b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "50a11ae1-195e-4ba0-a548-4824adee565b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "50a11ae1-195e-4ba0-a548-4824adee565b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "50a11ae1-195e-4ba0-a548-4824adee565b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "50a11ae1-195e-4ba0-a548-4824adee565b", + "element_result": "pkg:nuget/System.Security.Cryptography.OpenSsl@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "fbc51d15-768d-4049-8143-b57ea4ab13de", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "fbc51d15-768d-4049-8143-b57ea4ab13de", + "element_result": "System.Composition.TypedParts", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "fbc51d15-768d-4049-8143-b57ea4ab13de", + "element_result": "1.0.31", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "fbc51d15-768d-4049-8143-b57ea4ab13de", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "fbc51d15-768d-4049-8143-b57ea4ab13de", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "fbc51d15-768d-4049-8143-b57ea4ab13de", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "fbc51d15-768d-4049-8143-b57ea4ab13de", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "fbc51d15-768d-4049-8143-b57ea4ab13de", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "fbc51d15-768d-4049-8143-b57ea4ab13de", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "fbc51d15-768d-4049-8143-b57ea4ab13de", + "element_result": "pkg:nuget/System.Composition.TypedParts@1.0.31", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "e9271a13-ace6-4784-8400-52fc81264eea", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "e9271a13-ace6-4784-8400-52fc81264eea", + "element_result": "Microsoft.Extensions.Options", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "e9271a13-ace6-4784-8400-52fc81264eea", + "element_result": "6.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "e9271a13-ace6-4784-8400-52fc81264eea", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "e9271a13-ace6-4784-8400-52fc81264eea", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "e9271a13-ace6-4784-8400-52fc81264eea", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "e9271a13-ace6-4784-8400-52fc81264eea", + "element_result": "https://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "e9271a13-ace6-4784-8400-52fc81264eea", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "e9271a13-ace6-4784-8400-52fc81264eea", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "e9271a13-ace6-4784-8400-52fc81264eea", + "element_result": "pkg:nuget/Microsoft.Extensions.Options@6.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "b00df8de-e65d-4fb4-932c-f3c66d75d69e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "b00df8de-e65d-4fb4-932c-f3c66d75d69e", + "element_result": "System.IO.FileSystem", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "b00df8de-e65d-4fb4-932c-f3c66d75d69e", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "b00df8de-e65d-4fb4-932c-f3c66d75d69e", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "b00df8de-e65d-4fb4-932c-f3c66d75d69e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "b00df8de-e65d-4fb4-932c-f3c66d75d69e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "b00df8de-e65d-4fb4-932c-f3c66d75d69e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "b00df8de-e65d-4fb4-932c-f3c66d75d69e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "b00df8de-e65d-4fb4-932c-f3c66d75d69e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "b00df8de-e65d-4fb4-932c-f3c66d75d69e", + "element_result": "pkg:nuget/System.IO.FileSystem@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "0c66a963-9454-44c1-9f71-db7294776744", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "0c66a963-9454-44c1-9f71-db7294776744", + "element_result": "System.Reflection.Metadata", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "0c66a963-9454-44c1-9f71-db7294776744", + "element_result": "5.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "0c66a963-9454-44c1-9f71-db7294776744", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "0c66a963-9454-44c1-9f71-db7294776744", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "0c66a963-9454-44c1-9f71-db7294776744", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "0c66a963-9454-44c1-9f71-db7294776744", + "element_result": "git://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "0c66a963-9454-44c1-9f71-db7294776744", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "0c66a963-9454-44c1-9f71-db7294776744", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "0c66a963-9454-44c1-9f71-db7294776744", + "element_result": "pkg:nuget/System.Reflection.Metadata@5.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "b751a892-0750-4a7d-bd64-858b60f9bf79", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "b751a892-0750-4a7d-bd64-858b60f9bf79", + "element_result": "NuGet.DependencyResolver.Core", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "b751a892-0750-4a7d-bd64-858b60f9bf79", + "element_result": "5.9.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "b751a892-0750-4a7d-bd64-858b60f9bf79", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "b751a892-0750-4a7d-bd64-858b60f9bf79", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "b751a892-0750-4a7d-bd64-858b60f9bf79", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "b751a892-0750-4a7d-bd64-858b60f9bf79", + "element_result": "https://github.com/NuGet/NuGet.Client", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "b751a892-0750-4a7d-bd64-858b60f9bf79", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "b751a892-0750-4a7d-bd64-858b60f9bf79", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "b751a892-0750-4a7d-bd64-858b60f9bf79", + "element_result": "pkg:nuget/NuGet.DependencyResolver.Core@5.9.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "e26e5b90-0eb4-4840-81eb-fddbe8e645c4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "e26e5b90-0eb4-4840-81eb-fddbe8e645c4", + "element_result": "System.Private.Uri", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "e26e5b90-0eb4-4840-81eb-fddbe8e645c4", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "e26e5b90-0eb4-4840-81eb-fddbe8e645c4", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "e26e5b90-0eb4-4840-81eb-fddbe8e645c4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "e26e5b90-0eb4-4840-81eb-fddbe8e645c4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "e26e5b90-0eb4-4840-81eb-fddbe8e645c4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "e26e5b90-0eb4-4840-81eb-fddbe8e645c4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "e26e5b90-0eb4-4840-81eb-fddbe8e645c4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "e26e5b90-0eb4-4840-81eb-fddbe8e645c4", + "element_result": "pkg:nuget/System.Private.Uri@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "f0a751d7-b47e-4ff4-bd38-9f0d6e8fa74b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "f0a751d7-b47e-4ff4-bd38-9f0d6e8fa74b", + "element_result": "System.Text.Json", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "f0a751d7-b47e-4ff4-bd38-9f0d6e8fa74b", + "element_result": "4.7.2", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "f0a751d7-b47e-4ff4-bd38-9f0d6e8fa74b", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "f0a751d7-b47e-4ff4-bd38-9f0d6e8fa74b", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "f0a751d7-b47e-4ff4-bd38-9f0d6e8fa74b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "f0a751d7-b47e-4ff4-bd38-9f0d6e8fa74b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "f0a751d7-b47e-4ff4-bd38-9f0d6e8fa74b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "f0a751d7-b47e-4ff4-bd38-9f0d6e8fa74b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "f0a751d7-b47e-4ff4-bd38-9f0d6e8fa74b", + "element_result": "pkg:nuget/System.Text.Json@4.7.2", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "58233863-d223-4050-8389-2dde375be13f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "58233863-d223-4050-8389-2dde375be13f", + "element_result": "System.Xml.ReaderWriter", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "58233863-d223-4050-8389-2dde375be13f", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "58233863-d223-4050-8389-2dde375be13f", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "58233863-d223-4050-8389-2dde375be13f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "58233863-d223-4050-8389-2dde375be13f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "58233863-d223-4050-8389-2dde375be13f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "58233863-d223-4050-8389-2dde375be13f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "58233863-d223-4050-8389-2dde375be13f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "58233863-d223-4050-8389-2dde375be13f", + "element_result": "pkg:nuget/System.Xml.ReaderWriter@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "40a136d5-9bad-442b-8e30-0ac032e99f33", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "40a136d5-9bad-442b-8e30-0ac032e99f33", + "element_result": "Azure.Identity", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "40a136d5-9bad-442b-8e30-0ac032e99f33", + "element_result": "1.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "40a136d5-9bad-442b-8e30-0ac032e99f33", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "40a136d5-9bad-442b-8e30-0ac032e99f33", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "40a136d5-9bad-442b-8e30-0ac032e99f33", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "40a136d5-9bad-442b-8e30-0ac032e99f33", + "element_result": "https://github.com/Azure/azure-sdk-for-net", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "40a136d5-9bad-442b-8e30-0ac032e99f33", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "40a136d5-9bad-442b-8e30-0ac032e99f33", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "40a136d5-9bad-442b-8e30-0ac032e99f33", + "element_result": "pkg:nuget/Azure.Identity@1.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "b10f8932-9ff5-432a-b793-f4a324cb8619", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "b10f8932-9ff5-432a-b793-f4a324cb8619", + "element_result": "Microsoft.WindowsAppSDK", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "b10f8932-9ff5-432a-b793-f4a324cb8619", + "element_result": "1.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "b10f8932-9ff5-432a-b793-f4a324cb8619", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "b10f8932-9ff5-432a-b793-f4a324cb8619", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "b10f8932-9ff5-432a-b793-f4a324cb8619", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "b10f8932-9ff5-432a-b793-f4a324cb8619", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "b10f8932-9ff5-432a-b793-f4a324cb8619", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "b10f8932-9ff5-432a-b793-f4a324cb8619", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "b10f8932-9ff5-432a-b793-f4a324cb8619", + "element_result": "pkg:nuget/Microsoft.WindowsAppSDK@1.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "ac5815b8-8578-46ad-b815-7273dd2f83ee", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "ac5815b8-8578-46ad-b815-7273dd2f83ee", + "element_result": "runtime.any.System.Threading.Timer", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "ac5815b8-8578-46ad-b815-7273dd2f83ee", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "ac5815b8-8578-46ad-b815-7273dd2f83ee", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "ac5815b8-8578-46ad-b815-7273dd2f83ee", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "ac5815b8-8578-46ad-b815-7273dd2f83ee", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "ac5815b8-8578-46ad-b815-7273dd2f83ee", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "ac5815b8-8578-46ad-b815-7273dd2f83ee", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "ac5815b8-8578-46ad-b815-7273dd2f83ee", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "ac5815b8-8578-46ad-b815-7273dd2f83ee", + "element_result": "pkg:nuget/runtime.any.System.Threading.Timer@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "0daea25f-c516-4002-817c-1657cd6cea2a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "0daea25f-c516-4002-817c-1657cd6cea2a", + "element_result": "SQLitePCLRaw.lib.e_sqlite3", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "0daea25f-c516-4002-817c-1657cd6cea2a", + "element_result": "2.0.6", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "0daea25f-c516-4002-817c-1657cd6cea2a", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "0daea25f-c516-4002-817c-1657cd6cea2a", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "0daea25f-c516-4002-817c-1657cd6cea2a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "0daea25f-c516-4002-817c-1657cd6cea2a", + "element_result": "https://github.com/ericsink/SQLitePCL.raw", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "0daea25f-c516-4002-817c-1657cd6cea2a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "0daea25f-c516-4002-817c-1657cd6cea2a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "0daea25f-c516-4002-817c-1657cd6cea2a", + "element_result": "pkg:nuget/SQLitePCLRaw.lib.e_sqlite3@2.0.6", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "d42fd919-442c-4ac8-ae0a-1c16c2fbb2e0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "d42fd919-442c-4ac8-ae0a-1c16c2fbb2e0", + "element_result": "System.Reflection.Emit.ILGeneration", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "d42fd919-442c-4ac8-ae0a-1c16c2fbb2e0", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "d42fd919-442c-4ac8-ae0a-1c16c2fbb2e0", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "d42fd919-442c-4ac8-ae0a-1c16c2fbb2e0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "d42fd919-442c-4ac8-ae0a-1c16c2fbb2e0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "d42fd919-442c-4ac8-ae0a-1c16c2fbb2e0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "d42fd919-442c-4ac8-ae0a-1c16c2fbb2e0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "d42fd919-442c-4ac8-ae0a-1c16c2fbb2e0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "d42fd919-442c-4ac8-ae0a-1c16c2fbb2e0", + "element_result": "pkg:nuget/System.Reflection.Emit.ILGeneration@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "47d86fd8-b2cd-4a08-868a-8abfbd98dc26", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "47d86fd8-b2cd-4a08-868a-8abfbd98dc26", + "element_result": "System.Text.Encoding.CodePages", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "47d86fd8-b2cd-4a08-868a-8abfbd98dc26", + "element_result": "4.7.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "47d86fd8-b2cd-4a08-868a-8abfbd98dc26", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "47d86fd8-b2cd-4a08-868a-8abfbd98dc26", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "47d86fd8-b2cd-4a08-868a-8abfbd98dc26", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "47d86fd8-b2cd-4a08-868a-8abfbd98dc26", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "47d86fd8-b2cd-4a08-868a-8abfbd98dc26", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "47d86fd8-b2cd-4a08-868a-8abfbd98dc26", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "47d86fd8-b2cd-4a08-868a-8abfbd98dc26", + "element_result": "pkg:nuget/System.Text.Encoding.CodePages@4.7.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "34fdef9c-2b4c-4f24-8b65-f8395aeaa695", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "34fdef9c-2b4c-4f24-8b65-f8395aeaa695", + "element_result": "Microsoft.Data.SqlClient", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "34fdef9c-2b4c-4f24-8b65-f8395aeaa695", + "element_result": "2.1.4", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "34fdef9c-2b4c-4f24-8b65-f8395aeaa695", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "34fdef9c-2b4c-4f24-8b65-f8395aeaa695", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "34fdef9c-2b4c-4f24-8b65-f8395aeaa695", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "34fdef9c-2b4c-4f24-8b65-f8395aeaa695", + "element_result": "https://github.com/dotnet/sqlclient", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "34fdef9c-2b4c-4f24-8b65-f8395aeaa695", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "34fdef9c-2b4c-4f24-8b65-f8395aeaa695", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "34fdef9c-2b4c-4f24-8b65-f8395aeaa695", + "element_result": "pkg:nuget/Microsoft.Data.SqlClient@2.1.4", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "27c3a146-b43d-485d-900b-130a736c08ff", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "27c3a146-b43d-485d-900b-130a736c08ff", + "element_result": "runtime.any.System.Diagnostics.Tools", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "27c3a146-b43d-485d-900b-130a736c08ff", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "27c3a146-b43d-485d-900b-130a736c08ff", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "27c3a146-b43d-485d-900b-130a736c08ff", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "27c3a146-b43d-485d-900b-130a736c08ff", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "27c3a146-b43d-485d-900b-130a736c08ff", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "27c3a146-b43d-485d-900b-130a736c08ff", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "27c3a146-b43d-485d-900b-130a736c08ff", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "27c3a146-b43d-485d-900b-130a736c08ff", + "element_result": "pkg:nuget/runtime.any.System.Diagnostics.Tools@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "17d2aea3-3677-42f1-ae18-e96f27193a27", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "17d2aea3-3677-42f1-ae18-e96f27193a27", + "element_result": "System.Security.Cryptography.Encoding", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "17d2aea3-3677-42f1-ae18-e96f27193a27", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "17d2aea3-3677-42f1-ae18-e96f27193a27", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "17d2aea3-3677-42f1-ae18-e96f27193a27", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "17d2aea3-3677-42f1-ae18-e96f27193a27", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "17d2aea3-3677-42f1-ae18-e96f27193a27", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "17d2aea3-3677-42f1-ae18-e96f27193a27", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "17d2aea3-3677-42f1-ae18-e96f27193a27", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "17d2aea3-3677-42f1-ae18-e96f27193a27", + "element_result": "pkg:nuget/System.Security.Cryptography.Encoding@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "00d742c3-8a12-4dc7-8234-5a047a2661ae", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "00d742c3-8a12-4dc7-8234-5a047a2661ae", + "element_result": "Microsoft.VisualStudio.Web.CodeGenerators.Mvc", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "00d742c3-8a12-4dc7-8234-5a047a2661ae", + "element_result": "6.0.0-rc.1.21464.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "00d742c3-8a12-4dc7-8234-5a047a2661ae", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "00d742c3-8a12-4dc7-8234-5a047a2661ae", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "00d742c3-8a12-4dc7-8234-5a047a2661ae", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "00d742c3-8a12-4dc7-8234-5a047a2661ae", + "element_result": "https://github.com/dotnet/Scaffolding", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "00d742c3-8a12-4dc7-8234-5a047a2661ae", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "00d742c3-8a12-4dc7-8234-5a047a2661ae", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "00d742c3-8a12-4dc7-8234-5a047a2661ae", + "element_result": "pkg:nuget/Microsoft.VisualStudio.Web.CodeGenerators.Mvc@6.0.0-rc.1.21464.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "1660365a-08d0-400c-a6f4-82cf2665be99", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "1660365a-08d0-400c-a6f4-82cf2665be99", + "element_result": "System.Reflection.Emit.Lightweight", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "1660365a-08d0-400c-a6f4-82cf2665be99", + "element_result": "4.6.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "1660365a-08d0-400c-a6f4-82cf2665be99", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "1660365a-08d0-400c-a6f4-82cf2665be99", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "1660365a-08d0-400c-a6f4-82cf2665be99", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "1660365a-08d0-400c-a6f4-82cf2665be99", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "1660365a-08d0-400c-a6f4-82cf2665be99", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "1660365a-08d0-400c-a6f4-82cf2665be99", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "1660365a-08d0-400c-a6f4-82cf2665be99", + "element_result": "pkg:nuget/System.Reflection.Emit.Lightweight@4.6.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "d9a08731-07cd-4fd2-a4c8-d827b5a3b813", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "d9a08731-07cd-4fd2-a4c8-d827b5a3b813", + "element_result": "System.Security.Cryptography.Algorithms", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "d9a08731-07cd-4fd2-a4c8-d827b5a3b813", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "d9a08731-07cd-4fd2-a4c8-d827b5a3b813", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "d9a08731-07cd-4fd2-a4c8-d827b5a3b813", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "d9a08731-07cd-4fd2-a4c8-d827b5a3b813", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "d9a08731-07cd-4fd2-a4c8-d827b5a3b813", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "d9a08731-07cd-4fd2-a4c8-d827b5a3b813", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "d9a08731-07cd-4fd2-a4c8-d827b5a3b813", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "d9a08731-07cd-4fd2-a4c8-d827b5a3b813", + "element_result": "pkg:nuget/System.Security.Cryptography.Algorithms@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "4c9c691a-9b66-46ec-b047-df33af288c60", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "4c9c691a-9b66-46ec-b047-df33af288c60", + "element_result": "runtime.win.System.IO.FileSystem", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "4c9c691a-9b66-46ec-b047-df33af288c60", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "4c9c691a-9b66-46ec-b047-df33af288c60", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "4c9c691a-9b66-46ec-b047-df33af288c60", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "4c9c691a-9b66-46ec-b047-df33af288c60", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "4c9c691a-9b66-46ec-b047-df33af288c60", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "4c9c691a-9b66-46ec-b047-df33af288c60", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "4c9c691a-9b66-46ec-b047-df33af288c60", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "4c9c691a-9b66-46ec-b047-df33af288c60", + "element_result": "pkg:nuget/runtime.win.System.IO.FileSystem@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "8097dba9-b090-44ea-b0ec-fea0d16730b7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "8097dba9-b090-44ea-b0ec-fea0d16730b7", + "element_result": "Microsoft.Identity.Web.Certificate", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "8097dba9-b090-44ea-b0ec-fea0d16730b7", + "element_result": "1.26.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "8097dba9-b090-44ea-b0ec-fea0d16730b7", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "8097dba9-b090-44ea-b0ec-fea0d16730b7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "8097dba9-b090-44ea-b0ec-fea0d16730b7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "8097dba9-b090-44ea-b0ec-fea0d16730b7", + "element_result": "https://github.com/AzureAD/microsoft-identity-web", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "8097dba9-b090-44ea-b0ec-fea0d16730b7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "8097dba9-b090-44ea-b0ec-fea0d16730b7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "8097dba9-b090-44ea-b0ec-fea0d16730b7", + "element_result": "pkg:nuget/Microsoft.Identity.Web.Certificate@1.26.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "394d40cf-b6b6-4e90-a81e-d7788f957592", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "394d40cf-b6b6-4e90-a81e-d7788f957592", + "element_result": "System.IO.Compression", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "394d40cf-b6b6-4e90-a81e-d7788f957592", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "394d40cf-b6b6-4e90-a81e-d7788f957592", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "394d40cf-b6b6-4e90-a81e-d7788f957592", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "394d40cf-b6b6-4e90-a81e-d7788f957592", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "394d40cf-b6b6-4e90-a81e-d7788f957592", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "394d40cf-b6b6-4e90-a81e-d7788f957592", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "394d40cf-b6b6-4e90-a81e-d7788f957592", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "394d40cf-b6b6-4e90-a81e-d7788f957592", + "element_result": "pkg:nuget/System.IO.Compression@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "03fefac2-4bc5-4593-bd77-807b35d55b39", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "03fefac2-4bc5-4593-bd77-807b35d55b39", + "element_result": "System.Runtime.InteropServices.RuntimeInformation", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "03fefac2-4bc5-4593-bd77-807b35d55b39", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "03fefac2-4bc5-4593-bd77-807b35d55b39", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "03fefac2-4bc5-4593-bd77-807b35d55b39", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "03fefac2-4bc5-4593-bd77-807b35d55b39", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "03fefac2-4bc5-4593-bd77-807b35d55b39", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "03fefac2-4bc5-4593-bd77-807b35d55b39", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "03fefac2-4bc5-4593-bd77-807b35d55b39", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "03fefac2-4bc5-4593-bd77-807b35d55b39", + "element_result": "pkg:nuget/System.Runtime.InteropServices.RuntimeInformation@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "04a21973-a7e8-436a-8be4-7fe105d19605", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "04a21973-a7e8-436a-8be4-7fe105d19605", + "element_result": "Azure.Core", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "04a21973-a7e8-436a-8be4-7fe105d19605", + "element_result": "1.22.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "04a21973-a7e8-436a-8be4-7fe105d19605", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "04a21973-a7e8-436a-8be4-7fe105d19605", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "04a21973-a7e8-436a-8be4-7fe105d19605", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "04a21973-a7e8-436a-8be4-7fe105d19605", + "element_result": "https://github.com/Azure/azure-sdk-for-net", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "04a21973-a7e8-436a-8be4-7fe105d19605", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "04a21973-a7e8-436a-8be4-7fe105d19605", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "04a21973-a7e8-436a-8be4-7fe105d19605", + "element_result": "pkg:nuget/Azure.Core@1.22.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "6eb7fb51-3357-47a1-b6cf-a1989c2e2767", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "6eb7fb51-3357-47a1-b6cf-a1989c2e2767", + "element_result": "NuGet.Versioning", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "6eb7fb51-3357-47a1-b6cf-a1989c2e2767", + "element_result": "5.9.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "6eb7fb51-3357-47a1-b6cf-a1989c2e2767", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "6eb7fb51-3357-47a1-b6cf-a1989c2e2767", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "6eb7fb51-3357-47a1-b6cf-a1989c2e2767", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "6eb7fb51-3357-47a1-b6cf-a1989c2e2767", + "element_result": "https://github.com/NuGet/NuGet.Client", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "6eb7fb51-3357-47a1-b6cf-a1989c2e2767", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "6eb7fb51-3357-47a1-b6cf-a1989c2e2767", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "6eb7fb51-3357-47a1-b6cf-a1989c2e2767", + "element_result": "pkg:nuget/NuGet.Versioning@5.9.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "ae0a4e73-966d-4d6b-b5f3-5e38b696d102", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "ae0a4e73-966d-4d6b-b5f3-5e38b696d102", + "element_result": "runtime.any.System.Text.Encoding.Extensions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "ae0a4e73-966d-4d6b-b5f3-5e38b696d102", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "ae0a4e73-966d-4d6b-b5f3-5e38b696d102", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "ae0a4e73-966d-4d6b-b5f3-5e38b696d102", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "ae0a4e73-966d-4d6b-b5f3-5e38b696d102", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "ae0a4e73-966d-4d6b-b5f3-5e38b696d102", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "ae0a4e73-966d-4d6b-b5f3-5e38b696d102", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "ae0a4e73-966d-4d6b-b5f3-5e38b696d102", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "ae0a4e73-966d-4d6b-b5f3-5e38b696d102", + "element_result": "pkg:nuget/runtime.any.System.Text.Encoding.Extensions@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "b3552158-1fbf-4271-8155-b607454eea50", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "b3552158-1fbf-4271-8155-b607454eea50", + "element_result": "Microsoft.Build.Framework", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "b3552158-1fbf-4271-8155-b607454eea50", + "element_result": "16.9.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "b3552158-1fbf-4271-8155-b607454eea50", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "b3552158-1fbf-4271-8155-b607454eea50", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "b3552158-1fbf-4271-8155-b607454eea50", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "b3552158-1fbf-4271-8155-b607454eea50", + "element_result": "https://github.com/microsoft/msbuild", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "b3552158-1fbf-4271-8155-b607454eea50", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "b3552158-1fbf-4271-8155-b607454eea50", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "b3552158-1fbf-4271-8155-b607454eea50", + "element_result": "pkg:nuget/Microsoft.Build.Framework@16.9.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "5eccab91-1fb1-4358-b25a-6311149204eb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "5eccab91-1fb1-4358-b25a-6311149204eb", + "element_result": "Microsoft.Extensions.Primitives", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "5eccab91-1fb1-4358-b25a-6311149204eb", + "element_result": "6.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "5eccab91-1fb1-4358-b25a-6311149204eb", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "5eccab91-1fb1-4358-b25a-6311149204eb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "5eccab91-1fb1-4358-b25a-6311149204eb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "5eccab91-1fb1-4358-b25a-6311149204eb", + "element_result": "https://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "5eccab91-1fb1-4358-b25a-6311149204eb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "5eccab91-1fb1-4358-b25a-6311149204eb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "5eccab91-1fb1-4358-b25a-6311149204eb", + "element_result": "pkg:nuget/Microsoft.Extensions.Primitives@6.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "daa06646-d38f-4945-aaf4-d4a5be5ae3b4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "daa06646-d38f-4945-aaf4-d4a5be5ae3b4", + "element_result": "Microsoft.IdentityModel.Tokens", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "daa06646-d38f-4945-aaf4-d4a5be5ae3b4", + "element_result": "6.25.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "daa06646-d38f-4945-aaf4-d4a5be5ae3b4", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "daa06646-d38f-4945-aaf4-d4a5be5ae3b4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "daa06646-d38f-4945-aaf4-d4a5be5ae3b4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "daa06646-d38f-4945-aaf4-d4a5be5ae3b4", + "element_result": "https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "daa06646-d38f-4945-aaf4-d4a5be5ae3b4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "daa06646-d38f-4945-aaf4-d4a5be5ae3b4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "daa06646-d38f-4945-aaf4-d4a5be5ae3b4", + "element_result": "pkg:nuget/Microsoft.IdentityModel.Tokens@6.25.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "3eeea4ec-3fdd-4475-9ab0-eef0aa85f965", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "3eeea4ec-3fdd-4475-9ab0-eef0aa85f965", + "element_result": "NuGet.Protocol", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "3eeea4ec-3fdd-4475-9ab0-eef0aa85f965", + "element_result": "5.9.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "3eeea4ec-3fdd-4475-9ab0-eef0aa85f965", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "3eeea4ec-3fdd-4475-9ab0-eef0aa85f965", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "3eeea4ec-3fdd-4475-9ab0-eef0aa85f965", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "3eeea4ec-3fdd-4475-9ab0-eef0aa85f965", + "element_result": "https://github.com/NuGet/NuGet.Client", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "3eeea4ec-3fdd-4475-9ab0-eef0aa85f965", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "3eeea4ec-3fdd-4475-9ab0-eef0aa85f965", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "3eeea4ec-3fdd-4475-9ab0-eef0aa85f965", + "element_result": "pkg:nuget/NuGet.Protocol@5.9.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "7ebcc901-891f-4340-9629-acd38ab56898", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "7ebcc901-891f-4340-9629-acd38ab56898", + "element_result": "runtime.any.System.Resources.ResourceManager", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "7ebcc901-891f-4340-9629-acd38ab56898", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "7ebcc901-891f-4340-9629-acd38ab56898", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "7ebcc901-891f-4340-9629-acd38ab56898", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "7ebcc901-891f-4340-9629-acd38ab56898", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "7ebcc901-891f-4340-9629-acd38ab56898", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "7ebcc901-891f-4340-9629-acd38ab56898", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "7ebcc901-891f-4340-9629-acd38ab56898", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "7ebcc901-891f-4340-9629-acd38ab56898", + "element_result": "pkg:nuget/runtime.any.System.Resources.ResourceManager@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "8685bad5-59cd-4ab2-b72c-2e93673b9bba", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "8685bad5-59cd-4ab2-b72c-2e93673b9bba", + "element_result": "runtime.win.System.Runtime.Extensions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "8685bad5-59cd-4ab2-b72c-2e93673b9bba", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "8685bad5-59cd-4ab2-b72c-2e93673b9bba", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "8685bad5-59cd-4ab2-b72c-2e93673b9bba", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "8685bad5-59cd-4ab2-b72c-2e93673b9bba", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "8685bad5-59cd-4ab2-b72c-2e93673b9bba", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "8685bad5-59cd-4ab2-b72c-2e93673b9bba", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "8685bad5-59cd-4ab2-b72c-2e93673b9bba", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "8685bad5-59cd-4ab2-b72c-2e93673b9bba", + "element_result": "pkg:nuget/runtime.win.System.Runtime.Extensions@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "d8637fe1-322b-4c42-b72b-c0b431a1da69", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "d8637fe1-322b-4c42-b72b-c0b431a1da69", + "element_result": "Microsoft.EntityFrameworkCore.Relational", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "d8637fe1-322b-4c42-b72b-c0b431a1da69", + "element_result": "6.0.4", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "d8637fe1-322b-4c42-b72b-c0b431a1da69", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "d8637fe1-322b-4c42-b72b-c0b431a1da69", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "d8637fe1-322b-4c42-b72b-c0b431a1da69", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "d8637fe1-322b-4c42-b72b-c0b431a1da69", + "element_result": "https://github.com/dotnet/efcore", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "d8637fe1-322b-4c42-b72b-c0b431a1da69", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "d8637fe1-322b-4c42-b72b-c0b431a1da69", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "d8637fe1-322b-4c42-b72b-c0b431a1da69", + "element_result": "pkg:nuget/Microsoft.EntityFrameworkCore.Relational@6.0.4", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "13b65970-06ac-4734-916a-6b6f2a92ba60", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "13b65970-06ac-4734-916a-6b6f2a92ba60", + "element_result": "Microsoft.AspNetCore.Cryptography.Internal", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "13b65970-06ac-4734-916a-6b6f2a92ba60", + "element_result": "5.0.8", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "13b65970-06ac-4734-916a-6b6f2a92ba60", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "13b65970-06ac-4734-916a-6b6f2a92ba60", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "13b65970-06ac-4734-916a-6b6f2a92ba60", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "13b65970-06ac-4734-916a-6b6f2a92ba60", + "element_result": "https://github.com/dotnet/aspnetcore", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "13b65970-06ac-4734-916a-6b6f2a92ba60", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "13b65970-06ac-4734-916a-6b6f2a92ba60", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "13b65970-06ac-4734-916a-6b6f2a92ba60", + "element_result": "pkg:nuget/Microsoft.AspNetCore.Cryptography.Internal@5.0.8", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "b1d056cf-8bd1-4920-bc52-c47e9438f7e4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "b1d056cf-8bd1-4920-bc52-c47e9438f7e4", + "element_result": "Microsoft.CSharp", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "b1d056cf-8bd1-4920-bc52-c47e9438f7e4", + "element_result": "4.5.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "b1d056cf-8bd1-4920-bc52-c47e9438f7e4", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "b1d056cf-8bd1-4920-bc52-c47e9438f7e4", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "b1d056cf-8bd1-4920-bc52-c47e9438f7e4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "b1d056cf-8bd1-4920-bc52-c47e9438f7e4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "b1d056cf-8bd1-4920-bc52-c47e9438f7e4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "b1d056cf-8bd1-4920-bc52-c47e9438f7e4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "b1d056cf-8bd1-4920-bc52-c47e9438f7e4", + "element_result": "pkg:nuget/Microsoft.CSharp@4.5.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "a63c438d-ac11-4942-8a69-bd4841b3db66", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "a63c438d-ac11-4942-8a69-bd4841b3db66", + "element_result": "Microsoft.IdentityModel.JsonWebTokens", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "a63c438d-ac11-4942-8a69-bd4841b3db66", + "element_result": "6.25.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "a63c438d-ac11-4942-8a69-bd4841b3db66", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "a63c438d-ac11-4942-8a69-bd4841b3db66", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "a63c438d-ac11-4942-8a69-bd4841b3db66", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "a63c438d-ac11-4942-8a69-bd4841b3db66", + "element_result": "https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "a63c438d-ac11-4942-8a69-bd4841b3db66", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "a63c438d-ac11-4942-8a69-bd4841b3db66", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "a63c438d-ac11-4942-8a69-bd4841b3db66", + "element_result": "pkg:nuget/Microsoft.IdentityModel.JsonWebTokens@6.25.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "7333c9bc-386d-4159-9059-f40f98d1f70f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "7333c9bc-386d-4159-9059-f40f98d1f70f", + "element_result": "System.Collections", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "7333c9bc-386d-4159-9059-f40f98d1f70f", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "7333c9bc-386d-4159-9059-f40f98d1f70f", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "7333c9bc-386d-4159-9059-f40f98d1f70f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "7333c9bc-386d-4159-9059-f40f98d1f70f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "7333c9bc-386d-4159-9059-f40f98d1f70f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "7333c9bc-386d-4159-9059-f40f98d1f70f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "7333c9bc-386d-4159-9059-f40f98d1f70f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "7333c9bc-386d-4159-9059-f40f98d1f70f", + "element_result": "pkg:nuget/System.Collections@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "e6141087-8c9d-4b1a-9c10-cbc199868fe6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "e6141087-8c9d-4b1a-9c10-cbc199868fe6", + "element_result": "System.Globalization.Calendars", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "e6141087-8c9d-4b1a-9c10-cbc199868fe6", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "e6141087-8c9d-4b1a-9c10-cbc199868fe6", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "e6141087-8c9d-4b1a-9c10-cbc199868fe6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "e6141087-8c9d-4b1a-9c10-cbc199868fe6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "e6141087-8c9d-4b1a-9c10-cbc199868fe6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "e6141087-8c9d-4b1a-9c10-cbc199868fe6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "e6141087-8c9d-4b1a-9c10-cbc199868fe6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "e6141087-8c9d-4b1a-9c10-cbc199868fe6", + "element_result": "pkg:nuget/System.Globalization.Calendars@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "d2d9980d-3150-4694-81fe-11b52220b2cb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "d2d9980d-3150-4694-81fe-11b52220b2cb", + "element_result": "System.Text.RegularExpressions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "d2d9980d-3150-4694-81fe-11b52220b2cb", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "d2d9980d-3150-4694-81fe-11b52220b2cb", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "d2d9980d-3150-4694-81fe-11b52220b2cb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "d2d9980d-3150-4694-81fe-11b52220b2cb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "d2d9980d-3150-4694-81fe-11b52220b2cb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "d2d9980d-3150-4694-81fe-11b52220b2cb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "d2d9980d-3150-4694-81fe-11b52220b2cb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "d2d9980d-3150-4694-81fe-11b52220b2cb", + "element_result": "pkg:nuget/System.Text.RegularExpressions@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "403bf5f8-0265-4ce6-a2ab-8b866ba67f51", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "403bf5f8-0265-4ce6-a2ab-8b866ba67f51", + "element_result": "CommunityToolkit.WinUI.UI.Controls.Markdown", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "403bf5f8-0265-4ce6-a2ab-8b866ba67f51", + "element_result": "7.1.2", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "403bf5f8-0265-4ce6-a2ab-8b866ba67f51", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "403bf5f8-0265-4ce6-a2ab-8b866ba67f51", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "403bf5f8-0265-4ce6-a2ab-8b866ba67f51", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "403bf5f8-0265-4ce6-a2ab-8b866ba67f51", + "element_result": "https://github.com/CommunityToolkit/WindowsCommunityToolkit", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "403bf5f8-0265-4ce6-a2ab-8b866ba67f51", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "403bf5f8-0265-4ce6-a2ab-8b866ba67f51", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "403bf5f8-0265-4ce6-a2ab-8b866ba67f51", + "element_result": "pkg:nuget/CommunityToolkit.WinUI.UI.Controls.Markdown@7.1.2", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "179eba0c-ff11-4a67-b754-88a228c14d24", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "179eba0c-ff11-4a67-b754-88a228c14d24", + "element_result": "Microsoft.EntityFrameworkCore", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "179eba0c-ff11-4a67-b754-88a228c14d24", + "element_result": "6.0.5", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "179eba0c-ff11-4a67-b754-88a228c14d24", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "179eba0c-ff11-4a67-b754-88a228c14d24", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "179eba0c-ff11-4a67-b754-88a228c14d24", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "179eba0c-ff11-4a67-b754-88a228c14d24", + "element_result": "https://github.com/dotnet/efcore", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "179eba0c-ff11-4a67-b754-88a228c14d24", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "179eba0c-ff11-4a67-b754-88a228c14d24", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "179eba0c-ff11-4a67-b754-88a228c14d24", + "element_result": "pkg:nuget/Microsoft.EntityFrameworkCore@6.0.5", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "5e5074b0-cf18-4d15-9a00-4e6854f881ef", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "5e5074b0-cf18-4d15-9a00-4e6854f881ef", + "element_result": "Microsoft.Extensions.DependencyModel", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "5e5074b0-cf18-4d15-9a00-4e6854f881ef", + "element_result": "6.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "5e5074b0-cf18-4d15-9a00-4e6854f881ef", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "5e5074b0-cf18-4d15-9a00-4e6854f881ef", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "5e5074b0-cf18-4d15-9a00-4e6854f881ef", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "5e5074b0-cf18-4d15-9a00-4e6854f881ef", + "element_result": "https://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "5e5074b0-cf18-4d15-9a00-4e6854f881ef", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "5e5074b0-cf18-4d15-9a00-4e6854f881ef", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "5e5074b0-cf18-4d15-9a00-4e6854f881ef", + "element_result": "pkg:nuget/Microsoft.Extensions.DependencyModel@6.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "119c0997-bd75-4a92-8a97-2b35ee35ab8c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "119c0997-bd75-4a92-8a97-2b35ee35ab8c", + "element_result": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "119c0997-bd75-4a92-8a97-2b35ee35ab8c", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "119c0997-bd75-4a92-8a97-2b35ee35ab8c", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "119c0997-bd75-4a92-8a97-2b35ee35ab8c", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "119c0997-bd75-4a92-8a97-2b35ee35ab8c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "119c0997-bd75-4a92-8a97-2b35ee35ab8c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "119c0997-bd75-4a92-8a97-2b35ee35ab8c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "119c0997-bd75-4a92-8a97-2b35ee35ab8c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "119c0997-bd75-4a92-8a97-2b35ee35ab8c", + "element_result": "pkg:nuget/runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "bb2c5fde-5e02-4afa-a578-1141dcfb69ff", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "bb2c5fde-5e02-4afa-a578-1141dcfb69ff", + "element_result": "System.Security.Cryptography.Pkcs", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "bb2c5fde-5e02-4afa-a578-1141dcfb69ff", + "element_result": "6.0.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "bb2c5fde-5e02-4afa-a578-1141dcfb69ff", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "bb2c5fde-5e02-4afa-a578-1141dcfb69ff", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "bb2c5fde-5e02-4afa-a578-1141dcfb69ff", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "bb2c5fde-5e02-4afa-a578-1141dcfb69ff", + "element_result": "https://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "bb2c5fde-5e02-4afa-a578-1141dcfb69ff", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "bb2c5fde-5e02-4afa-a578-1141dcfb69ff", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "bb2c5fde-5e02-4afa-a578-1141dcfb69ff", + "element_result": "pkg:nuget/System.Security.Cryptography.Pkcs@6.0.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "a9a47452-2920-42a3-8e32-f7600aa1e1e7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "a9a47452-2920-42a3-8e32-f7600aa1e1e7", + "element_result": "Microsoft.DiaSymReader", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "a9a47452-2920-42a3-8e32-f7600aa1e1e7", + "element_result": "1.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "a9a47452-2920-42a3-8e32-f7600aa1e1e7", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "a9a47452-2920-42a3-8e32-f7600aa1e1e7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "a9a47452-2920-42a3-8e32-f7600aa1e1e7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "a9a47452-2920-42a3-8e32-f7600aa1e1e7", + "element_result": "https://github.com/dotnet/symreader.git", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "a9a47452-2920-42a3-8e32-f7600aa1e1e7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "a9a47452-2920-42a3-8e32-f7600aa1e1e7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "a9a47452-2920-42a3-8e32-f7600aa1e1e7", + "element_result": "pkg:nuget/Microsoft.DiaSymReader@1.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "fbe5fb2e-38e9-4243-9184-f29349843f2a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "fbe5fb2e-38e9-4243-9184-f29349843f2a", + "element_result": "Microsoft.CodeAnalysis.CSharp.Scripting", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "fbe5fb2e-38e9-4243-9184-f29349843f2a", + "element_result": "4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "fbe5fb2e-38e9-4243-9184-f29349843f2a", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "fbe5fb2e-38e9-4243-9184-f29349843f2a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "fbe5fb2e-38e9-4243-9184-f29349843f2a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "fbe5fb2e-38e9-4243-9184-f29349843f2a", + "element_result": "https://github.com/dotnet/roslyn", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "fbe5fb2e-38e9-4243-9184-f29349843f2a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "fbe5fb2e-38e9-4243-9184-f29349843f2a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "fbe5fb2e-38e9-4243-9184-f29349843f2a", + "element_result": "pkg:nuget/Microsoft.CodeAnalysis.CSharp.Scripting@4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "dbd585d5-ac6d-4c61-bdf5-4762d49c50d1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "dbd585d5-ac6d-4c61-bdf5-4762d49c50d1", + "element_result": "Microsoft.IdentityModel.Logging", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "dbd585d5-ac6d-4c61-bdf5-4762d49c50d1", + "element_result": "6.25.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "dbd585d5-ac6d-4c61-bdf5-4762d49c50d1", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "dbd585d5-ac6d-4c61-bdf5-4762d49c50d1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "dbd585d5-ac6d-4c61-bdf5-4762d49c50d1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "dbd585d5-ac6d-4c61-bdf5-4762d49c50d1", + "element_result": "https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "dbd585d5-ac6d-4c61-bdf5-4762d49c50d1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "dbd585d5-ac6d-4c61-bdf5-4762d49c50d1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "dbd585d5-ac6d-4c61-bdf5-4762d49c50d1", + "element_result": "pkg:nuget/Microsoft.IdentityModel.Logging@6.25.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "0942e02c-042b-458b-b97b-453681bca39f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "0942e02c-042b-458b-b97b-453681bca39f", + "element_result": "Microsoft.NETCore.Platforms", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "0942e02c-042b-458b-b97b-453681bca39f", + "element_result": "5.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "0942e02c-042b-458b-b97b-453681bca39f", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "0942e02c-042b-458b-b97b-453681bca39f", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "0942e02c-042b-458b-b97b-453681bca39f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "0942e02c-042b-458b-b97b-453681bca39f", + "element_result": "git://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "0942e02c-042b-458b-b97b-453681bca39f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "0942e02c-042b-458b-b97b-453681bca39f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "0942e02c-042b-458b-b97b-453681bca39f", + "element_result": "pkg:nuget/Microsoft.NETCore.Platforms@5.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "d1e8a7fb-1f52-4133-a5a0-2e7ed2d68939", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "d1e8a7fb-1f52-4133-a5a0-2e7ed2d68939", + "element_result": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "d1e8a7fb-1f52-4133-a5a0-2e7ed2d68939", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "d1e8a7fb-1f52-4133-a5a0-2e7ed2d68939", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "d1e8a7fb-1f52-4133-a5a0-2e7ed2d68939", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "d1e8a7fb-1f52-4133-a5a0-2e7ed2d68939", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "d1e8a7fb-1f52-4133-a5a0-2e7ed2d68939", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "d1e8a7fb-1f52-4133-a5a0-2e7ed2d68939", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "d1e8a7fb-1f52-4133-a5a0-2e7ed2d68939", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "d1e8a7fb-1f52-4133-a5a0-2e7ed2d68939", + "element_result": "pkg:nuget/runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "810421b5-fd26-4d53-8416-335f04e4e42e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "810421b5-fd26-4d53-8416-335f04e4e42e", + "element_result": "Humanizer.Core", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "810421b5-fd26-4d53-8416-335f04e4e42e", + "element_result": "2.2.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "810421b5-fd26-4d53-8416-335f04e4e42e", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "810421b5-fd26-4d53-8416-335f04e4e42e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "810421b5-fd26-4d53-8416-335f04e4e42e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "810421b5-fd26-4d53-8416-335f04e4e42e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "810421b5-fd26-4d53-8416-335f04e4e42e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "810421b5-fd26-4d53-8416-335f04e4e42e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "810421b5-fd26-4d53-8416-335f04e4e42e", + "element_result": "pkg:nuget/Humanizer.Core@2.2.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "6a5abce7-4dff-4355-b138-197b15bb5481", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "6a5abce7-4dff-4355-b138-197b15bb5481", + "element_result": "Microsoft.CodeAnalysis.Scripting.Common", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "6a5abce7-4dff-4355-b138-197b15bb5481", + "element_result": "4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "6a5abce7-4dff-4355-b138-197b15bb5481", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "6a5abce7-4dff-4355-b138-197b15bb5481", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "6a5abce7-4dff-4355-b138-197b15bb5481", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "6a5abce7-4dff-4355-b138-197b15bb5481", + "element_result": "https://github.com/dotnet/roslyn", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "6a5abce7-4dff-4355-b138-197b15bb5481", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "6a5abce7-4dff-4355-b138-197b15bb5481", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "6a5abce7-4dff-4355-b138-197b15bb5481", + "element_result": "pkg:nuget/Microsoft.CodeAnalysis.Scripting.Common@4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "c616c966-da56-41b0-90a3-40a14fd3f211", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "c616c966-da56-41b0-90a3-40a14fd3f211", + "element_result": "Microsoft.AspNetCore.DataProtection.Abstractions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "c616c966-da56-41b0-90a3-40a14fd3f211", + "element_result": "5.0.8", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "c616c966-da56-41b0-90a3-40a14fd3f211", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "c616c966-da56-41b0-90a3-40a14fd3f211", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "c616c966-da56-41b0-90a3-40a14fd3f211", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "c616c966-da56-41b0-90a3-40a14fd3f211", + "element_result": "https://github.com/dotnet/aspnetcore", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "c616c966-da56-41b0-90a3-40a14fd3f211", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "c616c966-da56-41b0-90a3-40a14fd3f211", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "c616c966-da56-41b0-90a3-40a14fd3f211", + "element_result": "pkg:nuget/Microsoft.AspNetCore.DataProtection.Abstractions@5.0.8", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "eafd33c4-1919-42a3-9fe9-ccab0fd484cc", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "eafd33c4-1919-42a3-9fe9-ccab0fd484cc", + "element_result": "Microsoft.CodeAnalysis.Razor", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "eafd33c4-1919-42a3-9fe9-ccab0fd484cc", + "element_result": "6.0.0-rc.1.21452.15", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "eafd33c4-1919-42a3-9fe9-ccab0fd484cc", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "eafd33c4-1919-42a3-9fe9-ccab0fd484cc", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "eafd33c4-1919-42a3-9fe9-ccab0fd484cc", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "eafd33c4-1919-42a3-9fe9-ccab0fd484cc", + "element_result": "https://github.com/dotnet/aspnetcore", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "eafd33c4-1919-42a3-9fe9-ccab0fd484cc", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "eafd33c4-1919-42a3-9fe9-ccab0fd484cc", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "eafd33c4-1919-42a3-9fe9-ccab0fd484cc", + "element_result": "pkg:nuget/Microsoft.CodeAnalysis.Razor@6.0.0-rc.1.21452.15", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "70ae20af-e5f2-49c2-b1e9-4d3e7c90bb5b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "70ae20af-e5f2-49c2-b1e9-4d3e7c90bb5b", + "element_result": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "70ae20af-e5f2-49c2-b1e9-4d3e7c90bb5b", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "70ae20af-e5f2-49c2-b1e9-4d3e7c90bb5b", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "70ae20af-e5f2-49c2-b1e9-4d3e7c90bb5b", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "70ae20af-e5f2-49c2-b1e9-4d3e7c90bb5b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "70ae20af-e5f2-49c2-b1e9-4d3e7c90bb5b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "70ae20af-e5f2-49c2-b1e9-4d3e7c90bb5b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "70ae20af-e5f2-49c2-b1e9-4d3e7c90bb5b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "70ae20af-e5f2-49c2-b1e9-4d3e7c90bb5b", + "element_result": "pkg:nuget/runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "9e4513b4-e63f-4807-b535-5290386c9775", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "9e4513b4-e63f-4807-b535-5290386c9775", + "element_result": "System.Reflection.Emit.Lightweight", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "9e4513b4-e63f-4807-b535-5290386c9775", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "9e4513b4-e63f-4807-b535-5290386c9775", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "9e4513b4-e63f-4807-b535-5290386c9775", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "9e4513b4-e63f-4807-b535-5290386c9775", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "9e4513b4-e63f-4807-b535-5290386c9775", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "9e4513b4-e63f-4807-b535-5290386c9775", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "9e4513b4-e63f-4807-b535-5290386c9775", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "9e4513b4-e63f-4807-b535-5290386c9775", + "element_result": "pkg:nuget/System.Reflection.Emit.Lightweight@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "f367c079-7d13-4bb8-a0ee-7e7e17cc79b3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "f367c079-7d13-4bb8-a0ee-7e7e17cc79b3", + "element_result": "System.Security.Principal", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "f367c079-7d13-4bb8-a0ee-7e7e17cc79b3", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "f367c079-7d13-4bb8-a0ee-7e7e17cc79b3", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "f367c079-7d13-4bb8-a0ee-7e7e17cc79b3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "f367c079-7d13-4bb8-a0ee-7e7e17cc79b3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "f367c079-7d13-4bb8-a0ee-7e7e17cc79b3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "f367c079-7d13-4bb8-a0ee-7e7e17cc79b3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "f367c079-7d13-4bb8-a0ee-7e7e17cc79b3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "f367c079-7d13-4bb8-a0ee-7e7e17cc79b3", + "element_result": "pkg:nuget/System.Security.Principal@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "ae8c7187-c6fa-4415-b8e3-e324675e972b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "ae8c7187-c6fa-4415-b8e3-e324675e972b", + "element_result": "System.Text.Encoding", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "ae8c7187-c6fa-4415-b8e3-e324675e972b", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "ae8c7187-c6fa-4415-b8e3-e324675e972b", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "ae8c7187-c6fa-4415-b8e3-e324675e972b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "ae8c7187-c6fa-4415-b8e3-e324675e972b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "ae8c7187-c6fa-4415-b8e3-e324675e972b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "ae8c7187-c6fa-4415-b8e3-e324675e972b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "ae8c7187-c6fa-4415-b8e3-e324675e972b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "ae8c7187-c6fa-4415-b8e3-e324675e972b", + "element_result": "pkg:nuget/System.Text.Encoding@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "f30538a0-3189-4ecc-bdaf-645dcd0f4b3a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "f30538a0-3189-4ecc-bdaf-645dcd0f4b3a", + "element_result": "Microsoft.Bcl.AsyncInterfaces", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "f30538a0-3189-4ecc-bdaf-645dcd0f4b3a", + "element_result": "1.1.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "f30538a0-3189-4ecc-bdaf-645dcd0f4b3a", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "f30538a0-3189-4ecc-bdaf-645dcd0f4b3a", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "f30538a0-3189-4ecc-bdaf-645dcd0f4b3a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "f30538a0-3189-4ecc-bdaf-645dcd0f4b3a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "f30538a0-3189-4ecc-bdaf-645dcd0f4b3a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "f30538a0-3189-4ecc-bdaf-645dcd0f4b3a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "f30538a0-3189-4ecc-bdaf-645dcd0f4b3a", + "element_result": "pkg:nuget/Microsoft.Bcl.AsyncInterfaces@1.1.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "18afe5d4-ac40-4865-8bfb-3e5dacf88817", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "18afe5d4-ac40-4865-8bfb-3e5dacf88817", + "element_result": "runtime.win7-x86.runtime.native.System.IO.Compression", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "18afe5d4-ac40-4865-8bfb-3e5dacf88817", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "18afe5d4-ac40-4865-8bfb-3e5dacf88817", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "18afe5d4-ac40-4865-8bfb-3e5dacf88817", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "18afe5d4-ac40-4865-8bfb-3e5dacf88817", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "18afe5d4-ac40-4865-8bfb-3e5dacf88817", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "18afe5d4-ac40-4865-8bfb-3e5dacf88817", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "18afe5d4-ac40-4865-8bfb-3e5dacf88817", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "18afe5d4-ac40-4865-8bfb-3e5dacf88817", + "element_result": "pkg:nuget/runtime.win7-x86.runtime.native.System.IO.Compression@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "f4827937-ab7f-4311-9ac8-96ba56aa6683", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "f4827937-ab7f-4311-9ac8-96ba56aa6683", + "element_result": "System.Resources.Extensions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "f4827937-ab7f-4311-9ac8-96ba56aa6683", + "element_result": "4.6.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "f4827937-ab7f-4311-9ac8-96ba56aa6683", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "f4827937-ab7f-4311-9ac8-96ba56aa6683", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "f4827937-ab7f-4311-9ac8-96ba56aa6683", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "f4827937-ab7f-4311-9ac8-96ba56aa6683", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "f4827937-ab7f-4311-9ac8-96ba56aa6683", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "f4827937-ab7f-4311-9ac8-96ba56aa6683", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "f4827937-ab7f-4311-9ac8-96ba56aa6683", + "element_result": "pkg:nuget/System.Resources.Extensions@4.6.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "92f29a6f-1ab5-479f-a004-f19f62968c4d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "92f29a6f-1ab5-479f-a004-f19f62968c4d", + "element_result": "TigerVNC", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "92f29a6f-1ab5-479f-a004-f19f62968c4d", + "element_result": "1.12.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "92f29a6f-1ab5-479f-a004-f19f62968c4d", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "92f29a6f-1ab5-479f-a004-f19f62968c4d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "92f29a6f-1ab5-479f-a004-f19f62968c4d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "92f29a6f-1ab5-479f-a004-f19f62968c4d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "92f29a6f-1ab5-479f-a004-f19f62968c4d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "92f29a6f-1ab5-479f-a004-f19f62968c4d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "92f29a6f-1ab5-479f-a004-f19f62968c4d", + "element_result": "cpe:2.3:a:tigervnc:tigervnc:1.12.0:*:*:*:*:*:*:*", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "c81841f3-0137-4211-a3f2-2688cbc792cc", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "c81841f3-0137-4211-a3f2-2688cbc792cc", + "element_result": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "c81841f3-0137-4211-a3f2-2688cbc792cc", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "c81841f3-0137-4211-a3f2-2688cbc792cc", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "c81841f3-0137-4211-a3f2-2688cbc792cc", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "c81841f3-0137-4211-a3f2-2688cbc792cc", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "c81841f3-0137-4211-a3f2-2688cbc792cc", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "c81841f3-0137-4211-a3f2-2688cbc792cc", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "c81841f3-0137-4211-a3f2-2688cbc792cc", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "c81841f3-0137-4211-a3f2-2688cbc792cc", + "element_result": "pkg:nuget/runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "da703a02-6551-4733-b765-652dfc3fdc93", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "da703a02-6551-4733-b765-652dfc3fdc93", + "element_result": "Microsoft.Data.Sqlite.Core", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "da703a02-6551-4733-b765-652dfc3fdc93", + "element_result": "6.0.4", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "da703a02-6551-4733-b765-652dfc3fdc93", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "da703a02-6551-4733-b765-652dfc3fdc93", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "da703a02-6551-4733-b765-652dfc3fdc93", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "da703a02-6551-4733-b765-652dfc3fdc93", + "element_result": "https://github.com/dotnet/efcore", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "da703a02-6551-4733-b765-652dfc3fdc93", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "da703a02-6551-4733-b765-652dfc3fdc93", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "da703a02-6551-4733-b765-652dfc3fdc93", + "element_result": "pkg:nuget/Microsoft.Data.Sqlite.Core@6.0.4", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "0d7d862a-eb7d-40b9-9dd7-5cdd27639e9d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "0d7d862a-eb7d-40b9-9dd7-5cdd27639e9d", + "element_result": "Microsoft.Identity.Client.Extensions.Msal", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "0d7d862a-eb7d-40b9-9dd7-5cdd27639e9d", + "element_result": "2.20.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "0d7d862a-eb7d-40b9-9dd7-5cdd27639e9d", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "0d7d862a-eb7d-40b9-9dd7-5cdd27639e9d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "0d7d862a-eb7d-40b9-9dd7-5cdd27639e9d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "0d7d862a-eb7d-40b9-9dd7-5cdd27639e9d", + "element_result": "https://github.com/AzureAD/microsoft-authentication-extensions-for-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "0d7d862a-eb7d-40b9-9dd7-5cdd27639e9d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "0d7d862a-eb7d-40b9-9dd7-5cdd27639e9d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "0d7d862a-eb7d-40b9-9dd7-5cdd27639e9d", + "element_result": "pkg:nuget/Microsoft.Identity.Client.Extensions.Msal@2.20.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "8070c137-7d87-4ce3-bcee-55d3f75e4aa4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "8070c137-7d87-4ce3-bcee-55d3f75e4aa4", + "element_result": "NuGet.Configuration", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "8070c137-7d87-4ce3-bcee-55d3f75e4aa4", + "element_result": "5.9.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "8070c137-7d87-4ce3-bcee-55d3f75e4aa4", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "8070c137-7d87-4ce3-bcee-55d3f75e4aa4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "8070c137-7d87-4ce3-bcee-55d3f75e4aa4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "8070c137-7d87-4ce3-bcee-55d3f75e4aa4", + "element_result": "https://github.com/NuGet/NuGet.Client", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "8070c137-7d87-4ce3-bcee-55d3f75e4aa4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "8070c137-7d87-4ce3-bcee-55d3f75e4aa4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "8070c137-7d87-4ce3-bcee-55d3f75e4aa4", + "element_result": "pkg:nuget/NuGet.Configuration@5.9.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "edb414a8-60fc-4ff2-b48c-b1a6c94eab21", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "edb414a8-60fc-4ff2-b48c-b1a6c94eab21", + "element_result": "System.AppContext", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "edb414a8-60fc-4ff2-b48c-b1a6c94eab21", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "edb414a8-60fc-4ff2-b48c-b1a6c94eab21", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "edb414a8-60fc-4ff2-b48c-b1a6c94eab21", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "edb414a8-60fc-4ff2-b48c-b1a6c94eab21", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "edb414a8-60fc-4ff2-b48c-b1a6c94eab21", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "edb414a8-60fc-4ff2-b48c-b1a6c94eab21", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "edb414a8-60fc-4ff2-b48c-b1a6c94eab21", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "edb414a8-60fc-4ff2-b48c-b1a6c94eab21", + "element_result": "pkg:nuget/System.AppContext@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "c18ceaf2-99f8-4727-bc3b-d89b43911087", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "c18ceaf2-99f8-4727-bc3b-d89b43911087", + "element_result": "System.Reflection.TypeExtensions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "c18ceaf2-99f8-4727-bc3b-d89b43911087", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "c18ceaf2-99f8-4727-bc3b-d89b43911087", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "c18ceaf2-99f8-4727-bc3b-d89b43911087", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "c18ceaf2-99f8-4727-bc3b-d89b43911087", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "c18ceaf2-99f8-4727-bc3b-d89b43911087", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "c18ceaf2-99f8-4727-bc3b-d89b43911087", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "c18ceaf2-99f8-4727-bc3b-d89b43911087", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "c18ceaf2-99f8-4727-bc3b-d89b43911087", + "element_result": "pkg:nuget/System.Reflection.TypeExtensions@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "559e1cab-3077-47ed-b66b-42e16a35d7c3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "559e1cab-3077-47ed-b66b-42e16a35d7c3", + "element_result": "System.Text.Encodings.Web", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "559e1cab-3077-47ed-b66b-42e16a35d7c3", + "element_result": "6.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "559e1cab-3077-47ed-b66b-42e16a35d7c3", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "559e1cab-3077-47ed-b66b-42e16a35d7c3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "559e1cab-3077-47ed-b66b-42e16a35d7c3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "559e1cab-3077-47ed-b66b-42e16a35d7c3", + "element_result": "https://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "559e1cab-3077-47ed-b66b-42e16a35d7c3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "559e1cab-3077-47ed-b66b-42e16a35d7c3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "559e1cab-3077-47ed-b66b-42e16a35d7c3", + "element_result": "pkg:nuget/System.Text.Encodings.Web@6.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "c8df8d14-32c3-4beb-b396-a5f1905ce6ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "c8df8d14-32c3-4beb-b396-a5f1905ce6ed", + "element_result": "Windows 10", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "c8df8d14-32c3-4beb-b396-a5f1905ce6ed", + "element_result": "21H2", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "c8df8d14-32c3-4beb-b396-a5f1905ce6ed", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "c8df8d14-32c3-4beb-b396-a5f1905ce6ed", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "c8df8d14-32c3-4beb-b396-a5f1905ce6ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "c8df8d14-32c3-4beb-b396-a5f1905ce6ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "c8df8d14-32c3-4beb-b396-a5f1905ce6ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "c8df8d14-32c3-4beb-b396-a5f1905ce6ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "c8df8d14-32c3-4beb-b396-a5f1905ce6ed", + "element_result": "cpe:2.3:o:microsoft:windows_10_21h2:10.0.19044.2604:*:*:*:*:*:x64:*", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "db2a151e-204b-43e5-8871-f8625f74a376", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "db2a151e-204b-43e5-8871-f8625f74a376", + "element_result": "Microsoft.CodeAnalysis.CSharp", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "db2a151e-204b-43e5-8871-f8625f74a376", + "element_result": "4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "db2a151e-204b-43e5-8871-f8625f74a376", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "db2a151e-204b-43e5-8871-f8625f74a376", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "db2a151e-204b-43e5-8871-f8625f74a376", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "db2a151e-204b-43e5-8871-f8625f74a376", + "element_result": "https://github.com/dotnet/roslyn", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "db2a151e-204b-43e5-8871-f8625f74a376", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "db2a151e-204b-43e5-8871-f8625f74a376", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "db2a151e-204b-43e5-8871-f8625f74a376", + "element_result": "pkg:nuget/Microsoft.CodeAnalysis.CSharp@4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "c3265186-f62d-4bcf-8425-26c5b5596fd5", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "c3265186-f62d-4bcf-8425-26c5b5596fd5", + "element_result": "Microsoft.AspNetCore.Razor.Language", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "c3265186-f62d-4bcf-8425-26c5b5596fd5", + "element_result": "6.0.0-rc.1.21452.15", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "c3265186-f62d-4bcf-8425-26c5b5596fd5", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "c3265186-f62d-4bcf-8425-26c5b5596fd5", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "c3265186-f62d-4bcf-8425-26c5b5596fd5", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "c3265186-f62d-4bcf-8425-26c5b5596fd5", + "element_result": "https://github.com/dotnet/aspnetcore", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "c3265186-f62d-4bcf-8425-26c5b5596fd5", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "c3265186-f62d-4bcf-8425-26c5b5596fd5", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "c3265186-f62d-4bcf-8425-26c5b5596fd5", + "element_result": "pkg:nuget/Microsoft.AspNetCore.Razor.Language@6.0.0-rc.1.21452.15", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "e4eb135e-df46-4dc8-af95-77bab7b80ba1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "e4eb135e-df46-4dc8-af95-77bab7b80ba1", + "element_result": "Microsoft.CodeAnalysis.Common", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "e4eb135e-df46-4dc8-af95-77bab7b80ba1", + "element_result": "4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "e4eb135e-df46-4dc8-af95-77bab7b80ba1", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "e4eb135e-df46-4dc8-af95-77bab7b80ba1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "e4eb135e-df46-4dc8-af95-77bab7b80ba1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "e4eb135e-df46-4dc8-af95-77bab7b80ba1", + "element_result": "https://github.com/dotnet/roslyn", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "e4eb135e-df46-4dc8-af95-77bab7b80ba1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "e4eb135e-df46-4dc8-af95-77bab7b80ba1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "e4eb135e-df46-4dc8-af95-77bab7b80ba1", + "element_result": "pkg:nuget/Microsoft.CodeAnalysis.Common@4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "5ad3276f-73a7-4f30-8f59-c6ca72a74970", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "5ad3276f-73a7-4f30-8f59-c6ca72a74970", + "element_result": "Microsoft.Extensions.Hosting.Abstractions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "5ad3276f-73a7-4f30-8f59-c6ca72a74970", + "element_result": "5.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "5ad3276f-73a7-4f30-8f59-c6ca72a74970", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "5ad3276f-73a7-4f30-8f59-c6ca72a74970", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "5ad3276f-73a7-4f30-8f59-c6ca72a74970", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "5ad3276f-73a7-4f30-8f59-c6ca72a74970", + "element_result": "git://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "5ad3276f-73a7-4f30-8f59-c6ca72a74970", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "5ad3276f-73a7-4f30-8f59-c6ca72a74970", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "5ad3276f-73a7-4f30-8f59-c6ca72a74970", + "element_result": "pkg:nuget/Microsoft.Extensions.Hosting.Abstractions@5.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "2c6769f0-8c77-460d-97be-c08b13377b97", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "2c6769f0-8c77-460d-97be-c08b13377b97", + "element_result": "Microsoft.IdentityModel.LoggingExtensions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "2c6769f0-8c77-460d-97be-c08b13377b97", + "element_result": "6.25.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "2c6769f0-8c77-460d-97be-c08b13377b97", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "2c6769f0-8c77-460d-97be-c08b13377b97", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "2c6769f0-8c77-460d-97be-c08b13377b97", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "2c6769f0-8c77-460d-97be-c08b13377b97", + "element_result": "https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "2c6769f0-8c77-460d-97be-c08b13377b97", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "2c6769f0-8c77-460d-97be-c08b13377b97", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "2c6769f0-8c77-460d-97be-c08b13377b97", + "element_result": "pkg:nuget/Microsoft.IdentityModel.LoggingExtensions@6.25.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "c1db67b9-e6d4-4521-9a4a-e71692f65915", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "c1db67b9-e6d4-4521-9a4a-e71692f65915", + "element_result": "Microsoft.AspNetCore.Authentication.OpenIdConnect", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "c1db67b9-e6d4-4521-9a4a-e71692f65915", + "element_result": "5.0.12", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "c1db67b9-e6d4-4521-9a4a-e71692f65915", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "c1db67b9-e6d4-4521-9a4a-e71692f65915", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "c1db67b9-e6d4-4521-9a4a-e71692f65915", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "c1db67b9-e6d4-4521-9a4a-e71692f65915", + "element_result": "https://github.com/dotnet/aspnetcore", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "c1db67b9-e6d4-4521-9a4a-e71692f65915", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "c1db67b9-e6d4-4521-9a4a-e71692f65915", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "c1db67b9-e6d4-4521-9a4a-e71692f65915", + "element_result": "pkg:nuget/Microsoft.AspNetCore.Authentication.OpenIdConnect@5.0.12", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "0b031691-0f27-4967-830c-e970210fa58b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "0b031691-0f27-4967-830c-e970210fa58b", + "element_result": "Microsoft.NETCore.Targets", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "0b031691-0f27-4967-830c-e970210fa58b", + "element_result": "1.1.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "0b031691-0f27-4967-830c-e970210fa58b", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "0b031691-0f27-4967-830c-e970210fa58b", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "0b031691-0f27-4967-830c-e970210fa58b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "0b031691-0f27-4967-830c-e970210fa58b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "0b031691-0f27-4967-830c-e970210fa58b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "0b031691-0f27-4967-830c-e970210fa58b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "0b031691-0f27-4967-830c-e970210fa58b", + "element_result": "pkg:nuget/Microsoft.NETCore.Targets@1.1.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "b239ef3c-ff76-438b-a33c-000cfb8c7c9e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "b239ef3c-ff76-438b-a33c-000cfb8c7c9e", + "element_result": "Microsoft.VisualStudio.Web.CodeGeneration.Design", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "b239ef3c-ff76-438b-a33c-000cfb8c7c9e", + "element_result": "6.0.0-rc.1.21464.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "b239ef3c-ff76-438b-a33c-000cfb8c7c9e", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "b239ef3c-ff76-438b-a33c-000cfb8c7c9e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "b239ef3c-ff76-438b-a33c-000cfb8c7c9e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "b239ef3c-ff76-438b-a33c-000cfb8c7c9e", + "element_result": "https://github.com/dotnet/Scaffolding", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "b239ef3c-ff76-438b-a33c-000cfb8c7c9e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "b239ef3c-ff76-438b-a33c-000cfb8c7c9e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "b239ef3c-ff76-438b-a33c-000cfb8c7c9e", + "element_result": "pkg:nuget/Microsoft.VisualStudio.Web.CodeGeneration.Design@6.0.0-rc.1.21464.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "b65ae30f-811d-4562-bad1-54abcf963541", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "b65ae30f-811d-4562-bad1-54abcf963541", + "element_result": "Microsoft.VisualStudio.Web.CodeGeneration.Utils", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "b65ae30f-811d-4562-bad1-54abcf963541", + "element_result": "6.0.0-rc.1.21464.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "b65ae30f-811d-4562-bad1-54abcf963541", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "b65ae30f-811d-4562-bad1-54abcf963541", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "b65ae30f-811d-4562-bad1-54abcf963541", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "b65ae30f-811d-4562-bad1-54abcf963541", + "element_result": "https://github.com/dotnet/Scaffolding", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "b65ae30f-811d-4562-bad1-54abcf963541", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "b65ae30f-811d-4562-bad1-54abcf963541", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "b65ae30f-811d-4562-bad1-54abcf963541", + "element_result": "pkg:nuget/Microsoft.VisualStudio.Web.CodeGeneration.Utils@6.0.0-rc.1.21464.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "5abf35ae-79c3-4e60-96b0-189a862abee1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "5abf35ae-79c3-4e60-96b0-189a862abee1", + "element_result": "Microsoft.Win32.Primitives", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "5abf35ae-79c3-4e60-96b0-189a862abee1", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "5abf35ae-79c3-4e60-96b0-189a862abee1", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "5abf35ae-79c3-4e60-96b0-189a862abee1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "5abf35ae-79c3-4e60-96b0-189a862abee1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "5abf35ae-79c3-4e60-96b0-189a862abee1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "5abf35ae-79c3-4e60-96b0-189a862abee1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "5abf35ae-79c3-4e60-96b0-189a862abee1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "5abf35ae-79c3-4e60-96b0-189a862abee1", + "element_result": "pkg:nuget/Microsoft.Win32.Primitives@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "dd9ac1d3-e304-4882-961e-ec6cb0abc675", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "dd9ac1d3-e304-4882-961e-ec6cb0abc675", + "element_result": "runtime.any.System.Diagnostics.Tracing", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "dd9ac1d3-e304-4882-961e-ec6cb0abc675", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "dd9ac1d3-e304-4882-961e-ec6cb0abc675", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "dd9ac1d3-e304-4882-961e-ec6cb0abc675", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "dd9ac1d3-e304-4882-961e-ec6cb0abc675", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "dd9ac1d3-e304-4882-961e-ec6cb0abc675", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "dd9ac1d3-e304-4882-961e-ec6cb0abc675", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "dd9ac1d3-e304-4882-961e-ec6cb0abc675", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "dd9ac1d3-e304-4882-961e-ec6cb0abc675", + "element_result": "pkg:nuget/runtime.any.System.Diagnostics.Tracing@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "ea718354-699a-42b3-90d1-7768461cc092", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "ea718354-699a-42b3-90d1-7768461cc092", + "element_result": "runtime.any.System.Runtime", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "ea718354-699a-42b3-90d1-7768461cc092", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "ea718354-699a-42b3-90d1-7768461cc092", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "ea718354-699a-42b3-90d1-7768461cc092", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "ea718354-699a-42b3-90d1-7768461cc092", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "ea718354-699a-42b3-90d1-7768461cc092", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "ea718354-699a-42b3-90d1-7768461cc092", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "ea718354-699a-42b3-90d1-7768461cc092", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "ea718354-699a-42b3-90d1-7768461cc092", + "element_result": "pkg:nuget/runtime.any.System.Runtime@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "5c51b43c-4add-410a-86c2-84e06147e109", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "5c51b43c-4add-410a-86c2-84e06147e109", + "element_result": "runtime.any.System.Runtime.Handles", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "5c51b43c-4add-410a-86c2-84e06147e109", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "5c51b43c-4add-410a-86c2-84e06147e109", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "5c51b43c-4add-410a-86c2-84e06147e109", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "5c51b43c-4add-410a-86c2-84e06147e109", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "5c51b43c-4add-410a-86c2-84e06147e109", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "5c51b43c-4add-410a-86c2-84e06147e109", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "5c51b43c-4add-410a-86c2-84e06147e109", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "5c51b43c-4add-410a-86c2-84e06147e109", + "element_result": "pkg:nuget/runtime.any.System.Runtime.Handles@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "6c9576fc-9eaf-4699-b17b-2097f54fbfc7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "6c9576fc-9eaf-4699-b17b-2097f54fbfc7", + "element_result": "Microsoft.AspNetCore.DataProtection", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "6c9576fc-9eaf-4699-b17b-2097f54fbfc7", + "element_result": "5.0.8", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "6c9576fc-9eaf-4699-b17b-2097f54fbfc7", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "6c9576fc-9eaf-4699-b17b-2097f54fbfc7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "6c9576fc-9eaf-4699-b17b-2097f54fbfc7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "6c9576fc-9eaf-4699-b17b-2097f54fbfc7", + "element_result": "https://github.com/dotnet/aspnetcore", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "6c9576fc-9eaf-4699-b17b-2097f54fbfc7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "6c9576fc-9eaf-4699-b17b-2097f54fbfc7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "6c9576fc-9eaf-4699-b17b-2097f54fbfc7", + "element_result": "pkg:nuget/Microsoft.AspNetCore.DataProtection@5.0.8", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "37af7fe9-e29d-4dac-8cbb-9d3ea261cb6c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "37af7fe9-e29d-4dac-8cbb-9d3ea261cb6c", + "element_result": "System.Threading", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "37af7fe9-e29d-4dac-8cbb-9d3ea261cb6c", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "37af7fe9-e29d-4dac-8cbb-9d3ea261cb6c", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "37af7fe9-e29d-4dac-8cbb-9d3ea261cb6c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "37af7fe9-e29d-4dac-8cbb-9d3ea261cb6c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "37af7fe9-e29d-4dac-8cbb-9d3ea261cb6c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "37af7fe9-e29d-4dac-8cbb-9d3ea261cb6c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "37af7fe9-e29d-4dac-8cbb-9d3ea261cb6c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "37af7fe9-e29d-4dac-8cbb-9d3ea261cb6c", + "element_result": "pkg:nuget/System.Threading@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "8637a452-8837-4331-b6a3-b8d63765bd01", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "8637a452-8837-4331-b6a3-b8d63765bd01", + "element_result": "NuGet.LibraryModel", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "8637a452-8837-4331-b6a3-b8d63765bd01", + "element_result": "5.9.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "8637a452-8837-4331-b6a3-b8d63765bd01", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "8637a452-8837-4331-b6a3-b8d63765bd01", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "8637a452-8837-4331-b6a3-b8d63765bd01", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "8637a452-8837-4331-b6a3-b8d63765bd01", + "element_result": "https://github.com/NuGet/NuGet.Client", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "8637a452-8837-4331-b6a3-b8d63765bd01", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "8637a452-8837-4331-b6a3-b8d63765bd01", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "8637a452-8837-4331-b6a3-b8d63765bd01", + "element_result": "pkg:nuget/NuGet.LibraryModel@5.9.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "96427db4-f5f7-4d2b-9c3b-92e1893a19cf", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "96427db4-f5f7-4d2b-9c3b-92e1893a19cf", + "element_result": "runtime.native.System", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "96427db4-f5f7-4d2b-9c3b-92e1893a19cf", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "96427db4-f5f7-4d2b-9c3b-92e1893a19cf", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "96427db4-f5f7-4d2b-9c3b-92e1893a19cf", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "96427db4-f5f7-4d2b-9c3b-92e1893a19cf", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "96427db4-f5f7-4d2b-9c3b-92e1893a19cf", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "96427db4-f5f7-4d2b-9c3b-92e1893a19cf", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "96427db4-f5f7-4d2b-9c3b-92e1893a19cf", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "96427db4-f5f7-4d2b-9c3b-92e1893a19cf", + "element_result": "pkg:nuget/runtime.native.System@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "1c9e3095-432a-4a8e-a47b-55266e9739de", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "1c9e3095-432a-4a8e-a47b-55266e9739de", + "element_result": "Microsoft.CodeAnalysis.Analyzers", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "1c9e3095-432a-4a8e-a47b-55266e9739de", + "element_result": "3.3.2", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "1c9e3095-432a-4a8e-a47b-55266e9739de", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "1c9e3095-432a-4a8e-a47b-55266e9739de", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "1c9e3095-432a-4a8e-a47b-55266e9739de", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "1c9e3095-432a-4a8e-a47b-55266e9739de", + "element_result": "https://github.com/dotnet/roslyn-analyzers", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "1c9e3095-432a-4a8e-a47b-55266e9739de", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "1c9e3095-432a-4a8e-a47b-55266e9739de", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "1c9e3095-432a-4a8e-a47b-55266e9739de", + "element_result": "pkg:nuget/Microsoft.CodeAnalysis.Analyzers@3.3.2", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "bdde69d3-700b-4e7f-8f6c-4dda9a265fd0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "bdde69d3-700b-4e7f-8f6c-4dda9a265fd0", + "element_result": "System.ObjectModel", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "bdde69d3-700b-4e7f-8f6c-4dda9a265fd0", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "bdde69d3-700b-4e7f-8f6c-4dda9a265fd0", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "bdde69d3-700b-4e7f-8f6c-4dda9a265fd0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "bdde69d3-700b-4e7f-8f6c-4dda9a265fd0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "bdde69d3-700b-4e7f-8f6c-4dda9a265fd0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "bdde69d3-700b-4e7f-8f6c-4dda9a265fd0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "bdde69d3-700b-4e7f-8f6c-4dda9a265fd0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "bdde69d3-700b-4e7f-8f6c-4dda9a265fd0", + "element_result": "pkg:nuget/System.ObjectModel@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "ce6b3310-72e2-4e8a-b7c3-24563b60d372", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "ce6b3310-72e2-4e8a-b7c3-24563b60d372", + "element_result": "runtime.any.System.Globalization", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "ce6b3310-72e2-4e8a-b7c3-24563b60d372", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "ce6b3310-72e2-4e8a-b7c3-24563b60d372", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "ce6b3310-72e2-4e8a-b7c3-24563b60d372", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "ce6b3310-72e2-4e8a-b7c3-24563b60d372", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "ce6b3310-72e2-4e8a-b7c3-24563b60d372", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "ce6b3310-72e2-4e8a-b7c3-24563b60d372", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "ce6b3310-72e2-4e8a-b7c3-24563b60d372", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "ce6b3310-72e2-4e8a-b7c3-24563b60d372", + "element_result": "pkg:nuget/runtime.any.System.Globalization@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "170f0dff-e3da-4593-ab61-babb6cc680d8", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "170f0dff-e3da-4593-ab61-babb6cc680d8", + "element_result": "System.Drawing.Common", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "170f0dff-e3da-4593-ab61-babb6cc680d8", + "element_result": "4.7.2", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "170f0dff-e3da-4593-ab61-babb6cc680d8", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "170f0dff-e3da-4593-ab61-babb6cc680d8", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "170f0dff-e3da-4593-ab61-babb6cc680d8", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "170f0dff-e3da-4593-ab61-babb6cc680d8", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "170f0dff-e3da-4593-ab61-babb6cc680d8", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "170f0dff-e3da-4593-ab61-babb6cc680d8", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "170f0dff-e3da-4593-ab61-babb6cc680d8", + "element_result": "pkg:nuget/System.Drawing.Common@4.7.2", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "0fa9eeca-0e04-45c6-97ca-620fe798e278", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "0fa9eeca-0e04-45c6-97ca-620fe798e278", + "element_result": "MessagePack", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "0fa9eeca-0e04-45c6-97ca-620fe798e278", + "element_result": "2.1.152", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "0fa9eeca-0e04-45c6-97ca-620fe798e278", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "0fa9eeca-0e04-45c6-97ca-620fe798e278", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "0fa9eeca-0e04-45c6-97ca-620fe798e278", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "0fa9eeca-0e04-45c6-97ca-620fe798e278", + "element_result": "https://github.com/neuecc/MessagePack-CSharp", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "0fa9eeca-0e04-45c6-97ca-620fe798e278", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "0fa9eeca-0e04-45c6-97ca-620fe798e278", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "0fa9eeca-0e04-45c6-97ca-620fe798e278", + "element_result": "pkg:nuget/MessagePack@2.1.152", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "94f26446-acb9-4263-9ec6-a8206d880592", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "94f26446-acb9-4263-9ec6-a8206d880592", + "element_result": "CommunityToolkit.Common", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "94f26446-acb9-4263-9ec6-a8206d880592", + "element_result": "7.1.2", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "94f26446-acb9-4263-9ec6-a8206d880592", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "94f26446-acb9-4263-9ec6-a8206d880592", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "94f26446-acb9-4263-9ec6-a8206d880592", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "94f26446-acb9-4263-9ec6-a8206d880592", + "element_result": "https://github.com/CommunityToolkit/WindowsCommunityToolkit", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "94f26446-acb9-4263-9ec6-a8206d880592", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "94f26446-acb9-4263-9ec6-a8206d880592", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "94f26446-acb9-4263-9ec6-a8206d880592", + "element_result": "pkg:nuget/CommunityToolkit.Common@7.1.2", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "16e861d4-3664-45da-b7a2-9702b61e35e0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "16e861d4-3664-45da-b7a2-9702b61e35e0", + "element_result": "Microsoft.IdentityModel.Abstractions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "16e861d4-3664-45da-b7a2-9702b61e35e0", + "element_result": "6.25.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "16e861d4-3664-45da-b7a2-9702b61e35e0", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "16e861d4-3664-45da-b7a2-9702b61e35e0", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "16e861d4-3664-45da-b7a2-9702b61e35e0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "16e861d4-3664-45da-b7a2-9702b61e35e0", + "element_result": "https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "16e861d4-3664-45da-b7a2-9702b61e35e0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "16e861d4-3664-45da-b7a2-9702b61e35e0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "16e861d4-3664-45da-b7a2-9702b61e35e0", + "element_result": "pkg:nuget/Microsoft.IdentityModel.Abstractions@6.25.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "45f90c56-83e5-49ab-a512-5e71dab422be", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "45f90c56-83e5-49ab-a512-5e71dab422be", + "element_result": "System.Collections.Concurrent", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "45f90c56-83e5-49ab-a512-5e71dab422be", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "45f90c56-83e5-49ab-a512-5e71dab422be", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "45f90c56-83e5-49ab-a512-5e71dab422be", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "45f90c56-83e5-49ab-a512-5e71dab422be", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "45f90c56-83e5-49ab-a512-5e71dab422be", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "45f90c56-83e5-49ab-a512-5e71dab422be", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "45f90c56-83e5-49ab-a512-5e71dab422be", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "45f90c56-83e5-49ab-a512-5e71dab422be", + "element_result": "pkg:nuget/System.Collections.Concurrent@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "c8e21c18-eb0a-4cf8-9912-b4fd73361674", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "c8e21c18-eb0a-4cf8-9912-b4fd73361674", + "element_result": "System.Composition", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "c8e21c18-eb0a-4cf8-9912-b4fd73361674", + "element_result": "1.0.31", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "c8e21c18-eb0a-4cf8-9912-b4fd73361674", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "c8e21c18-eb0a-4cf8-9912-b4fd73361674", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "c8e21c18-eb0a-4cf8-9912-b4fd73361674", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "c8e21c18-eb0a-4cf8-9912-b4fd73361674", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "c8e21c18-eb0a-4cf8-9912-b4fd73361674", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "c8e21c18-eb0a-4cf8-9912-b4fd73361674", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "c8e21c18-eb0a-4cf8-9912-b4fd73361674", + "element_result": "pkg:nuget/System.Composition@1.0.31", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "cba4f9bf-84ec-4c07-8baf-400f63a4fb72", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "cba4f9bf-84ec-4c07-8baf-400f63a4fb72", + "element_result": "System.Text.Encoding.Extensions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "cba4f9bf-84ec-4c07-8baf-400f63a4fb72", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "cba4f9bf-84ec-4c07-8baf-400f63a4fb72", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "cba4f9bf-84ec-4c07-8baf-400f63a4fb72", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "cba4f9bf-84ec-4c07-8baf-400f63a4fb72", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "cba4f9bf-84ec-4c07-8baf-400f63a4fb72", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "cba4f9bf-84ec-4c07-8baf-400f63a4fb72", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "cba4f9bf-84ec-4c07-8baf-400f63a4fb72", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "cba4f9bf-84ec-4c07-8baf-400f63a4fb72", + "element_result": "pkg:nuget/System.Text.Encoding.Extensions@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "350a1263-cc3e-408a-902c-3dcc594640d3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "350a1263-cc3e-408a-902c-3dcc594640d3", + "element_result": "Azure.Security.KeyVault.Certificates", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "350a1263-cc3e-408a-902c-3dcc594640d3", + "element_result": "4.1.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "350a1263-cc3e-408a-902c-3dcc594640d3", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "350a1263-cc3e-408a-902c-3dcc594640d3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "350a1263-cc3e-408a-902c-3dcc594640d3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "350a1263-cc3e-408a-902c-3dcc594640d3", + "element_result": "https://github.com/Azure/azure-sdk-for-net", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "350a1263-cc3e-408a-902c-3dcc594640d3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "350a1263-cc3e-408a-902c-3dcc594640d3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "350a1263-cc3e-408a-902c-3dcc594640d3", + "element_result": "pkg:nuget/Azure.Security.KeyVault.Certificates@4.1.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "317aea96-c05c-40d9-b062-21b418aedda2", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "317aea96-c05c-40d9-b062-21b418aedda2", + "element_result": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "317aea96-c05c-40d9-b062-21b418aedda2", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "317aea96-c05c-40d9-b062-21b418aedda2", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "317aea96-c05c-40d9-b062-21b418aedda2", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "317aea96-c05c-40d9-b062-21b418aedda2", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "317aea96-c05c-40d9-b062-21b418aedda2", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "317aea96-c05c-40d9-b062-21b418aedda2", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "317aea96-c05c-40d9-b062-21b418aedda2", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "317aea96-c05c-40d9-b062-21b418aedda2", + "element_result": "pkg:nuget/runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "9bb5b1fd-af54-4594-b3ac-24aadd6123d9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "9bb5b1fd-af54-4594-b3ac-24aadd6123d9", + "element_result": "runtime.win.System.Diagnostics.Debug", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "9bb5b1fd-af54-4594-b3ac-24aadd6123d9", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "9bb5b1fd-af54-4594-b3ac-24aadd6123d9", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "9bb5b1fd-af54-4594-b3ac-24aadd6123d9", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "9bb5b1fd-af54-4594-b3ac-24aadd6123d9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "9bb5b1fd-af54-4594-b3ac-24aadd6123d9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "9bb5b1fd-af54-4594-b3ac-24aadd6123d9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "9bb5b1fd-af54-4594-b3ac-24aadd6123d9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "9bb5b1fd-af54-4594-b3ac-24aadd6123d9", + "element_result": "pkg:nuget/runtime.win.System.Diagnostics.Debug@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "6e4e9d81-5b1f-4c0f-a4ee-e43a78374eea", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "6e4e9d81-5b1f-4c0f-a4ee-e43a78374eea", + "element_result": "System.IdentityModel.Tokens.Jwt", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "6e4e9d81-5b1f-4c0f-a4ee-e43a78374eea", + "element_result": "6.15.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "6e4e9d81-5b1f-4c0f-a4ee-e43a78374eea", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "6e4e9d81-5b1f-4c0f-a4ee-e43a78374eea", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "6e4e9d81-5b1f-4c0f-a4ee-e43a78374eea", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "6e4e9d81-5b1f-4c0f-a4ee-e43a78374eea", + "element_result": "https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "6e4e9d81-5b1f-4c0f-a4ee-e43a78374eea", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "6e4e9d81-5b1f-4c0f-a4ee-e43a78374eea", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "6e4e9d81-5b1f-4c0f-a4ee-e43a78374eea", + "element_result": "pkg:nuget/System.IdentityModel.Tokens.Jwt@6.15.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "9a56caa3-26c7-4030-8273-abad4167a14b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "9a56caa3-26c7-4030-8273-abad4167a14b", + "element_result": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "9a56caa3-26c7-4030-8273-abad4167a14b", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "9a56caa3-26c7-4030-8273-abad4167a14b", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "9a56caa3-26c7-4030-8273-abad4167a14b", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "9a56caa3-26c7-4030-8273-abad4167a14b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "9a56caa3-26c7-4030-8273-abad4167a14b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "9a56caa3-26c7-4030-8273-abad4167a14b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "9a56caa3-26c7-4030-8273-abad4167a14b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "9a56caa3-26c7-4030-8273-abad4167a14b", + "element_result": "pkg:nuget/runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "a8f5b03d-82cc-45e0-9f0b-bcfb77b2bf8a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "a8f5b03d-82cc-45e0-9f0b-bcfb77b2bf8a", + "element_result": "NuGet.Frameworks", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "a8f5b03d-82cc-45e0-9f0b-bcfb77b2bf8a", + "element_result": "5.9.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "a8f5b03d-82cc-45e0-9f0b-bcfb77b2bf8a", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "a8f5b03d-82cc-45e0-9f0b-bcfb77b2bf8a", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "a8f5b03d-82cc-45e0-9f0b-bcfb77b2bf8a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "a8f5b03d-82cc-45e0-9f0b-bcfb77b2bf8a", + "element_result": "https://github.com/NuGet/NuGet.Client", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "a8f5b03d-82cc-45e0-9f0b-bcfb77b2bf8a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "a8f5b03d-82cc-45e0-9f0b-bcfb77b2bf8a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "a8f5b03d-82cc-45e0-9f0b-bcfb77b2bf8a", + "element_result": "pkg:nuget/NuGet.Frameworks@5.9.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "66f250b5-87de-4f68-8a87-cef2d5e9fe3c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "66f250b5-87de-4f68-8a87-cef2d5e9fe3c", + "element_result": "System.Diagnostics.Debug", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "66f250b5-87de-4f68-8a87-cef2d5e9fe3c", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "66f250b5-87de-4f68-8a87-cef2d5e9fe3c", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "66f250b5-87de-4f68-8a87-cef2d5e9fe3c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "66f250b5-87de-4f68-8a87-cef2d5e9fe3c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "66f250b5-87de-4f68-8a87-cef2d5e9fe3c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "66f250b5-87de-4f68-8a87-cef2d5e9fe3c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "66f250b5-87de-4f68-8a87-cef2d5e9fe3c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "66f250b5-87de-4f68-8a87-cef2d5e9fe3c", + "element_result": "pkg:nuget/System.Diagnostics.Debug@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "65c22b11-404e-4f03-918f-38fb4f494db0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "65c22b11-404e-4f03-918f-38fb4f494db0", + "element_result": "CommunityToolkit.WinUI.UI.Controls.Primitives", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "65c22b11-404e-4f03-918f-38fb4f494db0", + "element_result": "7.1.2", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "65c22b11-404e-4f03-918f-38fb4f494db0", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "65c22b11-404e-4f03-918f-38fb4f494db0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "65c22b11-404e-4f03-918f-38fb4f494db0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "65c22b11-404e-4f03-918f-38fb4f494db0", + "element_result": "https://github.com/CommunityToolkit/WindowsCommunityToolkit", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "65c22b11-404e-4f03-918f-38fb4f494db0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "65c22b11-404e-4f03-918f-38fb4f494db0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "65c22b11-404e-4f03-918f-38fb4f494db0", + "element_result": "pkg:nuget/CommunityToolkit.WinUI.UI.Controls.Primitives@7.1.2", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "3e8a92b0-5cac-4209-9a98-7e9977e1d144", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "3e8a92b0-5cac-4209-9a98-7e9977e1d144", + "element_result": "Microsoft.CodeAnalysis.Features", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "3e8a92b0-5cac-4209-9a98-7e9977e1d144", + "element_result": "4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "3e8a92b0-5cac-4209-9a98-7e9977e1d144", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "3e8a92b0-5cac-4209-9a98-7e9977e1d144", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "3e8a92b0-5cac-4209-9a98-7e9977e1d144", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "3e8a92b0-5cac-4209-9a98-7e9977e1d144", + "element_result": "https://github.com/dotnet/roslyn", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "3e8a92b0-5cac-4209-9a98-7e9977e1d144", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "3e8a92b0-5cac-4209-9a98-7e9977e1d144", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "3e8a92b0-5cac-4209-9a98-7e9977e1d144", + "element_result": "pkg:nuget/Microsoft.CodeAnalysis.Features@4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "4639b4a9-ea4c-49bc-b6bf-92f49126f82c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "4639b4a9-ea4c-49bc-b6bf-92f49126f82c", + "element_result": "Microsoft.EntityFrameworkCore.Analyzers", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "4639b4a9-ea4c-49bc-b6bf-92f49126f82c", + "element_result": "6.0.5", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "4639b4a9-ea4c-49bc-b6bf-92f49126f82c", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "4639b4a9-ea4c-49bc-b6bf-92f49126f82c", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "4639b4a9-ea4c-49bc-b6bf-92f49126f82c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "4639b4a9-ea4c-49bc-b6bf-92f49126f82c", + "element_result": "https://github.com/dotnet/efcore", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "4639b4a9-ea4c-49bc-b6bf-92f49126f82c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "4639b4a9-ea4c-49bc-b6bf-92f49126f82c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "4639b4a9-ea4c-49bc-b6bf-92f49126f82c", + "element_result": "pkg:nuget/Microsoft.EntityFrameworkCore.Analyzers@6.0.5", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "5799f527-224c-4c9a-895e-01d3c0bafe94", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "5799f527-224c-4c9a-895e-01d3c0bafe94", + "element_result": "Microsoft.Extensions.DependencyInjection.Abstractions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "5799f527-224c-4c9a-895e-01d3c0bafe94", + "element_result": "6.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "5799f527-224c-4c9a-895e-01d3c0bafe94", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "5799f527-224c-4c9a-895e-01d3c0bafe94", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "5799f527-224c-4c9a-895e-01d3c0bafe94", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "5799f527-224c-4c9a-895e-01d3c0bafe94", + "element_result": "https://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "5799f527-224c-4c9a-895e-01d3c0bafe94", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "5799f527-224c-4c9a-895e-01d3c0bafe94", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "5799f527-224c-4c9a-895e-01d3c0bafe94", + "element_result": "pkg:nuget/Microsoft.Extensions.DependencyInjection.Abstractions@6.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "704ce92b-375a-432d-9ac1-84f0c4b9b60b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "704ce92b-375a-432d-9ac1-84f0c4b9b60b", + "element_result": "Microsoft.IdentityModel.JsonWebTokens", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "704ce92b-375a-432d-9ac1-84f0c4b9b60b", + "element_result": "6.15.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "704ce92b-375a-432d-9ac1-84f0c4b9b60b", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "704ce92b-375a-432d-9ac1-84f0c4b9b60b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "704ce92b-375a-432d-9ac1-84f0c4b9b60b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "704ce92b-375a-432d-9ac1-84f0c4b9b60b", + "element_result": "https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "704ce92b-375a-432d-9ac1-84f0c4b9b60b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "704ce92b-375a-432d-9ac1-84f0c4b9b60b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "704ce92b-375a-432d-9ac1-84f0c4b9b60b", + "element_result": "pkg:nuget/Microsoft.IdentityModel.JsonWebTokens@6.15.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "d4a67d38-b087-47ac-865c-91c4e927e502", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "d4a67d38-b087-47ac-865c-91c4e927e502", + "element_result": "Microsoft.VisualStudio.Web.CodeGeneration.Templating", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "d4a67d38-b087-47ac-865c-91c4e927e502", + "element_result": "6.0.0-rc.1.21464.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "d4a67d38-b087-47ac-865c-91c4e927e502", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "d4a67d38-b087-47ac-865c-91c4e927e502", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "d4a67d38-b087-47ac-865c-91c4e927e502", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "d4a67d38-b087-47ac-865c-91c4e927e502", + "element_result": "https://github.com/dotnet/Scaffolding", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "d4a67d38-b087-47ac-865c-91c4e927e502", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "d4a67d38-b087-47ac-865c-91c4e927e502", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "d4a67d38-b087-47ac-865c-91c4e927e502", + "element_result": "pkg:nuget/Microsoft.VisualStudio.Web.CodeGeneration.Templating@6.0.0-rc.1.21464.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "77d51942-4616-40fd-8851-c63e70aab693", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "77d51942-4616-40fd-8851-c63e70aab693", + "element_result": "Microsoft.Windows.SDK.BuildTools", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "77d51942-4616-40fd-8851-c63e70aab693", + "element_result": "10.0.22000.194", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "77d51942-4616-40fd-8851-c63e70aab693", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "77d51942-4616-40fd-8851-c63e70aab693", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "77d51942-4616-40fd-8851-c63e70aab693", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "77d51942-4616-40fd-8851-c63e70aab693", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "77d51942-4616-40fd-8851-c63e70aab693", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "77d51942-4616-40fd-8851-c63e70aab693", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "77d51942-4616-40fd-8851-c63e70aab693", + "element_result": "pkg:nuget/Microsoft.Windows.SDK.BuildTools@10.0.22000.194", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "49f3b986-d6ef-455d-8393-c2500ab94c9a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "49f3b986-d6ef-455d-8393-c2500ab94c9a", + "element_result": "System.Globalization", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "49f3b986-d6ef-455d-8393-c2500ab94c9a", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "49f3b986-d6ef-455d-8393-c2500ab94c9a", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "49f3b986-d6ef-455d-8393-c2500ab94c9a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "49f3b986-d6ef-455d-8393-c2500ab94c9a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "49f3b986-d6ef-455d-8393-c2500ab94c9a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "49f3b986-d6ef-455d-8393-c2500ab94c9a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "49f3b986-d6ef-455d-8393-c2500ab94c9a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "49f3b986-d6ef-455d-8393-c2500ab94c9a", + "element_result": "pkg:nuget/System.Globalization@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "afeca525-e844-40a6-a0fb-e9b0a41c9bc6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "afeca525-e844-40a6-a0fb-e9b0a41c9bc6", + "element_result": "CommunityToolkit.WinUI.UI.Controls.Core", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "afeca525-e844-40a6-a0fb-e9b0a41c9bc6", + "element_result": "7.1.2", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "afeca525-e844-40a6-a0fb-e9b0a41c9bc6", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "afeca525-e844-40a6-a0fb-e9b0a41c9bc6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "afeca525-e844-40a6-a0fb-e9b0a41c9bc6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "afeca525-e844-40a6-a0fb-e9b0a41c9bc6", + "element_result": "https://github.com/CommunityToolkit/WindowsCommunityToolkit", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "afeca525-e844-40a6-a0fb-e9b0a41c9bc6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "afeca525-e844-40a6-a0fb-e9b0a41c9bc6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "afeca525-e844-40a6-a0fb-e9b0a41c9bc6", + "element_result": "pkg:nuget/CommunityToolkit.WinUI.UI.Controls.Core@7.1.2", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "4dd66416-e5d2-47df-bcf4-dd79b9d99829", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "4dd66416-e5d2-47df-bcf4-dd79b9d99829", + "element_result": "System.Runtime.Caching", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "4dd66416-e5d2-47df-bcf4-dd79b9d99829", + "element_result": "4.7.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "4dd66416-e5d2-47df-bcf4-dd79b9d99829", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "4dd66416-e5d2-47df-bcf4-dd79b9d99829", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "4dd66416-e5d2-47df-bcf4-dd79b9d99829", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "4dd66416-e5d2-47df-bcf4-dd79b9d99829", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "4dd66416-e5d2-47df-bcf4-dd79b9d99829", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "4dd66416-e5d2-47df-bcf4-dd79b9d99829", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "4dd66416-e5d2-47df-bcf4-dd79b9d99829", + "element_result": "pkg:nuget/System.Runtime.Caching@4.7.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "b19d2277-b1ba-4cfd-b7fe-a4b374b7ea42", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "b19d2277-b1ba-4cfd-b7fe-a4b374b7ea42", + "element_result": "Microsoft.Identity.Web.TokenCache", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "b19d2277-b1ba-4cfd-b7fe-a4b374b7ea42", + "element_result": "1.26.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "b19d2277-b1ba-4cfd-b7fe-a4b374b7ea42", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "b19d2277-b1ba-4cfd-b7fe-a4b374b7ea42", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "b19d2277-b1ba-4cfd-b7fe-a4b374b7ea42", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "b19d2277-b1ba-4cfd-b7fe-a4b374b7ea42", + "element_result": "https://github.com/AzureAD/microsoft-identity-web", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "b19d2277-b1ba-4cfd-b7fe-a4b374b7ea42", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "b19d2277-b1ba-4cfd-b7fe-a4b374b7ea42", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "b19d2277-b1ba-4cfd-b7fe-a4b374b7ea42", + "element_result": "pkg:nuget/Microsoft.Identity.Web.TokenCache@1.26.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "b8842a85-4a65-4f98-8d69-26cbed6d453d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "b8842a85-4a65-4f98-8d69-26cbed6d453d", + "element_result": "runtime.any.System.Threading.Tasks", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "b8842a85-4a65-4f98-8d69-26cbed6d453d", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "b8842a85-4a65-4f98-8d69-26cbed6d453d", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "b8842a85-4a65-4f98-8d69-26cbed6d453d", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "b8842a85-4a65-4f98-8d69-26cbed6d453d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "b8842a85-4a65-4f98-8d69-26cbed6d453d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "b8842a85-4a65-4f98-8d69-26cbed6d453d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "b8842a85-4a65-4f98-8d69-26cbed6d453d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "b8842a85-4a65-4f98-8d69-26cbed6d453d", + "element_result": "pkg:nuget/runtime.any.System.Threading.Tasks@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "4f2b7bfb-d570-416c-8b31-a369babb11e3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "4f2b7bfb-d570-416c-8b31-a369babb11e3", + "element_result": "Microsoft.CodeAnalysis.CSharp.Features", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "4f2b7bfb-d570-416c-8b31-a369babb11e3", + "element_result": "4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "4f2b7bfb-d570-416c-8b31-a369babb11e3", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "4f2b7bfb-d570-416c-8b31-a369babb11e3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "4f2b7bfb-d570-416c-8b31-a369babb11e3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "4f2b7bfb-d570-416c-8b31-a369babb11e3", + "element_result": "https://github.com/dotnet/roslyn", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "4f2b7bfb-d570-416c-8b31-a369babb11e3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "4f2b7bfb-d570-416c-8b31-a369babb11e3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "4f2b7bfb-d570-416c-8b31-a369babb11e3", + "element_result": "pkg:nuget/Microsoft.CodeAnalysis.CSharp.Features@4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "bd247318-d428-476e-b772-e05adbc211b2", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "bd247318-d428-476e-b772-e05adbc211b2", + "element_result": "System.Net.Http", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "bd247318-d428-476e-b772-e05adbc211b2", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "bd247318-d428-476e-b772-e05adbc211b2", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "bd247318-d428-476e-b772-e05adbc211b2", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "bd247318-d428-476e-b772-e05adbc211b2", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "bd247318-d428-476e-b772-e05adbc211b2", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "bd247318-d428-476e-b772-e05adbc211b2", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "bd247318-d428-476e-b772-e05adbc211b2", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "bd247318-d428-476e-b772-e05adbc211b2", + "element_result": "pkg:nuget/System.Net.Http@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "64d63399-06b3-4379-8194-461e12f62281", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "64d63399-06b3-4379-8194-461e12f62281", + "element_result": "runtime.native.System.IO.Compression", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "64d63399-06b3-4379-8194-461e12f62281", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "64d63399-06b3-4379-8194-461e12f62281", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "64d63399-06b3-4379-8194-461e12f62281", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "64d63399-06b3-4379-8194-461e12f62281", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "64d63399-06b3-4379-8194-461e12f62281", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "64d63399-06b3-4379-8194-461e12f62281", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "64d63399-06b3-4379-8194-461e12f62281", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "64d63399-06b3-4379-8194-461e12f62281", + "element_result": "pkg:nuget/runtime.native.System.IO.Compression@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "f0946c12-b41f-4891-b97a-2e6a45aabd94", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "f0946c12-b41f-4891-b97a-2e6a45aabd94", + "element_result": "Microsoft.CodeAnalysis.VisualBasic.Workspaces", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "f0946c12-b41f-4891-b97a-2e6a45aabd94", + "element_result": "4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "f0946c12-b41f-4891-b97a-2e6a45aabd94", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "f0946c12-b41f-4891-b97a-2e6a45aabd94", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "f0946c12-b41f-4891-b97a-2e6a45aabd94", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "f0946c12-b41f-4891-b97a-2e6a45aabd94", + "element_result": "https://github.com/dotnet/roslyn", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "f0946c12-b41f-4891-b97a-2e6a45aabd94", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "f0946c12-b41f-4891-b97a-2e6a45aabd94", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "f0946c12-b41f-4891-b97a-2e6a45aabd94", + "element_result": "pkg:nuget/Microsoft.CodeAnalysis.VisualBasic.Workspaces@4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "126c0b0f-1908-4b8f-ac86-ffee6b27c7c7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "126c0b0f-1908-4b8f-ac86-ffee6b27c7c7", + "element_result": "Microsoft.Extensions.Caching.Memory", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "126c0b0f-1908-4b8f-ac86-ffee6b27c7c7", + "element_result": "6.0.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "126c0b0f-1908-4b8f-ac86-ffee6b27c7c7", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "126c0b0f-1908-4b8f-ac86-ffee6b27c7c7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "126c0b0f-1908-4b8f-ac86-ffee6b27c7c7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "126c0b0f-1908-4b8f-ac86-ffee6b27c7c7", + "element_result": "https://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "126c0b0f-1908-4b8f-ac86-ffee6b27c7c7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "126c0b0f-1908-4b8f-ac86-ffee6b27c7c7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "126c0b0f-1908-4b8f-ac86-ffee6b27c7c7", + "element_result": "pkg:nuget/Microsoft.Extensions.Caching.Memory@6.0.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "1731f360-67b2-4e0b-b3b8-15f3070e5297", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "1731f360-67b2-4e0b-b3b8-15f3070e5297", + "element_result": "Microsoft.Extensions.Configuration.Abstractions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "1731f360-67b2-4e0b-b3b8-15f3070e5297", + "element_result": "6.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "1731f360-67b2-4e0b-b3b8-15f3070e5297", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "1731f360-67b2-4e0b-b3b8-15f3070e5297", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "1731f360-67b2-4e0b-b3b8-15f3070e5297", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "1731f360-67b2-4e0b-b3b8-15f3070e5297", + "element_result": "https://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "1731f360-67b2-4e0b-b3b8-15f3070e5297", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "1731f360-67b2-4e0b-b3b8-15f3070e5297", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "1731f360-67b2-4e0b-b3b8-15f3070e5297", + "element_result": "pkg:nuget/Microsoft.Extensions.Configuration.Abstractions@6.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "993b67f7-1482-4516-a184-b333411e57ec", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "993b67f7-1482-4516-a184-b333411e57ec", + "element_result": "Microsoft.Identity.Web", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "993b67f7-1482-4516-a184-b333411e57ec", + "element_result": "1.26.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "993b67f7-1482-4516-a184-b333411e57ec", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "993b67f7-1482-4516-a184-b333411e57ec", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "993b67f7-1482-4516-a184-b333411e57ec", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "993b67f7-1482-4516-a184-b333411e57ec", + "element_result": "https://github.com/AzureAD/microsoft-identity-web", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "993b67f7-1482-4516-a184-b333411e57ec", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "993b67f7-1482-4516-a184-b333411e57ec", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "993b67f7-1482-4516-a184-b333411e57ec", + "element_result": "pkg:nuget/Microsoft.Identity.Web@1.26.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "c99dbe2b-29ce-4dec-99cf-5fe9af5b93e7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "c99dbe2b-29ce-4dec-99cf-5fe9af5b93e7", + "element_result": "Microsoft.Win32.SystemEvents", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "c99dbe2b-29ce-4dec-99cf-5fe9af5b93e7", + "element_result": "4.7.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "c99dbe2b-29ce-4dec-99cf-5fe9af5b93e7", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "c99dbe2b-29ce-4dec-99cf-5fe9af5b93e7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "c99dbe2b-29ce-4dec-99cf-5fe9af5b93e7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "c99dbe2b-29ce-4dec-99cf-5fe9af5b93e7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "c99dbe2b-29ce-4dec-99cf-5fe9af5b93e7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "c99dbe2b-29ce-4dec-99cf-5fe9af5b93e7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "c99dbe2b-29ce-4dec-99cf-5fe9af5b93e7", + "element_result": "pkg:nuget/Microsoft.Win32.SystemEvents@4.7.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "6f51fe36-6c54-4073-9035-09b00522b12b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "6f51fe36-6c54-4073-9035-09b00522b12b", + "element_result": "runtime.any.System.Reflection.Extensions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "6f51fe36-6c54-4073-9035-09b00522b12b", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "6f51fe36-6c54-4073-9035-09b00522b12b", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "6f51fe36-6c54-4073-9035-09b00522b12b", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "6f51fe36-6c54-4073-9035-09b00522b12b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "6f51fe36-6c54-4073-9035-09b00522b12b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "6f51fe36-6c54-4073-9035-09b00522b12b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "6f51fe36-6c54-4073-9035-09b00522b12b", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "6f51fe36-6c54-4073-9035-09b00522b12b", + "element_result": "pkg:nuget/runtime.any.System.Reflection.Extensions@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "4df90519-222f-4881-9630-0ebc33ed9bb4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "4df90519-222f-4881-9630-0ebc33ed9bb4", + "element_result": "System.Buffers", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "4df90519-222f-4881-9630-0ebc33ed9bb4", + "element_result": "4.5.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "4df90519-222f-4881-9630-0ebc33ed9bb4", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "4df90519-222f-4881-9630-0ebc33ed9bb4", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "4df90519-222f-4881-9630-0ebc33ed9bb4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "4df90519-222f-4881-9630-0ebc33ed9bb4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "4df90519-222f-4881-9630-0ebc33ed9bb4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "4df90519-222f-4881-9630-0ebc33ed9bb4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "4df90519-222f-4881-9630-0ebc33ed9bb4", + "element_result": "pkg:nuget/System.Buffers@4.5.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "2ad00273-4f45-484d-83a5-11530d6f49d1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "2ad00273-4f45-484d-83a5-11530d6f49d1", + "element_result": "ImplantatronProgrammerApp", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "2ad00273-4f45-484d-83a5-11530d6f49d1", + "element_result": "1.0.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "2ad00273-4f45-484d-83a5-11530d6f49d1", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "2ad00273-4f45-484d-83a5-11530d6f49d1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "2ad00273-4f45-484d-83a5-11530d6f49d1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "2ad00273-4f45-484d-83a5-11530d6f49d1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "2ad00273-4f45-484d-83a5-11530d6f49d1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "2ad00273-4f45-484d-83a5-11530d6f49d1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "2ad00273-4f45-484d-83a5-11530d6f49d1", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "582024ea-61fc-409c-8255-5ead4d815f71", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "582024ea-61fc-409c-8255-5ead4d815f71", + "element_result": "System.Security.Cryptography.Cng", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "582024ea-61fc-409c-8255-5ead4d815f71", + "element_result": "4.5.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "582024ea-61fc-409c-8255-5ead4d815f71", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "582024ea-61fc-409c-8255-5ead4d815f71", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "582024ea-61fc-409c-8255-5ead4d815f71", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "582024ea-61fc-409c-8255-5ead4d815f71", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "582024ea-61fc-409c-8255-5ead4d815f71", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "582024ea-61fc-409c-8255-5ead4d815f71", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "582024ea-61fc-409c-8255-5ead4d815f71", + "element_result": "pkg:nuget/System.Security.Cryptography.Cng@4.5.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "070d1fc3-def7-488e-8e83-4d1df17c2e6c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "070d1fc3-def7-488e-8e83-4d1df17c2e6c", + "element_result": "System.IdentityModel.Tokens.Jwt", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "070d1fc3-def7-488e-8e83-4d1df17c2e6c", + "element_result": "6.25.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "070d1fc3-def7-488e-8e83-4d1df17c2e6c", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "070d1fc3-def7-488e-8e83-4d1df17c2e6c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "070d1fc3-def7-488e-8e83-4d1df17c2e6c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "070d1fc3-def7-488e-8e83-4d1df17c2e6c", + "element_result": "https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "070d1fc3-def7-488e-8e83-4d1df17c2e6c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "070d1fc3-def7-488e-8e83-4d1df17c2e6c", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "070d1fc3-def7-488e-8e83-4d1df17c2e6c", + "element_result": "pkg:nuget/System.IdentityModel.Tokens.Jwt@6.25.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "5dbec162-3e24-4fa8-8ee3-eb9e47df8de6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "5dbec162-3e24-4fa8-8ee3-eb9e47df8de6", + "element_result": "System.Windows.Extensions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "5dbec162-3e24-4fa8-8ee3-eb9e47df8de6", + "element_result": "4.7.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "5dbec162-3e24-4fa8-8ee3-eb9e47df8de6", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "5dbec162-3e24-4fa8-8ee3-eb9e47df8de6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "5dbec162-3e24-4fa8-8ee3-eb9e47df8de6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "5dbec162-3e24-4fa8-8ee3-eb9e47df8de6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "5dbec162-3e24-4fa8-8ee3-eb9e47df8de6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "5dbec162-3e24-4fa8-8ee3-eb9e47df8de6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "5dbec162-3e24-4fa8-8ee3-eb9e47df8de6", + "element_result": "pkg:nuget/System.Windows.Extensions@4.7.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "59ae4849-4ad2-4e39-b823-e974d999db01", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "59ae4849-4ad2-4e39-b823-e974d999db01", + "element_result": "runtime.native.System.Security.Cryptography.Apple", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "59ae4849-4ad2-4e39-b823-e974d999db01", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "59ae4849-4ad2-4e39-b823-e974d999db01", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "59ae4849-4ad2-4e39-b823-e974d999db01", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "59ae4849-4ad2-4e39-b823-e974d999db01", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "59ae4849-4ad2-4e39-b823-e974d999db01", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "59ae4849-4ad2-4e39-b823-e974d999db01", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "59ae4849-4ad2-4e39-b823-e974d999db01", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "59ae4849-4ad2-4e39-b823-e974d999db01", + "element_result": "pkg:nuget/runtime.native.System.Security.Cryptography.Apple@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "e8bcd05d-b94f-408b-9de0-84440ba3fcc6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "e8bcd05d-b94f-408b-9de0-84440ba3fcc6", + "element_result": "System.Runtime.Extensions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "e8bcd05d-b94f-408b-9de0-84440ba3fcc6", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "e8bcd05d-b94f-408b-9de0-84440ba3fcc6", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "e8bcd05d-b94f-408b-9de0-84440ba3fcc6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "e8bcd05d-b94f-408b-9de0-84440ba3fcc6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "e8bcd05d-b94f-408b-9de0-84440ba3fcc6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "e8bcd05d-b94f-408b-9de0-84440ba3fcc6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "e8bcd05d-b94f-408b-9de0-84440ba3fcc6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "e8bcd05d-b94f-408b-9de0-84440ba3fcc6", + "element_result": "pkg:nuget/System.Runtime.Extensions@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "7c6257ed-1f31-4373-8850-f7679fe4b078", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "7c6257ed-1f31-4373-8850-f7679fe4b078", + "element_result": "Microsoft.Extensions.FileProviders.Abstractions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "7c6257ed-1f31-4373-8850-f7679fe4b078", + "element_result": "5.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "7c6257ed-1f31-4373-8850-f7679fe4b078", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "7c6257ed-1f31-4373-8850-f7679fe4b078", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "7c6257ed-1f31-4373-8850-f7679fe4b078", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "7c6257ed-1f31-4373-8850-f7679fe4b078", + "element_result": "git://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "7c6257ed-1f31-4373-8850-f7679fe4b078", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "7c6257ed-1f31-4373-8850-f7679fe4b078", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "7c6257ed-1f31-4373-8850-f7679fe4b078", + "element_result": "pkg:nuget/Microsoft.Extensions.FileProviders.Abstractions@5.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "4866462f-1d12-4a9e-b0f3-dbbb0dd78b81", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "4866462f-1d12-4a9e-b0f3-dbbb0dd78b81", + "element_result": "Microsoft.IdentityModel.Protocols.OpenIdConnect", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "4866462f-1d12-4a9e-b0f3-dbbb0dd78b81", + "element_result": "6.25.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "4866462f-1d12-4a9e-b0f3-dbbb0dd78b81", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "4866462f-1d12-4a9e-b0f3-dbbb0dd78b81", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "4866462f-1d12-4a9e-b0f3-dbbb0dd78b81", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "4866462f-1d12-4a9e-b0f3-dbbb0dd78b81", + "element_result": "https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "4866462f-1d12-4a9e-b0f3-dbbb0dd78b81", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "4866462f-1d12-4a9e-b0f3-dbbb0dd78b81", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "4866462f-1d12-4a9e-b0f3-dbbb0dd78b81", + "element_result": "pkg:nuget/Microsoft.IdentityModel.Protocols.OpenIdConnect@6.25.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "0c2b9376-701e-4874-a83f-923ae30df9eb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "0c2b9376-701e-4874-a83f-923ae30df9eb", + "element_result": "NuGet.ProjectModel", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "0c2b9376-701e-4874-a83f-923ae30df9eb", + "element_result": "5.9.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "0c2b9376-701e-4874-a83f-923ae30df9eb", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "0c2b9376-701e-4874-a83f-923ae30df9eb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "0c2b9376-701e-4874-a83f-923ae30df9eb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "0c2b9376-701e-4874-a83f-923ae30df9eb", + "element_result": "https://github.com/NuGet/NuGet.Client", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "0c2b9376-701e-4874-a83f-923ae30df9eb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "0c2b9376-701e-4874-a83f-923ae30df9eb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "0c2b9376-701e-4874-a83f-923ae30df9eb", + "element_result": "pkg:nuget/NuGet.ProjectModel@5.9.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "7385e264-0584-41e6-a7df-eda82ad7999d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "7385e264-0584-41e6-a7df-eda82ad7999d", + "element_result": "System.Diagnostics.Tracing", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "7385e264-0584-41e6-a7df-eda82ad7999d", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "7385e264-0584-41e6-a7df-eda82ad7999d", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "7385e264-0584-41e6-a7df-eda82ad7999d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "7385e264-0584-41e6-a7df-eda82ad7999d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "7385e264-0584-41e6-a7df-eda82ad7999d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "7385e264-0584-41e6-a7df-eda82ad7999d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "7385e264-0584-41e6-a7df-eda82ad7999d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "7385e264-0584-41e6-a7df-eda82ad7999d", + "element_result": "pkg:nuget/System.Diagnostics.Tracing@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "3432e366-625e-44e6-8532-a0609dae88bd", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "3432e366-625e-44e6-8532-a0609dae88bd", + "element_result": "System.Security.Cryptography.Primitives", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "3432e366-625e-44e6-8532-a0609dae88bd", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "3432e366-625e-44e6-8532-a0609dae88bd", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "3432e366-625e-44e6-8532-a0609dae88bd", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "3432e366-625e-44e6-8532-a0609dae88bd", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "3432e366-625e-44e6-8532-a0609dae88bd", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "3432e366-625e-44e6-8532-a0609dae88bd", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "3432e366-625e-44e6-8532-a0609dae88bd", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "3432e366-625e-44e6-8532-a0609dae88bd", + "element_result": "pkg:nuget/System.Security.Cryptography.Primitives@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "fd610abd-c96b-4290-ac54-8e7fcf4ba963", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "fd610abd-c96b-4290-ac54-8e7fcf4ba963", + "element_result": "Kernel", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "fd610abd-c96b-4290-ac54-8e7fcf4ba963", + "element_result": "4.4.302", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "fd610abd-c96b-4290-ac54-8e7fcf4ba963", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "fd610abd-c96b-4290-ac54-8e7fcf4ba963", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "fd610abd-c96b-4290-ac54-8e7fcf4ba963", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "fd610abd-c96b-4290-ac54-8e7fcf4ba963", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "fd610abd-c96b-4290-ac54-8e7fcf4ba963", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "fd610abd-c96b-4290-ac54-8e7fcf4ba963", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "fd610abd-c96b-4290-ac54-8e7fcf4ba963", + "element_result": "cpe:2.3:o:linux:linux_kernel:4.4.302:-:*:*:*:*:*:*", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "99c45693-2f0f-451a-bfbb-22bb366fbf0e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "99c45693-2f0f-451a-bfbb-22bb366fbf0e", + "element_result": "Microsoft.CodeAnalysis.CSharp.Workspaces", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "99c45693-2f0f-451a-bfbb-22bb366fbf0e", + "element_result": "4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "99c45693-2f0f-451a-bfbb-22bb366fbf0e", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "99c45693-2f0f-451a-bfbb-22bb366fbf0e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "99c45693-2f0f-451a-bfbb-22bb366fbf0e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "99c45693-2f0f-451a-bfbb-22bb366fbf0e", + "element_result": "https://github.com/dotnet/roslyn", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "99c45693-2f0f-451a-bfbb-22bb366fbf0e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "99c45693-2f0f-451a-bfbb-22bb366fbf0e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "99c45693-2f0f-451a-bfbb-22bb366fbf0e", + "element_result": "pkg:nuget/Microsoft.CodeAnalysis.CSharp.Workspaces@4.0.0-3.final", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "e7aee55e-5be6-427a-9d3b-37b974163453", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "e7aee55e-5be6-427a-9d3b-37b974163453", + "element_result": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "e7aee55e-5be6-427a-9d3b-37b974163453", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "e7aee55e-5be6-427a-9d3b-37b974163453", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "e7aee55e-5be6-427a-9d3b-37b974163453", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "e7aee55e-5be6-427a-9d3b-37b974163453", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "e7aee55e-5be6-427a-9d3b-37b974163453", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "e7aee55e-5be6-427a-9d3b-37b974163453", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "e7aee55e-5be6-427a-9d3b-37b974163453", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "e7aee55e-5be6-427a-9d3b-37b974163453", + "element_result": "pkg:nuget/runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "fb12b808-1501-4a8e-97d9-71271e509c6f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "fb12b808-1501-4a8e-97d9-71271e509c6f", + "element_result": "System.Threading.Tasks.Extensions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "fb12b808-1501-4a8e-97d9-71271e509c6f", + "element_result": "4.5.4", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "fb12b808-1501-4a8e-97d9-71271e509c6f", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "fb12b808-1501-4a8e-97d9-71271e509c6f", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "fb12b808-1501-4a8e-97d9-71271e509c6f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "fb12b808-1501-4a8e-97d9-71271e509c6f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "fb12b808-1501-4a8e-97d9-71271e509c6f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "fb12b808-1501-4a8e-97d9-71271e509c6f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "fb12b808-1501-4a8e-97d9-71271e509c6f", + "element_result": "pkg:nuget/System.Threading.Tasks.Extensions@4.5.4", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "c1686dbe-426c-4198-a622-786a2d2cd2ad", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "c1686dbe-426c-4198-a622-786a2d2cd2ad", + "element_result": "MessagePack.Annotations", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "c1686dbe-426c-4198-a622-786a2d2cd2ad", + "element_result": "2.1.152", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "c1686dbe-426c-4198-a622-786a2d2cd2ad", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "c1686dbe-426c-4198-a622-786a2d2cd2ad", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "c1686dbe-426c-4198-a622-786a2d2cd2ad", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "c1686dbe-426c-4198-a622-786a2d2cd2ad", + "element_result": "https://github.com/neuecc/MessagePack-CSharp", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "c1686dbe-426c-4198-a622-786a2d2cd2ad", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "c1686dbe-426c-4198-a622-786a2d2cd2ad", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "c1686dbe-426c-4198-a622-786a2d2cd2ad", + "element_result": "pkg:nuget/MessagePack.Annotations@2.1.152", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "37c6fc37-816d-4afb-8baa-85bd46723c62", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "37c6fc37-816d-4afb-8baa-85bd46723c62", + "element_result": "Microsoft.IdentityModel.Protocols", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "37c6fc37-816d-4afb-8baa-85bd46723c62", + "element_result": "6.25.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "37c6fc37-816d-4afb-8baa-85bd46723c62", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "37c6fc37-816d-4afb-8baa-85bd46723c62", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "37c6fc37-816d-4afb-8baa-85bd46723c62", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "37c6fc37-816d-4afb-8baa-85bd46723c62", + "element_result": "https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "37c6fc37-816d-4afb-8baa-85bd46723c62", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "37c6fc37-816d-4afb-8baa-85bd46723c62", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "37c6fc37-816d-4afb-8baa-85bd46723c62", + "element_result": "pkg:nuget/Microsoft.IdentityModel.Protocols@6.25.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "3e6460ff-cd57-4cf8-b949-b49afd748167", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "3e6460ff-cd57-4cf8-b949-b49afd748167", + "element_result": "runtime.any.System.Collections", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "3e6460ff-cd57-4cf8-b949-b49afd748167", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "3e6460ff-cd57-4cf8-b949-b49afd748167", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "3e6460ff-cd57-4cf8-b949-b49afd748167", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "3e6460ff-cd57-4cf8-b949-b49afd748167", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "3e6460ff-cd57-4cf8-b949-b49afd748167", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "3e6460ff-cd57-4cf8-b949-b49afd748167", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "3e6460ff-cd57-4cf8-b949-b49afd748167", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "3e6460ff-cd57-4cf8-b949-b49afd748167", + "element_result": "pkg:nuget/runtime.any.System.Collections@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "fa26c218-42ab-412d-b744-0b38ff96c2a7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "fa26c218-42ab-412d-b744-0b38ff96c2a7", + "element_result": "runtime.win.System.Net.Sockets", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "fa26c218-42ab-412d-b744-0b38ff96c2a7", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "fa26c218-42ab-412d-b744-0b38ff96c2a7", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "fa26c218-42ab-412d-b744-0b38ff96c2a7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "fa26c218-42ab-412d-b744-0b38ff96c2a7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "fa26c218-42ab-412d-b744-0b38ff96c2a7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "fa26c218-42ab-412d-b744-0b38ff96c2a7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "fa26c218-42ab-412d-b744-0b38ff96c2a7", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "fa26c218-42ab-412d-b744-0b38ff96c2a7", + "element_result": "pkg:nuget/runtime.win.System.Net.Sockets@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "2366f37c-171c-46fc-8bcb-a96d0508e433", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "2366f37c-171c-46fc-8bcb-a96d0508e433", + "element_result": "System.Resources.ResourceManager", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "2366f37c-171c-46fc-8bcb-a96d0508e433", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "2366f37c-171c-46fc-8bcb-a96d0508e433", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "2366f37c-171c-46fc-8bcb-a96d0508e433", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "2366f37c-171c-46fc-8bcb-a96d0508e433", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "2366f37c-171c-46fc-8bcb-a96d0508e433", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "2366f37c-171c-46fc-8bcb-a96d0508e433", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "2366f37c-171c-46fc-8bcb-a96d0508e433", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "2366f37c-171c-46fc-8bcb-a96d0508e433", + "element_result": "pkg:nuget/System.Resources.ResourceManager@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "8c5ad339-8c0f-4733-8aa2-d1aef4155999", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "8c5ad339-8c0f-4733-8aa2-d1aef4155999", + "element_result": "System.Runtime.Numerics", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "8c5ad339-8c0f-4733-8aa2-d1aef4155999", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "8c5ad339-8c0f-4733-8aa2-d1aef4155999", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "8c5ad339-8c0f-4733-8aa2-d1aef4155999", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "8c5ad339-8c0f-4733-8aa2-d1aef4155999", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "8c5ad339-8c0f-4733-8aa2-d1aef4155999", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "8c5ad339-8c0f-4733-8aa2-d1aef4155999", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "8c5ad339-8c0f-4733-8aa2-d1aef4155999", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "8c5ad339-8c0f-4733-8aa2-d1aef4155999", + "element_result": "pkg:nuget/System.Runtime.Numerics@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "1ab998c0-7f79-4500-a1ef-272358df10ab", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "1ab998c0-7f79-4500-a1ef-272358df10ab", + "element_result": "System.Security.Cryptography.Xml", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "1ab998c0-7f79-4500-a1ef-272358df10ab", + "element_result": "6.0.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "1ab998c0-7f79-4500-a1ef-272358df10ab", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "1ab998c0-7f79-4500-a1ef-272358df10ab", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "1ab998c0-7f79-4500-a1ef-272358df10ab", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "1ab998c0-7f79-4500-a1ef-272358df10ab", + "element_result": "https://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "1ab998c0-7f79-4500-a1ef-272358df10ab", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "1ab998c0-7f79-4500-a1ef-272358df10ab", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "1ab998c0-7f79-4500-a1ef-272358df10ab", + "element_result": "pkg:nuget/System.Security.Cryptography.Xml@6.0.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "58c59207-4acb-442b-bca6-53d71424be8e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "58c59207-4acb-442b-bca6-53d71424be8e", + "element_result": "System.Xml.XDocument", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "58c59207-4acb-442b-bca6-53d71424be8e", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "58c59207-4acb-442b-bca6-53d71424be8e", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "58c59207-4acb-442b-bca6-53d71424be8e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "58c59207-4acb-442b-bca6-53d71424be8e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "58c59207-4acb-442b-bca6-53d71424be8e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "58c59207-4acb-442b-bca6-53d71424be8e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "58c59207-4acb-442b-bca6-53d71424be8e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "58c59207-4acb-442b-bca6-53d71424be8e", + "element_result": "pkg:nuget/System.Xml.XDocument@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "9cb59d0e-26f2-44e6-950a-e3c720323e44", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "9cb59d0e-26f2-44e6-950a-e3c720323e44", + "element_result": "MessagePackAnalyzer", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "9cb59d0e-26f2-44e6-950a-e3c720323e44", + "element_result": "2.1.152", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "9cb59d0e-26f2-44e6-950a-e3c720323e44", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "9cb59d0e-26f2-44e6-950a-e3c720323e44", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "9cb59d0e-26f2-44e6-950a-e3c720323e44", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "9cb59d0e-26f2-44e6-950a-e3c720323e44", + "element_result": "https://github.com/neuecc/MessagePack-CSharp", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "9cb59d0e-26f2-44e6-950a-e3c720323e44", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "9cb59d0e-26f2-44e6-950a-e3c720323e44", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "9cb59d0e-26f2-44e6-950a-e3c720323e44", + "element_result": "pkg:nuget/MessagePackAnalyzer@2.1.152", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "9257f136-51d6-45ba-ab35-e9b6d60c3015", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "9257f136-51d6-45ba-ab35-e9b6d60c3015", + "element_result": "System.Composition.Convention", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "9257f136-51d6-45ba-ab35-e9b6d60c3015", + "element_result": "1.0.31", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "9257f136-51d6-45ba-ab35-e9b6d60c3015", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "9257f136-51d6-45ba-ab35-e9b6d60c3015", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "9257f136-51d6-45ba-ab35-e9b6d60c3015", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "9257f136-51d6-45ba-ab35-e9b6d60c3015", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "9257f136-51d6-45ba-ab35-e9b6d60c3015", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "9257f136-51d6-45ba-ab35-e9b6d60c3015", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "9257f136-51d6-45ba-ab35-e9b6d60c3015", + "element_result": "pkg:nuget/System.Composition.Convention@1.0.31", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "81a8a19b-8d94-4d66-902b-7a3608093d56", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "81a8a19b-8d94-4d66-902b-7a3608093d56", + "element_result": "System.Configuration.ConfigurationManager", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "81a8a19b-8d94-4d66-902b-7a3608093d56", + "element_result": "4.7.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "81a8a19b-8d94-4d66-902b-7a3608093d56", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "81a8a19b-8d94-4d66-902b-7a3608093d56", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "81a8a19b-8d94-4d66-902b-7a3608093d56", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "81a8a19b-8d94-4d66-902b-7a3608093d56", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "81a8a19b-8d94-4d66-902b-7a3608093d56", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "81a8a19b-8d94-4d66-902b-7a3608093d56", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "81a8a19b-8d94-4d66-902b-7a3608093d56", + "element_result": "pkg:nuget/System.Configuration.ConfigurationManager@4.7.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "32e48d2f-06f4-4db7-8784-84702d69bf7f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "32e48d2f-06f4-4db7-8784-84702d69bf7f", + "element_result": "System.Diagnostics.DiagnosticSource", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "32e48d2f-06f4-4db7-8784-84702d69bf7f", + "element_result": "6.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "32e48d2f-06f4-4db7-8784-84702d69bf7f", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "32e48d2f-06f4-4db7-8784-84702d69bf7f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "32e48d2f-06f4-4db7-8784-84702d69bf7f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "32e48d2f-06f4-4db7-8784-84702d69bf7f", + "element_result": "https://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "32e48d2f-06f4-4db7-8784-84702d69bf7f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "32e48d2f-06f4-4db7-8784-84702d69bf7f", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "32e48d2f-06f4-4db7-8784-84702d69bf7f", + "element_result": "pkg:nuget/System.Diagnostics.DiagnosticSource@6.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "579487c0-e8d7-40de-aa59-557a86e6f5a9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "579487c0-e8d7-40de-aa59-557a86e6f5a9", + "element_result": "System.Reflection.Extensions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "579487c0-e8d7-40de-aa59-557a86e6f5a9", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "579487c0-e8d7-40de-aa59-557a86e6f5a9", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "579487c0-e8d7-40de-aa59-557a86e6f5a9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "579487c0-e8d7-40de-aa59-557a86e6f5a9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "579487c0-e8d7-40de-aa59-557a86e6f5a9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "579487c0-e8d7-40de-aa59-557a86e6f5a9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "579487c0-e8d7-40de-aa59-557a86e6f5a9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "579487c0-e8d7-40de-aa59-557a86e6f5a9", + "element_result": "pkg:nuget/System.Reflection.Extensions@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "925ae12b-e4c6-4438-a79c-672595f25ddd", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "925ae12b-e4c6-4438-a79c-672595f25ddd", + "element_result": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "925ae12b-e4c6-4438-a79c-672595f25ddd", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "925ae12b-e4c6-4438-a79c-672595f25ddd", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "925ae12b-e4c6-4438-a79c-672595f25ddd", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "925ae12b-e4c6-4438-a79c-672595f25ddd", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "925ae12b-e4c6-4438-a79c-672595f25ddd", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "925ae12b-e4c6-4438-a79c-672595f25ddd", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "925ae12b-e4c6-4438-a79c-672595f25ddd", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "925ae12b-e4c6-4438-a79c-672595f25ddd", + "element_result": "pkg:nuget/runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "29f52066-e2b0-4ed5-9ee2-aa7cd255d49e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "29f52066-e2b0-4ed5-9ee2-aa7cd255d49e", + "element_result": "Microsoft.EntityFrameworkCore.Abstractions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "29f52066-e2b0-4ed5-9ee2-aa7cd255d49e", + "element_result": "6.0.5", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "29f52066-e2b0-4ed5-9ee2-aa7cd255d49e", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "29f52066-e2b0-4ed5-9ee2-aa7cd255d49e", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "29f52066-e2b0-4ed5-9ee2-aa7cd255d49e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "29f52066-e2b0-4ed5-9ee2-aa7cd255d49e", + "element_result": "https://github.com/dotnet/efcore", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "29f52066-e2b0-4ed5-9ee2-aa7cd255d49e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "29f52066-e2b0-4ed5-9ee2-aa7cd255d49e", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "29f52066-e2b0-4ed5-9ee2-aa7cd255d49e", + "element_result": "pkg:nuget/Microsoft.EntityFrameworkCore.Abstractions@6.0.5", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "505f675f-6700-4fd4-863f-336e29ef6152", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "505f675f-6700-4fd4-863f-336e29ef6152", + "element_result": "Microsoft.Web.WebView2", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "505f675f-6700-4fd4-863f-336e29ef6152", + "element_result": "1.0.1185.39", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "505f675f-6700-4fd4-863f-336e29ef6152", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "505f675f-6700-4fd4-863f-336e29ef6152", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "505f675f-6700-4fd4-863f-336e29ef6152", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "505f675f-6700-4fd4-863f-336e29ef6152", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "505f675f-6700-4fd4-863f-336e29ef6152", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "505f675f-6700-4fd4-863f-336e29ef6152", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "505f675f-6700-4fd4-863f-336e29ef6152", + "element_result": "pkg:nuget/Microsoft.Web.WebView2@1.0.1185.39", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "7970ccda-8c3b-4033-8b0a-c3f30043a7e6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "7970ccda-8c3b-4033-8b0a-c3f30043a7e6", + "element_result": "runtime.win7.System.Private.Uri", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "7970ccda-8c3b-4033-8b0a-c3f30043a7e6", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "7970ccda-8c3b-4033-8b0a-c3f30043a7e6", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "7970ccda-8c3b-4033-8b0a-c3f30043a7e6", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "7970ccda-8c3b-4033-8b0a-c3f30043a7e6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "7970ccda-8c3b-4033-8b0a-c3f30043a7e6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "7970ccda-8c3b-4033-8b0a-c3f30043a7e6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "7970ccda-8c3b-4033-8b0a-c3f30043a7e6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "7970ccda-8c3b-4033-8b0a-c3f30043a7e6", + "element_result": "pkg:nuget/runtime.win7.System.Private.Uri@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "9366816d-e29b-4eb2-92d2-86b4307951fb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "9366816d-e29b-4eb2-92d2-86b4307951fb", + "element_result": "System.IO.FileSystem.Primitives", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "9366816d-e29b-4eb2-92d2-86b4307951fb", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "9366816d-e29b-4eb2-92d2-86b4307951fb", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "9366816d-e29b-4eb2-92d2-86b4307951fb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "9366816d-e29b-4eb2-92d2-86b4307951fb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "9366816d-e29b-4eb2-92d2-86b4307951fb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "9366816d-e29b-4eb2-92d2-86b4307951fb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "9366816d-e29b-4eb2-92d2-86b4307951fb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "9366816d-e29b-4eb2-92d2-86b4307951fb", + "element_result": "pkg:nuget/System.IO.FileSystem.Primitives@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "e362a1bf-a3c3-4153-a64b-5bb80263e826", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "e362a1bf-a3c3-4153-a64b-5bb80263e826", + "element_result": "System.Linq", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "e362a1bf-a3c3-4153-a64b-5bb80263e826", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "e362a1bf-a3c3-4153-a64b-5bb80263e826", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "e362a1bf-a3c3-4153-a64b-5bb80263e826", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "e362a1bf-a3c3-4153-a64b-5bb80263e826", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "e362a1bf-a3c3-4153-a64b-5bb80263e826", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "e362a1bf-a3c3-4153-a64b-5bb80263e826", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "e362a1bf-a3c3-4153-a64b-5bb80263e826", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "e362a1bf-a3c3-4153-a64b-5bb80263e826", + "element_result": "pkg:nuget/System.Linq@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "cddd03c1-2cf8-45bf-9480-426559844cb0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "cddd03c1-2cf8-45bf-9480-426559844cb0", + "element_result": "System.Runtime", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "cddd03c1-2cf8-45bf-9480-426559844cb0", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "cddd03c1-2cf8-45bf-9480-426559844cb0", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "cddd03c1-2cf8-45bf-9480-426559844cb0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "cddd03c1-2cf8-45bf-9480-426559844cb0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "cddd03c1-2cf8-45bf-9480-426559844cb0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "cddd03c1-2cf8-45bf-9480-426559844cb0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "cddd03c1-2cf8-45bf-9480-426559844cb0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "cddd03c1-2cf8-45bf-9480-426559844cb0", + "element_result": "pkg:nuget/System.Runtime@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "d09299a6-09c4-45a8-a608-a3d7f4926c54", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "d09299a6-09c4-45a8-a608-a3d7f4926c54", + "element_result": "System.Text.Json", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "d09299a6-09c4-45a8-a608-a3d7f4926c54", + "element_result": "6.0.2", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "d09299a6-09c4-45a8-a608-a3d7f4926c54", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "d09299a6-09c4-45a8-a608-a3d7f4926c54", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "d09299a6-09c4-45a8-a608-a3d7f4926c54", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "d09299a6-09c4-45a8-a608-a3d7f4926c54", + "element_result": "https://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "d09299a6-09c4-45a8-a608-a3d7f4926c54", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "d09299a6-09c4-45a8-a608-a3d7f4926c54", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "d09299a6-09c4-45a8-a608-a3d7f4926c54", + "element_result": "pkg:nuget/System.Text.Json@6.0.2", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "4468bf25-acfe-4a5e-bed5-548c6b34f823", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "4468bf25-acfe-4a5e-bed5-548c6b34f823", + "element_result": "ColorCode.WinUI", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "4468bf25-acfe-4a5e-bed5-548c6b34f823", + "element_result": "2.0.13", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "4468bf25-acfe-4a5e-bed5-548c6b34f823", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "4468bf25-acfe-4a5e-bed5-548c6b34f823", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "4468bf25-acfe-4a5e-bed5-548c6b34f823", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "4468bf25-acfe-4a5e-bed5-548c6b34f823", + "element_result": "https://github.com/CommunityToolkit/ColorCode-Universal", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "4468bf25-acfe-4a5e-bed5-548c6b34f823", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "4468bf25-acfe-4a5e-bed5-548c6b34f823", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "4468bf25-acfe-4a5e-bed5-548c6b34f823", + "element_result": "pkg:nuget/ColorCode.WinUI@2.0.13", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "b2cb4562-2d59-4f06-9997-f89142d32dbd", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "b2cb4562-2d59-4f06-9997-f89142d32dbd", + "element_result": "Microsoft.EntityFrameworkCore.Sqlite.Core", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "b2cb4562-2d59-4f06-9997-f89142d32dbd", + "element_result": "6.0.4", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "b2cb4562-2d59-4f06-9997-f89142d32dbd", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "b2cb4562-2d59-4f06-9997-f89142d32dbd", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "b2cb4562-2d59-4f06-9997-f89142d32dbd", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "b2cb4562-2d59-4f06-9997-f89142d32dbd", + "element_result": "https://github.com/dotnet/efcore", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "b2cb4562-2d59-4f06-9997-f89142d32dbd", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "b2cb4562-2d59-4f06-9997-f89142d32dbd", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "b2cb4562-2d59-4f06-9997-f89142d32dbd", + "element_result": "pkg:nuget/Microsoft.EntityFrameworkCore.Sqlite.Core@6.0.4", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "d8aa70b1-4171-4d98-867e-2d7b14807960", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "d8aa70b1-4171-4d98-867e-2d7b14807960", + "element_result": "Microsoft.EntityFrameworkCore.SqlServer", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "d8aa70b1-4171-4d98-867e-2d7b14807960", + "element_result": "6.0.5", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "d8aa70b1-4171-4d98-867e-2d7b14807960", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "d8aa70b1-4171-4d98-867e-2d7b14807960", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "d8aa70b1-4171-4d98-867e-2d7b14807960", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "d8aa70b1-4171-4d98-867e-2d7b14807960", + "element_result": "https://github.com/dotnet/efcore", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "d8aa70b1-4171-4d98-867e-2d7b14807960", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "d8aa70b1-4171-4d98-867e-2d7b14807960", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "d8aa70b1-4171-4d98-867e-2d7b14807960", + "element_result": "pkg:nuget/Microsoft.EntityFrameworkCore.SqlServer@6.0.5", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "64f31d9c-4539-42f7-9133-bb046c30e106", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "64f31d9c-4539-42f7-9133-bb046c30e106", + "element_result": "Microsoft.IdentityModel.Protocols", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "64f31d9c-4539-42f7-9133-bb046c30e106", + "element_result": "6.15.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "64f31d9c-4539-42f7-9133-bb046c30e106", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "64f31d9c-4539-42f7-9133-bb046c30e106", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "64f31d9c-4539-42f7-9133-bb046c30e106", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "64f31d9c-4539-42f7-9133-bb046c30e106", + "element_result": "https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "64f31d9c-4539-42f7-9133-bb046c30e106", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "64f31d9c-4539-42f7-9133-bb046c30e106", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "64f31d9c-4539-42f7-9133-bb046c30e106", + "element_result": "pkg:nuget/Microsoft.IdentityModel.Protocols@6.15.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "5e111147-310c-44d0-a25a-d65f06eeeede", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "5e111147-310c-44d0-a25a-d65f06eeeede", + "element_result": "Microsoft.NETCore.Platforms", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "5e111147-310c-44d0-a25a-d65f06eeeede", + "element_result": "3.1.4", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "5e111147-310c-44d0-a25a-d65f06eeeede", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "5e111147-310c-44d0-a25a-d65f06eeeede", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "5e111147-310c-44d0-a25a-d65f06eeeede", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "5e111147-310c-44d0-a25a-d65f06eeeede", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "5e111147-310c-44d0-a25a-d65f06eeeede", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "5e111147-310c-44d0-a25a-d65f06eeeede", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "5e111147-310c-44d0-a25a-d65f06eeeede", + "element_result": "pkg:nuget/Microsoft.NETCore.Platforms@3.1.4", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "bcfd937a-5ec0-4b9f-b832-b86edb3ef275", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "bcfd937a-5ec0-4b9f-b832-b86edb3ef275", + "element_result": "System.Runtime.InteropServices", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "bcfd937a-5ec0-4b9f-b832-b86edb3ef275", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "bcfd937a-5ec0-4b9f-b832-b86edb3ef275", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "bcfd937a-5ec0-4b9f-b832-b86edb3ef275", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "bcfd937a-5ec0-4b9f-b832-b86edb3ef275", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "bcfd937a-5ec0-4b9f-b832-b86edb3ef275", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "bcfd937a-5ec0-4b9f-b832-b86edb3ef275", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "bcfd937a-5ec0-4b9f-b832-b86edb3ef275", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "bcfd937a-5ec0-4b9f-b832-b86edb3ef275", + "element_result": "pkg:nuget/System.Runtime.InteropServices@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "9209ebf5-9f2c-4843-b4fb-591c5d61fc05", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "9209ebf5-9f2c-4843-b4fb-591c5d61fc05", + "element_result": "System.Threading.Tasks", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "9209ebf5-9f2c-4843-b4fb-591c5d61fc05", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "9209ebf5-9f2c-4843-b4fb-591c5d61fc05", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "9209ebf5-9f2c-4843-b4fb-591c5d61fc05", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "9209ebf5-9f2c-4843-b4fb-591c5d61fc05", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "9209ebf5-9f2c-4843-b4fb-591c5d61fc05", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "9209ebf5-9f2c-4843-b4fb-591c5d61fc05", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "9209ebf5-9f2c-4843-b4fb-591c5d61fc05", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "9209ebf5-9f2c-4843-b4fb-591c5d61fc05", + "element_result": "pkg:nuget/System.Threading.Tasks@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "aef46fba-1d3d-42d8-9280-575c48f04dd4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "aef46fba-1d3d-42d8-9280-575c48f04dd4", + "element_result": "ColorCode.Core", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "aef46fba-1d3d-42d8-9280-575c48f04dd4", + "element_result": "2.0.13", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "aef46fba-1d3d-42d8-9280-575c48f04dd4", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "aef46fba-1d3d-42d8-9280-575c48f04dd4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "aef46fba-1d3d-42d8-9280-575c48f04dd4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "aef46fba-1d3d-42d8-9280-575c48f04dd4", + "element_result": "https://github.com/CommunityToolkit/ColorCode-Universal", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "aef46fba-1d3d-42d8-9280-575c48f04dd4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "aef46fba-1d3d-42d8-9280-575c48f04dd4", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "aef46fba-1d3d-42d8-9280-575c48f04dd4", + "element_result": "pkg:nuget/ColorCode.Core@2.0.13", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "3d3c0d6d-7b99-4079-855f-815c0012899d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "3d3c0d6d-7b99-4079-855f-815c0012899d", + "element_result": "runtime.any.System.IO", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "3d3c0d6d-7b99-4079-855f-815c0012899d", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "3d3c0d6d-7b99-4079-855f-815c0012899d", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "3d3c0d6d-7b99-4079-855f-815c0012899d", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "3d3c0d6d-7b99-4079-855f-815c0012899d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "3d3c0d6d-7b99-4079-855f-815c0012899d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "3d3c0d6d-7b99-4079-855f-815c0012899d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "3d3c0d6d-7b99-4079-855f-815c0012899d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "3d3c0d6d-7b99-4079-855f-815c0012899d", + "element_result": "pkg:nuget/runtime.any.System.IO@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "50af6ca1-fc9a-4bb1-ace4-d0338164f243", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "50af6ca1-fc9a-4bb1-ace4-d0338164f243", + "element_result": "System.Composition.Hosting", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "50af6ca1-fc9a-4bb1-ace4-d0338164f243", + "element_result": "1.0.31", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "50af6ca1-fc9a-4bb1-ace4-d0338164f243", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "50af6ca1-fc9a-4bb1-ace4-d0338164f243", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "50af6ca1-fc9a-4bb1-ace4-d0338164f243", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "50af6ca1-fc9a-4bb1-ace4-d0338164f243", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "50af6ca1-fc9a-4bb1-ace4-d0338164f243", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "50af6ca1-fc9a-4bb1-ace4-d0338164f243", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "50af6ca1-fc9a-4bb1-ace4-d0338164f243", + "element_result": "pkg:nuget/System.Composition.Hosting@1.0.31", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "de62ae9b-db5e-4879-bf61-189dee907f20", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "de62ae9b-db5e-4879-bf61-189dee907f20", + "element_result": "Microsoft.EntityFrameworkCore.Sqlite", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "de62ae9b-db5e-4879-bf61-189dee907f20", + "element_result": "6.0.4", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "de62ae9b-db5e-4879-bf61-189dee907f20", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "de62ae9b-db5e-4879-bf61-189dee907f20", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "de62ae9b-db5e-4879-bf61-189dee907f20", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "de62ae9b-db5e-4879-bf61-189dee907f20", + "element_result": "https://github.com/dotnet/efcore", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "de62ae9b-db5e-4879-bf61-189dee907f20", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "de62ae9b-db5e-4879-bf61-189dee907f20", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "de62ae9b-db5e-4879-bf61-189dee907f20", + "element_result": "pkg:nuget/Microsoft.EntityFrameworkCore.Sqlite@6.0.4", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "8b9373b2-9d06-40c1-93e4-9889e7c32628", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "8b9373b2-9d06-40c1-93e4-9889e7c32628", + "element_result": "Microsoft.Extensions.Caching.Abstractions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "8b9373b2-9d06-40c1-93e4-9889e7c32628", + "element_result": "6.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "8b9373b2-9d06-40c1-93e4-9889e7c32628", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "8b9373b2-9d06-40c1-93e4-9889e7c32628", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "8b9373b2-9d06-40c1-93e4-9889e7c32628", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "8b9373b2-9d06-40c1-93e4-9889e7c32628", + "element_result": "https://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "8b9373b2-9d06-40c1-93e4-9889e7c32628", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "8b9373b2-9d06-40c1-93e4-9889e7c32628", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "8b9373b2-9d06-40c1-93e4-9889e7c32628", + "element_result": "pkg:nuget/Microsoft.Extensions.Caching.Abstractions@6.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "39baa774-7939-42cf-9d62-5682ecbeb791", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "39baa774-7939-42cf-9d62-5682ecbeb791", + "element_result": "System.Globalization.Extensions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "39baa774-7939-42cf-9d62-5682ecbeb791", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "39baa774-7939-42cf-9d62-5682ecbeb791", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "39baa774-7939-42cf-9d62-5682ecbeb791", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "39baa774-7939-42cf-9d62-5682ecbeb791", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "39baa774-7939-42cf-9d62-5682ecbeb791", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "39baa774-7939-42cf-9d62-5682ecbeb791", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "39baa774-7939-42cf-9d62-5682ecbeb791", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "39baa774-7939-42cf-9d62-5682ecbeb791", + "element_result": "pkg:nuget/System.Globalization.Extensions@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "f329acad-c878-42bc-a888-190509c14a93", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "f329acad-c878-42bc-a888-190509c14a93", + "element_result": "System.IO.Pipelines", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "f329acad-c878-42bc-a888-190509c14a93", + "element_result": "5.0.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "f329acad-c878-42bc-a888-190509c14a93", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "f329acad-c878-42bc-a888-190509c14a93", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "f329acad-c878-42bc-a888-190509c14a93", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "f329acad-c878-42bc-a888-190509c14a93", + "element_result": "git://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "f329acad-c878-42bc-a888-190509c14a93", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "f329acad-c878-42bc-a888-190509c14a93", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "f329acad-c878-42bc-a888-190509c14a93", + "element_result": "pkg:nuget/System.IO.Pipelines@5.0.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "2889f4c3-e2ed-4d86-afe7-f8fb2a2b6fed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "2889f4c3-e2ed-4d86-afe7-f8fb2a2b6fed", + "element_result": "System.Security.Cryptography.Cng", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "2889f4c3-e2ed-4d86-afe7-f8fb2a2b6fed", + "element_result": "5.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "2889f4c3-e2ed-4d86-afe7-f8fb2a2b6fed", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "2889f4c3-e2ed-4d86-afe7-f8fb2a2b6fed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "2889f4c3-e2ed-4d86-afe7-f8fb2a2b6fed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "2889f4c3-e2ed-4d86-afe7-f8fb2a2b6fed", + "element_result": "git://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "2889f4c3-e2ed-4d86-afe7-f8fb2a2b6fed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "2889f4c3-e2ed-4d86-afe7-f8fb2a2b6fed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "2889f4c3-e2ed-4d86-afe7-f8fb2a2b6fed", + "element_result": "pkg:nuget/System.Security.Cryptography.Cng@5.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "c0f5614f-1763-4f32-8de9-84c9598885b0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "c0f5614f-1763-4f32-8de9-84c9598885b0", + "element_result": "CommunityToolkit.WinUI.UI", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "c0f5614f-1763-4f32-8de9-84c9598885b0", + "element_result": "7.1.2", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "c0f5614f-1763-4f32-8de9-84c9598885b0", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "c0f5614f-1763-4f32-8de9-84c9598885b0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "c0f5614f-1763-4f32-8de9-84c9598885b0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "c0f5614f-1763-4f32-8de9-84c9598885b0", + "element_result": "https://github.com/CommunityToolkit/WindowsCommunityToolkit", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "c0f5614f-1763-4f32-8de9-84c9598885b0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "c0f5614f-1763-4f32-8de9-84c9598885b0", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "c0f5614f-1763-4f32-8de9-84c9598885b0", + "element_result": "pkg:nuget/CommunityToolkit.WinUI.UI@7.1.2", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "57451533-49a2-4cbb-af88-237f97f4ec69", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "57451533-49a2-4cbb-af88-237f97f4ec69", + "element_result": "Microsoft.Extensions.Logging.Abstractions", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "57451533-49a2-4cbb-af88-237f97f4ec69", + "element_result": "6.0.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "57451533-49a2-4cbb-af88-237f97f4ec69", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "57451533-49a2-4cbb-af88-237f97f4ec69", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "57451533-49a2-4cbb-af88-237f97f4ec69", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "57451533-49a2-4cbb-af88-237f97f4ec69", + "element_result": "https://github.com/dotnet/runtime", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "57451533-49a2-4cbb-af88-237f97f4ec69", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "57451533-49a2-4cbb-af88-237f97f4ec69", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "57451533-49a2-4cbb-af88-237f97f4ec69", + "element_result": "pkg:nuget/Microsoft.Extensions.Logging.Abstractions@6.0.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "b3962480-62b2-4c49-89f5-7c80d8555627", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "b3962480-62b2-4c49-89f5-7c80d8555627", + "element_result": "Microsoft.IdentityModel.Tokens", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "b3962480-62b2-4c49-89f5-7c80d8555627", + "element_result": "6.15.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "b3962480-62b2-4c49-89f5-7c80d8555627", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "b3962480-62b2-4c49-89f5-7c80d8555627", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "b3962480-62b2-4c49-89f5-7c80d8555627", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "b3962480-62b2-4c49-89f5-7c80d8555627", + "element_result": "https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "b3962480-62b2-4c49-89f5-7c80d8555627", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "b3962480-62b2-4c49-89f5-7c80d8555627", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "b3962480-62b2-4c49-89f5-7c80d8555627", + "element_result": "pkg:nuget/Microsoft.IdentityModel.Tokens@6.15.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "cd6ba920-9b73-4184-9278-3d937a674be6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "cd6ba920-9b73-4184-9278-3d937a674be6", + "element_result": "System.Threading.Overlapped", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "cd6ba920-9b73-4184-9278-3d937a674be6", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "cd6ba920-9b73-4184-9278-3d937a674be6", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "cd6ba920-9b73-4184-9278-3d937a674be6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "cd6ba920-9b73-4184-9278-3d937a674be6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "cd6ba920-9b73-4184-9278-3d937a674be6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "cd6ba920-9b73-4184-9278-3d937a674be6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "cd6ba920-9b73-4184-9278-3d937a674be6", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "cd6ba920-9b73-4184-9278-3d937a674be6", + "element_result": "pkg:nuget/System.Threading.Overlapped@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "fd3e26e2-ce41-4d28-8817-07d8791ffddb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "fd3e26e2-ce41-4d28-8817-07d8791ffddb", + "element_result": "System.Threading.Timer", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "fd3e26e2-ce41-4d28-8817-07d8791ffddb", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "fd3e26e2-ce41-4d28-8817-07d8791ffddb", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "fd3e26e2-ce41-4d28-8817-07d8791ffddb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "fd3e26e2-ce41-4d28-8817-07d8791ffddb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "fd3e26e2-ce41-4d28-8817-07d8791ffddb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "fd3e26e2-ce41-4d28-8817-07d8791ffddb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "fd3e26e2-ce41-4d28-8817-07d8791ffddb", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "fd3e26e2-ce41-4d28-8817-07d8791ffddb", + "element_result": "pkg:nuget/System.Threading.Timer@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "c85e8ebc-be3e-48d6-8e46-212222e7b6a3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "c85e8ebc-be3e-48d6-8e46-212222e7b6a3", + "element_result": "Azure.Core", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "c85e8ebc-be3e-48d6-8e46-212222e7b6a3", + "element_result": "1.6.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "c85e8ebc-be3e-48d6-8e46-212222e7b6a3", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "c85e8ebc-be3e-48d6-8e46-212222e7b6a3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "c85e8ebc-be3e-48d6-8e46-212222e7b6a3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "c85e8ebc-be3e-48d6-8e46-212222e7b6a3", + "element_result": "https://github.com/Azure/azure-sdk-for-net", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "c85e8ebc-be3e-48d6-8e46-212222e7b6a3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "c85e8ebc-be3e-48d6-8e46-212222e7b6a3", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "c85e8ebc-be3e-48d6-8e46-212222e7b6a3", + "element_result": "pkg:nuget/Azure.Core@1.6.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "c5f5e2bf-071a-4d8f-b3dd-1646916c4c39", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "c5f5e2bf-071a-4d8f-b3dd-1646916c4c39", + "element_result": "Microsoft.Graph.Core", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "c5f5e2bf-071a-4d8f-b3dd-1646916c4c39", + "element_result": "2.0.8", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "c5f5e2bf-071a-4d8f-b3dd-1646916c4c39", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "c5f5e2bf-071a-4d8f-b3dd-1646916c4c39", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "c5f5e2bf-071a-4d8f-b3dd-1646916c4c39", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "c5f5e2bf-071a-4d8f-b3dd-1646916c4c39", + "element_result": "https://github.com/microsoftgraph/msgraph-sdk-dotnet-core", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "c5f5e2bf-071a-4d8f-b3dd-1646916c4c39", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "c5f5e2bf-071a-4d8f-b3dd-1646916c4c39", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "c5f5e2bf-071a-4d8f-b3dd-1646916c4c39", + "element_result": "pkg:nuget/Microsoft.Graph.Core@2.0.8", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "4760efbb-eb45-49fe-926d-637bd62fb443", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "4760efbb-eb45-49fe-926d-637bd62fb443", + "element_result": "System.Net.Sockets", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "4760efbb-eb45-49fe-926d-637bd62fb443", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "4760efbb-eb45-49fe-926d-637bd62fb443", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "4760efbb-eb45-49fe-926d-637bd62fb443", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "4760efbb-eb45-49fe-926d-637bd62fb443", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "4760efbb-eb45-49fe-926d-637bd62fb443", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "4760efbb-eb45-49fe-926d-637bd62fb443", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "4760efbb-eb45-49fe-926d-637bd62fb443", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "4760efbb-eb45-49fe-926d-637bd62fb443", + "element_result": "pkg:nuget/System.Net.Sockets@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "b74e4c7e-7d80-49f5-b31e-29be385dc97d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "b74e4c7e-7d80-49f5-b31e-29be385dc97d", + "element_result": "CommunityToolkit.WinUI.UI.Controls.Input", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "b74e4c7e-7d80-49f5-b31e-29be385dc97d", + "element_result": "7.1.2", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "b74e4c7e-7d80-49f5-b31e-29be385dc97d", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "b74e4c7e-7d80-49f5-b31e-29be385dc97d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "b74e4c7e-7d80-49f5-b31e-29be385dc97d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "b74e4c7e-7d80-49f5-b31e-29be385dc97d", + "element_result": "https://github.com/CommunityToolkit/WindowsCommunityToolkit", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "b74e4c7e-7d80-49f5-b31e-29be385dc97d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "b74e4c7e-7d80-49f5-b31e-29be385dc97d", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "b74e4c7e-7d80-49f5-b31e-29be385dc97d", + "element_result": "pkg:nuget/CommunityToolkit.WinUI.UI.Controls.Input@7.1.2", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "402bf229-34de-4d01-a300-965312a9a103", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "402bf229-34de-4d01-a300-965312a9a103", + "element_result": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "402bf229-34de-4d01-a300-965312a9a103", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "402bf229-34de-4d01-a300-965312a9a103", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "402bf229-34de-4d01-a300-965312a9a103", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "402bf229-34de-4d01-a300-965312a9a103", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "402bf229-34de-4d01-a300-965312a9a103", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "402bf229-34de-4d01-a300-965312a9a103", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "402bf229-34de-4d01-a300-965312a9a103", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "402bf229-34de-4d01-a300-965312a9a103", + "element_result": "pkg:nuget/runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "318b7f58-0d7d-4b5a-a571-1b7e1e701b81", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "318b7f58-0d7d-4b5a-a571-1b7e1e701b81", + "element_result": "Microsoft.Identity.Client", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "318b7f58-0d7d-4b5a-a571-1b7e1e701b81", + "element_result": "4.46.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "318b7f58-0d7d-4b5a-a571-1b7e1e701b81", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "318b7f58-0d7d-4b5a-a571-1b7e1e701b81", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "318b7f58-0d7d-4b5a-a571-1b7e1e701b81", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "318b7f58-0d7d-4b5a-a571-1b7e1e701b81", + "element_result": "https://github.com/AzureAD/microsoft-authentication-library-for-dotnet", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "318b7f58-0d7d-4b5a-a571-1b7e1e701b81", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "318b7f58-0d7d-4b5a-a571-1b7e1e701b81", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "318b7f58-0d7d-4b5a-a571-1b7e1e701b81", + "element_result": "pkg:nuget/Microsoft.Identity.Client@4.46.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "28af7266-13fe-419e-8245-302f973f96ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "28af7266-13fe-419e-8245-302f973f96ed", + "element_result": "NETStandard.Library", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "28af7266-13fe-419e-8245-302f973f96ed", + "element_result": "1.6.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "28af7266-13fe-419e-8245-302f973f96ed", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "28af7266-13fe-419e-8245-302f973f96ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "28af7266-13fe-419e-8245-302f973f96ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "28af7266-13fe-419e-8245-302f973f96ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "28af7266-13fe-419e-8245-302f973f96ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "28af7266-13fe-419e-8245-302f973f96ed", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "28af7266-13fe-419e-8245-302f973f96ed", + "element_result": "pkg:nuget/NETStandard.Library@1.6.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "33ed3dd1-13d1-44d3-94bf-614478746ef9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "33ed3dd1-13d1-44d3-94bf-614478746ef9", + "element_result": "Implantatron Programmer", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "33ed3dd1-13d1-44d3-94bf-614478746ef9", + "element_result": "1.0.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "33ed3dd1-13d1-44d3-94bf-614478746ef9", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "33ed3dd1-13d1-44d3-94bf-614478746ef9", + "element_result": "no-relationships", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "33ed3dd1-13d1-44d3-94bf-614478746ef9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "33ed3dd1-13d1-44d3-94bf-614478746ef9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "33ed3dd1-13d1-44d3-94bf-614478746ef9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "33ed3dd1-13d1-44d3-94bf-614478746ef9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "33ed3dd1-13d1-44d3-94bf-614478746ef9", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "71f54441-e491-49ce-b87e-a39e06fef13a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "71f54441-e491-49ce-b87e-a39e06fef13a", + "element_result": "Microsoft.EntityFrameworkCore.Relational", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "71f54441-e491-49ce-b87e-a39e06fef13a", + "element_result": "6.0.5", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "71f54441-e491-49ce-b87e-a39e06fef13a", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "71f54441-e491-49ce-b87e-a39e06fef13a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "71f54441-e491-49ce-b87e-a39e06fef13a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "71f54441-e491-49ce-b87e-a39e06fef13a", + "element_result": "https://github.com/dotnet/efcore", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "71f54441-e491-49ce-b87e-a39e06fef13a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "71f54441-e491-49ce-b87e-a39e06fef13a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "71f54441-e491-49ce-b87e-a39e06fef13a", + "element_result": "pkg:nuget/Microsoft.EntityFrameworkCore.Relational@6.0.5", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "6746800d-835c-4f90-bd2b-52b30564c393", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "6746800d-835c-4f90-bd2b-52b30564c393", + "element_result": "Microsoft.VisualStudio.Web.CodeGeneration", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "6746800d-835c-4f90-bd2b-52b30564c393", + "element_result": "6.0.0-rc.1.21464.1", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "6746800d-835c-4f90-bd2b-52b30564c393", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "6746800d-835c-4f90-bd2b-52b30564c393", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "6746800d-835c-4f90-bd2b-52b30564c393", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "6746800d-835c-4f90-bd2b-52b30564c393", + "element_result": "https://github.com/dotnet/Scaffolding", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "6746800d-835c-4f90-bd2b-52b30564c393", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "6746800d-835c-4f90-bd2b-52b30564c393", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "6746800d-835c-4f90-bd2b-52b30564c393", + "element_result": "pkg:nuget/Microsoft.VisualStudio.Web.CodeGeneration@6.0.0-rc.1.21464.1", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "a9c4ed17-20da-4af0-8e9c-65f472c37564", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "a9c4ed17-20da-4af0-8e9c-65f472c37564", + "element_result": "System.Net.NameResolution", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "a9c4ed17-20da-4af0-8e9c-65f472c37564", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "a9c4ed17-20da-4af0-8e9c-65f472c37564", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "a9c4ed17-20da-4af0-8e9c-65f472c37564", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "a9c4ed17-20da-4af0-8e9c-65f472c37564", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "a9c4ed17-20da-4af0-8e9c-65f472c37564", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "a9c4ed17-20da-4af0-8e9c-65f472c37564", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "a9c4ed17-20da-4af0-8e9c-65f472c37564", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "a9c4ed17-20da-4af0-8e9c-65f472c37564", + "element_result": "pkg:nuget/System.Net.NameResolution@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "d81efa2c-aae0-4ab1-bb5b-559a444d3538", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "d81efa2c-aae0-4ab1-bb5b-559a444d3538", + "element_result": "Microsoft.Build.Tasks.Core", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "d81efa2c-aae0-4ab1-bb5b-559a444d3538", + "element_result": "16.9.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "d81efa2c-aae0-4ab1-bb5b-559a444d3538", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "d81efa2c-aae0-4ab1-bb5b-559a444d3538", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "d81efa2c-aae0-4ab1-bb5b-559a444d3538", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "d81efa2c-aae0-4ab1-bb5b-559a444d3538", + "element_result": "https://github.com/microsoft/msbuild", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "d81efa2c-aae0-4ab1-bb5b-559a444d3538", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "d81efa2c-aae0-4ab1-bb5b-559a444d3538", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "d81efa2c-aae0-4ab1-bb5b-559a444d3538", + "element_result": "pkg:nuget/Microsoft.Build.Tasks.Core@16.9.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "1e08b7fc-8be1-4bb0-a94b-bd49fc9e8f6a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "1e08b7fc-8be1-4bb0-a94b-bd49fc9e8f6a", + "element_result": "runtime.native.System.Net.Http", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "1e08b7fc-8be1-4bb0-a94b-bd49fc9e8f6a", + "element_result": "4.3.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "1e08b7fc-8be1-4bb0-a94b-bd49fc9e8f6a", + "element_result": "not-compliant", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "1e08b7fc-8be1-4bb0-a94b-bd49fc9e8f6a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "1e08b7fc-8be1-4bb0-a94b-bd49fc9e8f6a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "1e08b7fc-8be1-4bb0-a94b-bd49fc9e8f6a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "1e08b7fc-8be1-4bb0-a94b-bd49fc9e8f6a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "1e08b7fc-8be1-4bb0-a94b-bd49fc9e8f6a", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "1e08b7fc-8be1-4bb0-a94b-bd49fc9e8f6a", + "element_result": "pkg:nuget/runtime.native.System.Net.Http@4.3.0", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "dc718109-0331-42ed-b5d9-87f62135fc09", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "dc718109-0331-42ed-b5d9-87f62135fc09", + "element_result": "SQLitePCLRaw.provider.e_sqlite3", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "dc718109-0331-42ed-b5d9-87f62135fc09", + "element_result": "2.0.6", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "dc718109-0331-42ed-b5d9-87f62135fc09", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "dc718109-0331-42ed-b5d9-87f62135fc09", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "dc718109-0331-42ed-b5d9-87f62135fc09", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "dc718109-0331-42ed-b5d9-87f62135fc09", + "element_result": "https://github.com/ericsink/SQLitePCL.raw", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "dc718109-0331-42ed-b5d9-87f62135fc09", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "dc718109-0331-42ed-b5d9-87f62135fc09", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "dc718109-0331-42ed-b5d9-87f62135fc09", + "element_result": "pkg:nuget/SQLitePCLRaw.provider.e_sqlite3@2.0.6", + "score": 10 + }, + { + "section_title": "Required fields component", + "section_id": "5.2.2", + "section_data_field": "component creator", + "required": true, + "element_id": "449f8cba-7258-4bed-a378-85679c09d544", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component name", + "required": true, + "element_id": "449f8cba-7258-4bed-a378-85679c09d544", + "element_result": "Azure.Security.KeyVault.Secrets", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "component version", + "required": true, + "element_id": "449f8cba-7258-4bed-a378-85679c09d544", + "element_result": "4.1.0", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "License", + "required": true, + "element_id": "449f8cba-7258-4bed-a378-85679c09d544", + "element_result": "compliant", + "score": 10 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Dependencies on other components", + "required": true, + "element_id": "449f8cba-7258-4bed-a378-85679c09d544", + "element_result": "", + "score": 0 + }, + { + "section_title": "Required fields components", + "section_id": "5.2.2", + "section_data_field": "Hash value of the executable component", + "required": true, + "element_id": "449f8cba-7258-4bed-a378-85679c09d544", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Source code URI", + "required": false, + "element_id": "449f8cba-7258-4bed-a378-85679c09d544", + "element_result": "https://github.com/Azure/azure-sdk-for-net", + "score": 10 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "URI of the executable form of the component", + "required": false, + "element_id": "449f8cba-7258-4bed-a378-85679c09d544", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Hash value of the source code of the component", + "required": false, + "element_id": "449f8cba-7258-4bed-a378-85679c09d544", + "element_result": "", + "score": 0 + }, + { + "section_title": "Additional fields components", + "section_id": "5.3.2", + "section_data_field": "Other unique identifiers", + "required": false, + "element_id": "449f8cba-7258-4bed-a378-85679c09d544", + "element_result": "pkg:nuget/Azure.Security.KeyVault.Secrets@4.1.0", + "score": 10 + } + ] +} diff --git a/go.mod b/go.mod index 478d815..ec24705 100644 --- a/go.mod +++ b/go.mod @@ -1,11 +1,14 @@ module github.com/interlynk-io/sbomqs -go 1.19 +go 1.21 + +toolchain go1.21.3 require ( github.com/CycloneDX/cyclonedx-go v0.8.0 github.com/DependencyTrack/client-go v0.13.0 github.com/Masterminds/semver/v3 v3.2.1 + github.com/github/go-spdx/v2 v2.2.0 github.com/google/go-github/v52 v52.0.0 github.com/google/uuid v1.6.0 github.com/maxbrunsfeld/counterfeiter/v6 v6.8.1 @@ -20,27 +23,25 @@ require ( ) require ( - github.com/ProtonMail/go-crypto v0.0.0-20230923063757-afb1ddc0824c // indirect + github.com/ProtonMail/go-crypto v1.0.0 // indirect github.com/anchore/go-struct-converter v0.0.0-20230627203149-c72ef8859ca9 // indirect github.com/cloudflare/circl v1.3.7 // indirect github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be // indirect - github.com/golang/protobuf v1.5.3 // indirect github.com/google/go-querystring v1.1.0 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/mattn/go-runewidth v0.0.15 // indirect - github.com/rivo/uniseg v0.4.4 // indirect + github.com/rivo/uniseg v0.4.7 // indirect github.com/rogpeppe/go-internal v1.9.0 // indirect github.com/spdx/gordf v0.0.0-20221230105357-b735bd5aac89 // indirect github.com/spf13/pflag v1.0.5 // indirect go.uber.org/multierr v1.11.0 // indirect - golang.org/x/crypto v0.17.0 // indirect - golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect - golang.org/x/mod v0.14.0 // indirect - golang.org/x/oauth2 v0.15.0 // indirect - golang.org/x/sys v0.16.0 // indirect + golang.org/x/crypto v0.22.0 // indirect + golang.org/x/exp v0.0.0-20240409090435-93d18d7e34b8 // indirect + golang.org/x/mod v0.17.0 // indirect + golang.org/x/oauth2 v0.19.0 // indirect + golang.org/x/sync v0.7.0 // indirect + golang.org/x/sys v0.19.0 // indirect golang.org/x/text v0.14.0 // indirect - golang.org/x/tools v0.17.0 // indirect - google.golang.org/appengine v1.6.8 // indirect - google.golang.org/protobuf v1.33.0 // indirect + golang.org/x/tools v0.20.0 // indirect sigs.k8s.io/yaml v1.4.0 // indirect ) diff --git a/go.sum b/go.sum index 1ce5e48..dcc5ce8 100644 --- a/go.sum +++ b/go.sum @@ -4,12 +4,13 @@ github.com/DependencyTrack/client-go v0.13.0 h1:w2TvudrBbgBtS2oMbisfo9Av4rJnS1g9 github.com/DependencyTrack/client-go v0.13.0/go.mod h1:XLZnOksOs56Svq+K4xmBkN8U97gpP7r1BkhCc/xA8Iw= github.com/Masterminds/semver/v3 v3.2.1 h1:RN9w6+7QoMeJVGyfmbcgs28Br8cvmnucEXnY0rYXWg0= github.com/Masterminds/semver/v3 v3.2.1/go.mod h1:qvl/7zhW3nngYb5+80sSMF+FG2BjYrf8m9wsX0PNOMQ= -github.com/ProtonMail/go-crypto v0.0.0-20230923063757-afb1ddc0824c h1:kMFnB0vCcX7IL/m9Y5LO+KQYv+t1CQOiFe6+SV2J7bE= -github.com/ProtonMail/go-crypto v0.0.0-20230923063757-afb1ddc0824c/go.mod h1:EjAoLdwvbIOoOQr3ihjnSoLZRtE8azugULFRteWMNc0= +github.com/ProtonMail/go-crypto v1.0.0 h1:LRuvITjQWX+WIfr930YHG2HNfjR1uOfyf5vE0kC2U78= +github.com/ProtonMail/go-crypto v1.0.0/go.mod h1:EjAoLdwvbIOoOQr3ihjnSoLZRtE8azugULFRteWMNc0= github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092/go.mod h1:rYqSE9HbjzpHTI74vwPvae4ZVYZd1lue2ta6xHPdblA= github.com/anchore/go-struct-converter v0.0.0-20230627203149-c72ef8859ca9 h1:6COpXWpHbhWM1wgcQN95TdsmrLTba8KQfPgImBXzkjA= github.com/anchore/go-struct-converter v0.0.0-20230627203149-c72ef8859ca9/go.mod h1:rYqSE9HbjzpHTI74vwPvae4ZVYZd1lue2ta6xHPdblA= github.com/bradleyjkemp/cupaloy/v2 v2.8.0 h1:any4BmKE+jGIaMpnU8YgH/I2LPiLBufr6oMMlVBbn9M= +github.com/bradleyjkemp/cupaloy/v2 v2.8.0/go.mod h1:bm7JXdkRd4BHJk9HpwqAI8BoAY1lps46Enkdqw6aRX0= github.com/bwesterb/go-ristretto v1.2.3/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0= github.com/cloudflare/circl v1.3.3/go.mod h1:5XYMA4rFBvNIrhs50XuiBJ15vF2pZn4nnUKZrLbUZFA= github.com/cloudflare/circl v1.3.7 h1:qlCDlTPz2n9fu58M0Nh1J/JzcFpfgkFHHX3O35r5vcU= @@ -20,14 +21,12 @@ github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46t github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= -github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/github/go-spdx/v2 v2.2.0 h1:yBBLMasHA70Ujd35OpL/OjJOWWVNXcJGbars0GinGRI= +github.com/github/go-spdx/v2 v2.2.0/go.mod h1:hMCrsFgT0QnCwn7G8gxy/MxMpy67WgZrwFeISTn0o6w= github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= +github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-github/v52 v52.0.0 h1:uyGWOY+jMQ8GVGSX8dkSwCzlehU3WfdxQ7GweO/JP7M= github.com/google/go-github/v52 v52.0.0/go.mod h1:WJV6VEEUPuMo5pXqqa2ZCZEdbQqua4zAk2MZTIo+m+4= github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8= @@ -37,8 +36,11 @@ github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+ github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= github.com/jarcoal/httpmock v1.3.0 h1:2RJ8GP0IIaWwcC9Fp2BmVi8Kog3v2Hn7VXM3fTd+nuc= +github.com/jarcoal/httpmock v1.3.0/go.mod h1:3yb8rc4BI7TCBhFY8ng0gjuLKJNquuDNiPaZjnENuYg= github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= +github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/mattn/go-runewidth v0.0.15 h1:UNAjwbU9l54TA3KzvqLGxwWjHmMgBUVhBiTjelZgg3U= github.com/mattn/go-runewidth v0.0.15/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= @@ -47,19 +49,21 @@ github.com/maxbrunsfeld/counterfeiter/v6 v6.8.1/go.mod h1:eyp4DdUJAKkr9tvxR3jWhw github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec= github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY= github.com/onsi/gomega v1.30.0 h1:hvMK7xYz4D3HapigLTeGdId/NcfQx1VHMJc60ew99+8= +github.com/onsi/gomega v1.30.0/go.mod h1:9sxs+SwGrKI0+PWe4Fxa9tFQQBG5xSsSbMXOI8PPpoQ= github.com/package-url/packageurl-go v0.1.2 h1:0H2DQt6DHd/NeRlVwW4EZ4oEI6Bn40XlNPRqegcxuo4= github.com/package-url/packageurl-go v0.1.2/go.mod h1:uQd4a7Rh3ZsVg5j0lNyAfyxIeGde9yrlhjF78GzeW0c= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= -github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis= -github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= +github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ= +github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/samber/lo v1.39.0 h1:4gTz1wUhNYLhFSKl6O+8peW0v2F4BCY034GRpU9WnuA= github.com/samber/lo v1.39.0/go.mod h1:+m/ZKRl6ClXCE2Lgf3MsQlWfh4bn1bz6CXEOxnEXnEA= github.com/sclevine/spec v1.4.0 h1:z/Q9idDcay5m5irkZ28M7PtQM4aOISzOpj4bUPkDee8= +github.com/sclevine/spec v1.4.0/go.mod h1:LvpgJaFyvQzRvc1kaDs0bulYwzC70PbiYjC4QnFHkOM= github.com/spdx/gordf v0.0.0-20201111095634-7098f93598fb/go.mod h1:uKWaldnbMnjsSAXRurWqqrdyZen1R7kxl8TkmWk2OyM= github.com/spdx/gordf v0.0.0-20221230105357-b735bd5aac89 h1:dArkMwZ7Mf2JiU8OfdmqIv8QaHT4oyifLIe1UhsF1SY= github.com/spdx/gordf v0.0.0-20221230105357-b735bd5aac89/go.mod h1:uKWaldnbMnjsSAXRurWqqrdyZen1R7kxl8TkmWk2OyM= @@ -76,12 +80,18 @@ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= +github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/terminalstatic/go-xsd-validate v0.1.5 h1:RqpJnf6HGE2CB/lZB1A8BYguk8uRtcvYAPLCF15qguo= +github.com/terminalstatic/go-xsd-validate v0.1.5/go.mod h1:18lsvYFofBflqCrvo1umpABZ99+GneNTw2kEEc8UPJw= github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f h1:J9EGpcZtP0E/raorCMxlFGSTBrsSlaDGf3jU/qvAE2c= +github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0= +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= github.com/xeipuuv/gojsonschema v1.2.0 h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74= +github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= +go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y= go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8= @@ -90,27 +100,29 @@ golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACk golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.3.1-0.20221117191849-2c476679df9a/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4= golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= -golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= -golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= -golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc h1:ao2WRsKSzW6KuUY9IWPwWahcHCgR0s52IfwutMfEbdM= -golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc/go.mod h1:iRJReGqOEeBhDZGkGbynYwcHlctCvnjTYIamk7uXpHI= +golang.org/x/crypto v0.22.0 h1:g1v0xeRhjcugydODzvb3mEM9SQ0HGp9s/nh3COQ/C30= +golang.org/x/crypto v0.22.0/go.mod h1:vr6Su+7cTlO45qkww3VDJlzDn0ctJvRgYbC2NvXHt+M= +golang.org/x/exp v0.0.0-20240409090435-93d18d7e34b8 h1:ESSUROHIBHg7USnszlcdmjBEwdMj9VUvU+OPk4yl2mc= +golang.org/x/exp v0.0.0-20240409090435-93d18d7e34b8/go.mod h1:/lliqkxwWAhPjf5oSOIJup2XcqJaw8RGS6k3TGEc7GI= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.14.0 h1:dGoOF9QVLYng8IHTm7BAyWqCqSheQ5pYWGhzW00YJr0= -golang.org/x/mod v0.14.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= +golang.org/x/mod v0.17.0 h1:zY54UmvipHiNd+pm+m0x9KhZ9hl1/7QNMyxXbc6ICqA= +golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= -golang.org/x/net v0.20.0 h1:aCL9BSgETF1k+blQaYUBx9hJ9LOGP3gAVemcZlf1Kpo= -golang.org/x/oauth2 v0.15.0 h1:s8pnnxNVzjWyrvYdFUQq5llS1PX2zhPXmccZv99h7uQ= -golang.org/x/oauth2 v0.15.0/go.mod h1:q48ptWNTY5XWf+JNten23lcvHpLJ0ZSxF5ttTHKVCAM= +golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w= +golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8= +golang.org/x/oauth2 v0.19.0 h1:9+E/EZBCbTLNrbN35fHv/a/d/mOBatymz1zbtQrXpIg= +golang.org/x/oauth2 v0.19.0/go.mod h1:vYi7skDa1x015PmRRYZ7+s1cWyPgrPiSYRe4rnsexc8= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.6.0 h1:5BMeUDZ7vkXGfEr1x9B4bRcTH4lpkTkpdh0T/J+qjbQ= +golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M= +golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= @@ -120,8 +132,8 @@ golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.16.0 h1:xWw16ngr6ZMtmxDyKyIgsE93KNKz5HKmMa3b8ALHidU= -golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o= +golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= @@ -130,7 +142,6 @@ golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= @@ -140,18 +151,13 @@ golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGm golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= -golang.org/x/tools v0.17.0 h1:FvmRgNOcs3kOa+T20R1uhfP9F6HgG2mfxDv1vrx1Htc= -golang.org/x/tools v0.17.0/go.mod h1:xsh6VxdV005rRVaS6SSAf9oiAqljS7UZUacMZ8Bnsps= +golang.org/x/tools v0.20.0 h1:hz/CVckiOxybQvFw6h7b/q80NTr9IUQb4s1IIzW7KNY= +golang.org/x/tools v0.20.0/go.mod h1:WvitBU7JJf6A4jOdg4S1tviW9bhUxkgeCui/0JHctQg= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -google.golang.org/appengine v1.6.8 h1:IhEN5q69dyKagZPYMSdIjS2HqprW324FRQZJcGqPAsM= -google.golang.org/appengine v1.6.8/go.mod h1:1jJ3jBArFh5pcgW8gCtRJnepW8FzD1V44FJffLiz/Ds= -google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= -google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI= -google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/pkg/compliance/compliance.go b/pkg/compliance/compliance.go new file mode 100644 index 0000000..698732b --- /dev/null +++ b/pkg/compliance/compliance.go @@ -0,0 +1,61 @@ +// Copyright 2024 Interlynk.io +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package compliance + +import ( + "context" + "errors" + + "github.com/interlynk-io/sbomqs/pkg/logger" + "github.com/interlynk-io/sbomqs/pkg/sbom" +) + +const CRA_REPORT = "CRA" +const NTIA_REPORT = "NTIA" + +func ComplianceResult(ctx context.Context, doc sbom.Document, reportType, fileName, outFormat string) error { + log := logger.FromContext(ctx) + log.Debug("compliance.ComplianceResult()") + + if reportType != CRA_REPORT && reportType != NTIA_REPORT { + log.Debugf("Invalid report type: %s\n", reportType) + return errors.New("invalid report type") + } + + if doc == nil { + log.Debugf("sbom document is nil\n") + return errors.New("sbom document is nil") + } + + if fileName == "" { + log.Debugf("file name is empty\n") + return errors.New("file name is empty") + } + + if outFormat == "" { + log.Debugf("output format is empty\n") + return errors.New("output format is empty") + } + + if reportType == CRA_REPORT { + craResult(ctx, doc, fileName, outFormat) + } + + if reportType == NTIA_REPORT { + ntiaResult(ctx, doc, fileName, outFormat) + } + + return nil +} diff --git a/pkg/compliance/cra.go b/pkg/compliance/cra.go new file mode 100644 index 0000000..f9a516c --- /dev/null +++ b/pkg/compliance/cra.go @@ -0,0 +1,519 @@ +// Copyright 2024 Interlynk.io +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package compliance + +import ( + "context" + "strings" + + "github.com/interlynk-io/sbomqs/pkg/logger" + "github.com/interlynk-io/sbomqs/pkg/sbom" + "github.com/samber/lo" +) + +var valid_cra_spdx_versions = []string{"SPDX-2.3"} +var valid_cra_cdx_versions = []string{"1.4", "1.5", "1.6"} + +const ( + SBOM_SPEC = iota + SBOM_SPEC_VERSION + SBOM_BUILD + SBOM_DEPTH + SBOM_CREATOR + SBOM_TIMESTAMP + SBOM_COMPONENTS + SBOM_URI + COMP_CREATOR + COMP_NAME + COMP_VERSION + COMP_HASH + COMP_SOURCE_CODE_URL + COMP_DOWNLOAD_URL + COMP_OTHER_UNIQ_IDS + COMP_SOURCE_HASH + COMP_LICENSE + COMP_DEPTH +) + +func craResult(ctx context.Context, doc sbom.Document, fileName string, outFormat string) *db { + log := logger.FromContext(ctx) + log.Debug("compliance.craResult()") + + db := newDB() + + db.addRecord(craSpec(doc)) + db.addRecord(craSpecVersion(doc)) + db.addRecord(craBuildPhase(doc)) + db.addRecord(craSbomDepth(doc)) + db.addRecord(craCreator(doc)) + db.addRecord(craTimestamp(doc)) + db.addRecord(craSbomURI(doc)) + db.addRecords(craComponents(doc)) + + cra_json_report(db, fileName) + return db +} + +func craSpec(doc sbom.Document) *record { + v := doc.Spec().Name() + v_to_lower := strings.Trim(strings.ToLower(v), " ") + result := "" + score := 0.0 + + if v_to_lower == "spdx" { + result = v + score = 10.0 + } else if v_to_lower == "cyclonedx" { + result = v + score = 10.0 + } + return newRecordStmt(SBOM_SPEC, "doc", result, score) +} + +func craSpecVersion(doc sbom.Document) *record { + spec := doc.Spec().Name() + version := doc.Spec().Version() + + result := "" + score := 0.0 + + if spec == "spdx" { + count := lo.Count(valid_cra_spdx_versions, version) + if count > 0 { + result = version + score = 10.0 + } + } else if spec == "cyclonedx" { + count := lo.Count(valid_cra_cdx_versions, version) + if count > 0 { + result = version + score = 10.0 + } + } + + return newRecordStmt(SBOM_SPEC_VERSION, "doc", result, score) +} + +func craBuildPhase(doc sbom.Document) *record { + lifecycles := doc.Lifecycles() + result := "" + score := 0.0 + + found := lo.Count(lifecycles, "build") + + if found > 0 { + result = "build" + score = 10.0 + } + + return newRecordStmt(SBOM_BUILD, "doc", result, score) +} + +func craSbomDepth(doc sbom.Document) *record { + if !doc.PrimaryComponent() { + return newRecordStmt(SBOM_DEPTH, "doc", "no-primary", 0.0) + } + + if len(doc.Relations()) == 0 { + return newRecordStmt(SBOM_DEPTH, "doc", "no-relationships", 0.0) + } + + primary, _ := lo.Find(doc.Components(), func(c sbom.Component) bool { + return c.IsPrimaryComponent() + }) + + if !primary.HasRelationShips() { + return newRecordStmt(SBOM_DEPTH, "doc", "no-primary-relationships", 0.0) + } + + if primary.RelationShipState() == "complete" { + return newRecordStmt(SBOM_DEPTH, "doc", "complete", 10.0) + } + + if primary.HasRelationShips() { + return newRecordStmt(SBOM_DEPTH, "doc", "unattested-has-relationships", 5.0) + } + + return newRecordStmt(SBOM_DEPTH, "doc", "non-compliant", 0.0) +} + +func craCreator(doc sbom.Document) *record { + result := "" + score := 0.0 + + for _, author := range doc.Authors() { + if author.Email() != "" { + result = author.Email() + score = 10.0 + break + } + } + + if result != "" { + return newRecordStmt(SBOM_CREATOR, "doc", result, score) + } + + supplier := doc.Supplier() + + if supplier != nil { + if supplier.Email() != "" { + result = supplier.Email() + score = 10.0 + } + + if result != "" { + return newRecordStmt(SBOM_CREATOR, "doc", result, score) + } + + if supplier.Url() != "" { + result = supplier.Url() + score = 10.0 + } + + if result != "" { + return newRecordStmt(SBOM_CREATOR, "doc", result, score) + } + + if supplier.Contacts() != nil { + for _, contact := range supplier.Contacts() { + if contact.Email() != "" { + result = contact.Email() + score = 10.0 + break + } + } + + if result != "" { + return newRecordStmt(SBOM_CREATOR, "doc", result, score) + } + } + } + + manufacturer := doc.Manufacturer() + + if manufacturer != nil { + if manufacturer.Email() != "" { + result = manufacturer.Email() + score = 10.0 + } + + if result != "" { + return newRecordStmt(SBOM_CREATOR, "doc", result, score) + } + + if manufacturer.Url() != "" { + result = manufacturer.Url() + score = 10.0 + } + + if result != "" { + return newRecordStmt(SBOM_CREATOR, "doc", result, score) + } + + if manufacturer.Contacts() != nil { + for _, contact := range manufacturer.Contacts() { + if contact.Email() != "" { + result = contact.Email() + score = 10.0 + break + } + } + + if result != "" { + return newRecordStmt(SBOM_CREATOR, "doc", result, score) + } + } + } + return newRecordStmt(SBOM_CREATOR, "doc", "", 0.0) +} + +func craTimestamp(doc sbom.Document) *record { + score := 0.0 + result := doc.Spec().CreationTimestamp() + + if result != "" { + score = 10.0 + } + + return newRecordStmt(SBOM_TIMESTAMP, "doc", result, score) +} + +func craSbomURI(doc sbom.Document) *record { + uri := doc.Spec().URI() + + if uri != "" { + return newRecordStmt(SBOM_URI, "doc", uri, 10.0) + } + + return newRecordStmt(SBOM_URI, "doc", "", 0) +} + +func craComponents(doc sbom.Document) []*record { + records := []*record{} + + if len(doc.Components()) == 0 { + records := append(records, newRecordStmt(SBOM_COMPONENTS, "doc", "", 0.0)) + return records + } + + for _, component := range doc.Components() { + records = append(records, craComponentCreator(component)) + records = append(records, craComponentName(component)) + records = append(records, craComponentVersion(component)) + records = append(records, craComponentLicense(component)) + records = append(records, craComponentDepth(component)) + records = append(records, craComponentHash(component)) + records = append(records, craComponentSourceCodeUrl(component)) + records = append(records, craComponentDownloadUrl(component)) + records = append(records, craComponentSourceHash(component)) + records = append(records, craComponentOtherUniqIds(component)) + } + + records = append(records, newRecordStmt(SBOM_COMPONENTS, "doc", "present", 10.0)) + + return records +} + +func craComponentDepth(component sbom.Component) *record { + if !component.HasRelationShips() { + return newRecordStmt(COMP_DEPTH, component.ID(), "no-relationships", 0.0) + } + + if component.RelationShipState() == "complete" { + return newRecordStmt(COMP_DEPTH, component.ID(), "complete", 10.0) + } + + if component.HasRelationShips() { + return newRecordStmt(COMP_DEPTH, component.ID(), "unattested-has-relationships", 5.0) + } + + return newRecordStmt(COMP_DEPTH, component.ID(), "non-compliant", 0.0) +} + +func craComponentLicense(component sbom.Component) *record { + licenses := component.Licenses() + score := 0.0 + + if len(licenses) == 0 { + // fmt.Printf("component %s : %s has no licenses\n", component.Name(), component.Version()) + return newRecordStmt(COMP_LICENSE, component.ID(), "not-compliant", score) + } + + var spdx, aboutcode, custom int + + for _, license := range licenses { + if license.Source() == "spdx" { + spdx += 1 + continue + } + + if license.Source() == "aboutcode" { + aboutcode += 1 + continue + } + + if license.Source() == "custom" { + if strings.HasPrefix(license.ShortID(), "LicenseRef-") || strings.HasPrefix(license.Name(), "LicenseRef-") { + custom += 1 + continue + } + } + } + + total := spdx + aboutcode + custom + + // fmt.Printf("component %s : %s has (total)%d = (all)%d licenses\n", component.Name(), component.Version(), total, len(licenses)) + // fmt.Printf("%+v\n", licenses) + + if total != len(licenses) { + score = 0.0 + return newRecordStmt(COMP_LICENSE, component.ID(), "not-compliant", score) + } + + return newRecordStmt(COMP_LICENSE, component.ID(), "compliant", 10.0) +} + +func craComponentSourceHash(component sbom.Component) *record { + result := "" + score := 0.0 + + if component.SourceCodeHash() != "" { + result = component.SourceCodeHash() + score = 10.0 + } + + return newRecordStmtOptional(COMP_SOURCE_HASH, component.ID(), result, score) +} + +func craComponentOtherUniqIds(component sbom.Component) *record { + result := "" + score := 0.0 + + purl := component.Purls() + + if len(purl) > 0 { + result = string(purl[0]) + score = 10.0 + + return newRecordStmtOptional(COMP_OTHER_UNIQ_IDS, component.ID(), result, score) + } + + cpes := component.Cpes() + + if len(cpes) > 0 { + result = string(cpes[0]) + score = 10.0 + + return newRecordStmtOptional(COMP_OTHER_UNIQ_IDS, component.ID(), result, score) + } + + return newRecordStmtOptional(COMP_OTHER_UNIQ_IDS, component.ID(), "", 0.0) +} + +func craComponentDownloadUrl(component sbom.Component) *record { + result := component.DownloadLocationUrl() + + if result != "" { + return newRecordStmtOptional(COMP_DOWNLOAD_URL, component.ID(), result, 10.0) + } + return newRecordStmtOptional(COMP_DOWNLOAD_URL, component.ID(), "", 0.0) +} + +func craComponentSourceCodeUrl(component sbom.Component) *record { + result := component.SourceCodeUrl() + + if result != "" { + return newRecordStmtOptional(COMP_SOURCE_CODE_URL, component.ID(), result, 10.0) + } + + return newRecordStmtOptional(COMP_SOURCE_CODE_URL, component.ID(), "", 0.0) +} + +func craComponentHash(component sbom.Component) *record { + result := "" + algos := []string{"SHA256", "SHA-256", "sha256", "sha-256"} + score := 0.0 + + checksums := component.Checksums() + + for _, checksum := range checksums { + if lo.Count(algos, checksum.Algo()) > 0 { + result = checksum.Content() + score = 10.0 + break + } + } + + return newRecordStmt(COMP_HASH, component.ID(), result, score) +} + +func craComponentVersion(component sbom.Component) *record { + result := component.Version() + + if result != "" { + return newRecordStmt(COMP_VERSION, component.ID(), result, 10.0) + } + + return newRecordStmt(COMP_VERSION, component.ID(), "", 0.0) +} + +func craComponentName(component sbom.Component) *record { + + result := component.Name() + + if result != "" { + return newRecordStmt(COMP_NAME, component.ID(), result, 10.0) + } + + return newRecordStmt(COMP_NAME, component.ID(), "", 0.0) +} + +func craComponentCreator(component sbom.Component) *record { + result := "" + score := 0.0 + + supplier := component.Supplier() + if supplier != nil { + if supplier.Email() != "" { + result = supplier.Email() + score = 10.0 + } + + if result != "" { + return newRecordStmt(COMP_CREATOR, component.ID(), result, score) + } + + if supplier.Url() != "" { + result = supplier.Url() + score = 10.0 + } + + if result != "" { + return newRecordStmt(COMP_CREATOR, component.ID(), result, score) + } + + if supplier.Contacts() != nil { + for _, contact := range supplier.Contacts() { + if contact.Email() != "" { + result = contact.Email() + score = 10.0 + break + } + } + + if result != "" { + return newRecordStmt(COMP_CREATOR, component.ID(), result, score) + } + } + } + + manufacturer := component.Manufacturer() + + if manufacturer != nil { + if manufacturer.Email() != "" { + result = manufacturer.Email() + score = 10.0 + } + + if result != "" { + return newRecordStmt(COMP_CREATOR, component.ID(), result, score) + } + + if manufacturer.Url() != "" { + result = manufacturer.Url() + score = 10.0 + } + + if result != "" { + return newRecordStmt(COMP_CREATOR, component.ID(), result, score) + } + + if manufacturer.Contacts() != nil { + for _, contact := range manufacturer.Contacts() { + if contact.Email() != "" { + result = contact.Email() + score = 10.0 + break + } + } + + if result != "" { + return newRecordStmt(COMP_CREATOR, component.ID(), result, score) + } + } + } + + return newRecordStmt(COMP_CREATOR, component.ID(), "", 0.0) +} diff --git a/pkg/compliance/cra_report.go b/pkg/compliance/cra_report.go new file mode 100644 index 0000000..cf9c9fa --- /dev/null +++ b/pkg/compliance/cra_report.go @@ -0,0 +1,146 @@ +// Copyright 2024 Interlynk.io +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package compliance + +import ( + "encoding/json" + "fmt" + "time" + + "github.com/google/uuid" + "sigs.k8s.io/release-utils/version" +) + +var craSectionDetails = map[int]craSection{ + SBOM_SPEC: {Title: "SBOM formats", Id: "4", Required: true, DataField: "specification"}, + SBOM_SPEC_VERSION: {Title: "SBOM formats", Id: "4", Required: true, DataField: "specification version"}, + SBOM_BUILD: {Title: "Level of Detail", Id: "5.1", Required: true, DataField: "build process"}, + SBOM_DEPTH: {Title: "Level of Detail", Id: "5.1", Required: true, DataField: "depth"}, + SBOM_CREATOR: {Title: "Required fields sboms ", Id: "5.2.1", Required: true, DataField: "creator of sbom"}, + SBOM_TIMESTAMP: {Title: "Required fields sboms", Id: "5.2.1", Required: true, DataField: "timestamp"}, + SBOM_COMPONENTS: {Title: "Required fields component", Id: "5.2.2", Required: true, DataField: "components"}, + SBOM_URI: {Title: "Additional fields sboms", Id: "5.3.1", Required: false, DataField: "SBOM-URI"}, + COMP_CREATOR: {Title: "Required fields component", Id: "5.2.2", Required: true, DataField: "component creator"}, + COMP_NAME: {Title: "Required fields components", Id: "5.2.2", Required: true, DataField: "component name"}, + COMP_VERSION: {Title: "Required fields components", Id: "5.2.2", Required: true, DataField: "component version"}, + COMP_DEPTH: {Title: "Required fields components", Id: "5.2.2", Required: true, DataField: "Dependencies on other components"}, + COMP_LICENSE: {Title: "Required fields components", Id: "5.2.2", Required: true, DataField: "License"}, + COMP_HASH: {Title: "Required fields components", Id: "5.2.2", Required: true, DataField: "Hash value of the executable component"}, + COMP_SOURCE_CODE_URL: {Title: "Additional fields components", Id: "5.3.2", Required: false, DataField: "Source code URI"}, + COMP_DOWNLOAD_URL: {Title: "Additional fields components", Id: "5.3.2", Required: false, DataField: "URI of the executable form of the component"}, + COMP_SOURCE_HASH: {Title: "Additional fields components", Id: "5.3.2", Required: false, DataField: "Hash value of the source code of the component"}, + COMP_OTHER_UNIQ_IDS: {Title: "Additional fields components", Id: "5.3.2", Required: false, DataField: "Other unique identifiers"}, +} + +type run struct { + Id string `json:"id"` + GeneratedAt string `json:"generated_at"` + FileName string `json:"file_name"` + EngineVersion string `json:"engine_version"` +} +type tool struct { + Name string `json:"name"` + Version string `json:"version"` + Vendor string `json:"vendor"` +} +type Summary struct { + TotalScore float64 `json:"total_score"` + MaxScore float64 `json:"max_score"` + TotalRequiredScore float64 `json:"required_elements_score"` + TotalOptionalScore float64 `json:"optional_elements_score"` +} +type craSection struct { + Title string `json:"section_title"` + Id string `json:"section_id"` + DataField string `json:"section_data_field"` + Required bool `json:"required"` + ElementId string `json:"element_id"` + ElementResult string `json:"element_result"` + Score float64 `json:"score"` +} +type craComplianceReport struct { + Name string `json:"report_name"` + Subtitle string `json:"subtitle"` + Revision string `json:"revision"` + Run run `json:"run"` + Tool tool `json:"tool"` + Summary Summary `json:"summary"` + Sections []craSection `json:"sections"` +} + +func newJsonReport() *craComplianceReport { + return &craComplianceReport{ + Name: "Cyber Resilience Requirements for Manufacturers and Products Report", + Subtitle: "Part 2: Software Bill of Materials (SBOM)", + Revision: "TR-03183-2 (1.1)", + Run: run{ + Id: uuid.New().String(), + GeneratedAt: time.Now().UTC().Format(time.RFC3339), + FileName: "", + EngineVersion: "1", + }, + Tool: tool{ + Name: "sbomqs", + Version: version.GetVersionInfo().GitVersion, + Vendor: "Interlynk (https://interlynk.io)", + }, + } +} + +func cra_json_report(db *db, fileName string) { + + jr := newJsonReport() + jr.Run.FileName = fileName + + score := craAggregateScore(db) + + summary := Summary{} + summary.MaxScore = 10.0 + summary.TotalScore = score.totalScore() + summary.TotalRequiredScore = score.totalRequiredScore() + summary.TotalOptionalScore = score.totalOptionalScore() + + jr.Summary = summary + + allIds := db.getAllIds() + for _, id := range allIds { + records := db.getRecordsById(id) + + for _, r := range records { + section := craSectionDetails[r.check_key] + new_section := craSection{ + Title: section.Title, + Id: section.Id, + DataField: section.DataField, + Required: section.Required, + } + score := craKeyIdScore(db, r.check_key, r.id) + new_section.Score = score.totalScore() + if r.id == "doc" { + new_section.ElementId = "sbom" + } else { + new_section.ElementId = r.id + } + + new_section.ElementResult = r.check_value + + jr.Sections = append(jr.Sections, new_section) + } + } + + o, _ := json.MarshalIndent(jr, "", " ") + + fmt.Println(string(o)) +} diff --git a/pkg/compliance/cra_score.go b/pkg/compliance/cra_score.go new file mode 100644 index 0000000..7fc376d --- /dev/null +++ b/pkg/compliance/cra_score.go @@ -0,0 +1,143 @@ +// Copyright 2024 Interlynk.io +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package compliance + +type craScoreResult struct { + id string + requiredScore float64 + optionalScore float64 + requiredRecords int + optionalRecords int +} + +func newCraScoreResult(id string) *craScoreResult { + return &craScoreResult{id: id} +} + +func (r *craScoreResult) totalScore() float64 { + if r.requiredRecords == 0 && r.optionalRecords == 0 { + return 0.0 + } + + if r.requiredRecords != 0 && r.optionalRecords != 0 { + return (r.totalRequiredScore() + r.totalOptionalScore()) / 2 + } + + if r.requiredRecords == 0 && r.optionalRecords != 0 { + return r.totalOptionalScore() + } + + return r.totalRequiredScore() +} + +func (r *craScoreResult) totalRequiredScore() float64 { + if r.requiredRecords == 0 { + return 0.0 + } + + return r.requiredScore / float64(r.requiredRecords) +} + +func (r *craScoreResult) totalOptionalScore() float64 { + if r.optionalRecords == 0 { + return 0.0 + } + + return r.optionalScore / float64(r.optionalRecords) +} + +func craKeyIdScore(db *db, key int, id string) *craScoreResult { + records := db.getRecordsByKeyId(key, id) + + if len(records) == 0 { + return newCraScoreResult(id) + } + + required_score := 0.0 + optional_score := 0.0 + + required_recs := 0 + optional_recs := 0 + + for _, r := range records { + if r.required { + required_score += r.score + required_recs += 1 + } else { + optional_score += r.score + optional_recs += 1 + } + } + + return &craScoreResult{ + id: id, + requiredScore: required_score, + optionalScore: optional_score, + requiredRecords: required_recs, + optionalRecords: optional_recs, + } + +} + +func craIdScore(db *db, id string) *craScoreResult { + records := db.getRecordsById(id) + + if len(records) == 0 { + return newCraScoreResult(id) + } + + required_score := 0.0 + optional_score := 0.0 + + required_recs := 0 + optional_recs := 0 + + for _, r := range records { + if r.required { + required_score += r.score + required_recs += 1 + } else { + optional_score += r.score + optional_recs += 1 + } + } + + return &craScoreResult{ + id: id, + requiredScore: required_score, + optionalScore: optional_score, + requiredRecords: required_recs, + optionalRecords: optional_recs, + } +} + +func craAggregateScore(db *db) *craScoreResult { + var results []craScoreResult + var finalResult craScoreResult + + ids := db.getAllIds() + for _, id := range ids { + results = append(results, *craIdScore(db, id)) + } + + for _, r := range results { + finalResult.requiredScore += r.requiredScore + finalResult.optionalScore += r.optionalScore + finalResult.requiredRecords += r.requiredRecords + finalResult.optionalRecords += r.optionalRecords + } + + return &finalResult +} diff --git a/pkg/compliance/db.go b/pkg/compliance/db.go new file mode 100644 index 0000000..a5b7bd8 --- /dev/null +++ b/pkg/compliance/db.go @@ -0,0 +1,76 @@ +package compliance + +import ( + "fmt" + + "github.com/samber/lo" +) + +type db struct { + records []*record +} + +func newDB() *db { + return &db{} +} + +func (d *db) addRecord(r *record) { + d.records = append(d.records, r) +} + +func (d *db) addRecords(rs []*record) { + d.records = append(d.records, rs...) +} + +func (d *db) getRecords(key int) []record { + var rs []record + for _, r := range d.records { + if r.check_key == key { + rs = append(rs, *r) + } + } + return rs +} + +func (d *db) getAllIds() []string { + var ids []string + for _, r := range d.records { + ids = append(ids, r.id) + } + + return lo.Uniq(ids) +} + +func (d *db) getRecordsById(id string) []record { + var rs []record + for _, r := range d.records { + if r.id == id { + rs = append(rs, *r) + } + } + return rs +} + +func (d *db) getRecordsByKeyId(key int, id string) []record { + var rs []record + for _, r := range d.records { + if r.check_key == key && r.id == id { + rs = append(rs, *r) + } + } + return rs +} + +func (d *db) dumpAll(key []int) { + for _, r := range d.records { + if len(key) == 0 { + fmt.Printf("id: %s, key: %d, value: %s\n", r.id, r.check_key, r.check_value) + continue + } + for _, k := range key { + if r.check_key == k { + fmt.Printf("id: %s, key: %d, value: %s\n", r.id, r.check_key, r.check_value) + } + } + } +} diff --git a/pkg/compliance/ntia.go b/pkg/compliance/ntia.go new file mode 100644 index 0000000..acf4759 --- /dev/null +++ b/pkg/compliance/ntia.go @@ -0,0 +1,32 @@ +// Copyright 2024 Interlynk.io +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package compliance + +import ( + "context" + + "github.com/interlynk-io/sbomqs/pkg/logger" + "github.com/interlynk-io/sbomqs/pkg/sbom" +) + +func ntiaResult(ctx context.Context, doc sbom.Document, fileName string, outFormat string) *db { + log := logger.FromContext(ctx) + log.Debug("compliance.ntiaResult()") + + db := newDB() + + return db + +} diff --git a/pkg/compliance/record.go b/pkg/compliance/record.go new file mode 100644 index 0000000..add6d2e --- /dev/null +++ b/pkg/compliance/record.go @@ -0,0 +1,47 @@ +// Copyright 2024 Interlynk.io +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package compliance + +type record struct { + check_key int + check_value string + id string + score float64 + required bool +} + +func newRecord() *record { + return &record{} +} + +func newRecordStmt(key int, id, value string, score float64) *record { + r := newRecord() + r.check_key = key + r.check_value = value + r.id = id + r.score = score + r.required = true + return r +} + +func newRecordStmtOptional(key int, id, value string, score float64) *record { + r := newRecord() + r.check_key = key + r.check_value = value + r.id = id + r.score = score + r.required = false + return r +} diff --git a/pkg/engine/compliance.go b/pkg/engine/compliance.go new file mode 100644 index 0000000..f8e8c49 --- /dev/null +++ b/pkg/engine/compliance.go @@ -0,0 +1,99 @@ +// Copyright 2024 Interlynk.io +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package engine + +import ( + "context" + "fmt" + "os" + + "github.com/interlynk-io/sbomqs/pkg/compliance" + "github.com/interlynk-io/sbomqs/pkg/logger" + "github.com/interlynk-io/sbomqs/pkg/sbom" +) + +func ComplianceRun(ctx context.Context, ep *Params) error { + log := logger.FromContext(ctx) + log.Debug("engine.ComplianceRun()") + + if len(ep.Path) <= 0 { + log.Fatal("path is required") + } + + log.Debugf("Config: %+v", ep) + + doc, error := getSbomDocument(ctx, ep) + + if error != nil { + log.Debugf("getSbomDocument failed for file :%s\n", ep.Path[0]) + fmt.Printf("failed to get sbom document for %s\n", ep.Path[0]) + return error + } + + reportType := "NTIA" + + if ep.Cra { + reportType = "CRA" + } + + outFormat := "json" + + if ep.Basic { + outFormat = "basic" + } else if ep.Pdf { + outFormat = "pdf" + } + + err := compliance.ComplianceResult(ctx, *doc, reportType, ep.Path[0], outFormat) + if err != nil { + log.Debugf("compliance.ComplianceResult failed for file :%s\n", ep.Path[0]) + fmt.Printf("failed to get compliance result for %s\n", ep.Path[0]) + return err + } + + log.Debugf("Compliance Report: %s\n", ep.Path[0]) + return nil +} + +func getSbomDocument(ctx context.Context, ep *Params) (*sbom.Document, error) { + log := logger.FromContext(ctx) + log.Debugf("engine.getSbomDocument()") + + path := ep.Path[0] + + if _, err := os.Stat(path); err != nil { + log.Debugf("os.Stat failed for file :%s\n", path) + fmt.Printf("failed to stat %s\n", path) + return nil, err + } + + f, err := os.Open(path) + if err != nil { + log.Debugf("os.Open failed for file :%s\n", path) + fmt.Printf("failed to open %s\n", path) + return nil, err + } + defer f.Close() + + doc, err := sbom.NewSBOMDocument(ctx, f) + if err != nil { + log.Debugf("failed to create sbom document for :%s\n", path) + log.Debugf("%s\n", err) + fmt.Printf("failed to parse %s : %s\n", path, err) + return nil, err + } + + return &doc, nil +} diff --git a/pkg/engine/score.go b/pkg/engine/score.go index aa1fe96..c471d54 100644 --- a/pkg/engine/score.go +++ b/pkg/engine/score.go @@ -36,6 +36,7 @@ type Params struct { Json bool Basic bool Detailed bool + Pdf bool Spdx bool Cdx bool @@ -45,6 +46,9 @@ type Params struct { Debug bool ConfigPath string + + Ntia bool + Cra bool } func Run(ctx context.Context, ep *Params) error { diff --git a/pkg/licenses/embed_licenses.go b/pkg/licenses/embed_licenses.go new file mode 100644 index 0000000..abd89f6 --- /dev/null +++ b/pkg/licenses/embed_licenses.go @@ -0,0 +1,187 @@ +package licenses + +import ( + "embed" + "encoding/json" + "fmt" + "strings" +) + +var ( + //go:embed files + res embed.FS + + licenses = map[string]string{ + "spdx": "files/licenses_spdx.json", + "spdxException": "files/licenses_spdx_exception.json", + "aboutcode": "files/licenses_aboutcode.json", + } +) + +type spdxLicense struct { + Version string `json:"licenseListVersion"` + Licenses []spdxLicenseDetail `json:"licenses"` + Exceptions []spdxLicenseDetail `json:"exceptions"` +} + +type spdxLicenseDetail struct { + Reference string `json:"reference"` + IsDeprecated bool `json:"isDeprecatedLicenseId"` + DetailsURL string `json:"detailsUrl"` + ReferenceNumber int `json:"referenceNumber"` + Name string `json:"name"` + LicenseID string `json:"licenseId"` + LicenseExceptionId string `json:"licenseExceptionId"` + SeeAlso []string `json:"seeAlso"` + IsOsiApproved bool `json:"isOsiApproved"` + IsFsfLibre bool `json:"isFsfLibre"` +} + +type aboutCodeLicenseDetail struct { + LicenseKey string `json:"license_key"` + Category string `json:"category"` + SpdxLicenseKey string `json:"spdx_license_key"` + OtherSpdxLicenseKeys []string `json:"other_spdx_license_keys"` + Exception bool `json:"is_exception"` + Deprecated bool `json:"is_deprecated"` + Json string `json:"json"` + Yaml string `json:"yaml"` + Html string `json:"html"` + License string `json:"license"` +} + +var licenseList = map[string]meta{} +var LicenseListAboutCode = map[string]meta{} + +func loadSpdxLicense() error { + licData, err := res.ReadFile(licenses["spdx"]) + if err != nil { + fmt.Printf("error: %v\n", err) + return err + } + + var sl spdxLicense + if err := json.Unmarshal(licData, &sl); err != nil { + fmt.Printf("error: %v\n", err) + return err + } + + for _, l := range sl.Licenses { + licenseList[l.LicenseID] = meta{ + name: l.Name, + short: l.LicenseID, + deprecated: l.IsDeprecated, + osiApproved: l.IsOsiApproved, + fsfLibre: l.IsFsfLibre, + restrictive: false, + exception: false, + freeAnyUse: false, + source: "spdx", + } + } + // fmt.Printf("loaded %d licenses\n", len(licenseList)) + return nil +} + +func loadSpdxExceptions() error { + licData, err := res.ReadFile(licenses["spdxException"]) + if err != nil { + fmt.Printf("error: %v\n", err) + return err + } + + var sl spdxLicense + if err := json.Unmarshal(licData, &sl); err != nil { + fmt.Printf("error: %v\n", err) + return err + } + + for _, l := range sl.Exceptions { + licenseList[l.LicenseExceptionId] = meta{ + name: l.Name, + short: l.LicenseExceptionId, + deprecated: l.IsDeprecated, + osiApproved: l.IsOsiApproved, + fsfLibre: l.IsFsfLibre, + restrictive: false, + exception: true, + freeAnyUse: false, + source: "spdx", + } + } + // fmt.Printf("loaded %d licenses\n", len(licenseList)) + + return nil +} + +func loadAboutCodeLicense() error { + licData, err := res.ReadFile(licenses["aboutcode"]) + if err != nil { + fmt.Printf("error: %v\n", err) + return err + } + + var acl []aboutCodeLicenseDetail + + if err := json.Unmarshal(licData, &acl); err != nil { + fmt.Printf("error: %v\n", err) + return err + } + + isRestrictive := func(category string) bool { + lowerCategory := strings.ToLower(category) + + if strings.Contains(lowerCategory, "copyleft") { + return true + } + + if strings.Contains(lowerCategory, "restricted") { + return true + } + + return false + } + + isFreeAnyUse := func(category string) bool { + lowerCategory := strings.ToLower(category) + return strings.Contains(lowerCategory, "public") + } + + for _, l := range acl { + for _, otherKey := range l.OtherSpdxLicenseKeys { + LicenseListAboutCode[otherKey] = meta{ + name: l.LicenseKey, + short: otherKey, + deprecated: l.Deprecated, + osiApproved: false, + fsfLibre: false, + restrictive: isRestrictive(l.Category), + exception: l.Exception, + freeAnyUse: isFreeAnyUse(l.Category), + source: "aboutcode", + } + } + + LicenseListAboutCode[l.SpdxLicenseKey] = meta{ + name: l.LicenseKey, + short: l.SpdxLicenseKey, + deprecated: l.Deprecated, + osiApproved: false, + fsfLibre: false, + restrictive: isRestrictive(l.Category), + exception: l.Exception, + freeAnyUse: isFreeAnyUse(l.Category), + source: "aboutcode", + } + + } + // fmt.Printf("loaded %d licenses\n", len(LicenseListAboutCode)) + + return nil +} + +func init() { + loadSpdxLicense() + loadSpdxExceptions() + loadAboutCodeLicense() +} diff --git a/pkg/licenses/files/licenses_aboutcode.json b/pkg/licenses/files/licenses_aboutcode.json new file mode 100644 index 0000000..f3c0b4a --- /dev/null +++ b/pkg/licenses/files/licenses_aboutcode.json @@ -0,0 +1,28119 @@ +[ + { + "license_key": "389-exception", + "category": "Copyleft Limited", + "spdx_license_key": "389-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "389-exception.json", + "yaml": "389-exception.yml", + "html": "389-exception.html", + "license": "389-exception.LICENSE" + }, + { + "license_key": "3com-microcode", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-3com-microcode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "3com-microcode.json", + "yaml": "3com-microcode.yml", + "html": "3com-microcode.html", + "license": "3com-microcode.LICENSE" + }, + { + "license_key": "3dslicer-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-3dslicer-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "3dslicer-1.0.json", + "yaml": "3dslicer-1.0.yml", + "html": "3dslicer-1.0.html", + "license": "3dslicer-1.0.LICENSE" + }, + { + "license_key": "4suite-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-4suite-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "4suite-1.1.json", + "yaml": "4suite-1.1.yml", + "html": "4suite-1.1.html", + "license": "4suite-1.1.LICENSE" + }, + { + "license_key": "996-icu-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-996-icu-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "996-icu-1.0.json", + "yaml": "996-icu-1.0.yml", + "html": "996-icu-1.0.html", + "license": "996-icu-1.0.LICENSE" + }, + { + "license_key": "aardvark-py-2014", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-aardvark-py-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aardvark-py-2014.json", + "yaml": "aardvark-py-2014.yml", + "html": "aardvark-py-2014.html", + "license": "aardvark-py-2014.LICENSE" + }, + { + "license_key": "abrms", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-abrms", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "abrms.json", + "yaml": "abrms.yml", + "html": "abrms.html", + "license": "abrms.LICENSE" + }, + { + "license_key": "abstyles", + "category": "Permissive", + "spdx_license_key": "Abstyles", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "abstyles.json", + "yaml": "abstyles.yml", + "html": "abstyles.html", + "license": "abstyles.LICENSE" + }, + { + "license_key": "ac3filter", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ac3filter", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ac3filter.json", + "yaml": "ac3filter.yml", + "html": "ac3filter.html", + "license": "ac3filter.LICENSE" + }, + { + "license_key": "accellera-systemc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-accellera-systemc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "accellera-systemc.json", + "yaml": "accellera-systemc.yml", + "html": "accellera-systemc.html", + "license": "accellera-systemc.LICENSE" + }, + { + "license_key": "acdl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "CDL-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-acdl-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "acdl-1.0.json", + "yaml": "acdl-1.0.yml", + "html": "acdl-1.0.html", + "license": "acdl-1.0.LICENSE" + }, + { + "license_key": "ace-tao", + "category": "Permissive", + "spdx_license_key": "DOC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ace-tao.json", + "yaml": "ace-tao.yml", + "html": "ace-tao.html", + "license": "ace-tao.LICENSE" + }, + { + "license_key": "acm-sla", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-acm-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "acm-sla.json", + "yaml": "acm-sla.yml", + "html": "acm-sla.html", + "license": "acm-sla.LICENSE" + }, + { + "license_key": "acroname-bdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-acroname-bdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "acroname-bdk.json", + "yaml": "acroname-bdk.yml", + "html": "acroname-bdk.html", + "license": "acroname-bdk.LICENSE" + }, + { + "license_key": "activestate-community", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-activestate-community", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "activestate-community.json", + "yaml": "activestate-community.yml", + "html": "activestate-community.html", + "license": "activestate-community.LICENSE" + }, + { + "license_key": "activestate-community-2012", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-activestate-community-2012", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "activestate-community-2012.json", + "yaml": "activestate-community-2012.yml", + "html": "activestate-community-2012.html", + "license": "activestate-community-2012.LICENSE" + }, + { + "license_key": "activestate-komodo-edit", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-activestate-komodo-edit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "activestate-komodo-edit.json", + "yaml": "activestate-komodo-edit.yml", + "html": "activestate-komodo-edit.html", + "license": "activestate-komodo-edit.LICENSE" + }, + { + "license_key": "actuate-birt-ihub-ftype-sla", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-actuate-birt-ihub-ftype-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "actuate-birt-ihub-ftype-sla.json", + "yaml": "actuate-birt-ihub-ftype-sla.yml", + "html": "actuate-birt-ihub-ftype-sla.html", + "license": "actuate-birt-ihub-ftype-sla.LICENSE" + }, + { + "license_key": "ada-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "GNAT-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ada-linking-exception" + ], + "is_exception": true, + "is_deprecated": false, + "json": "ada-linking-exception.json", + "yaml": "ada-linking-exception.yml", + "html": "ada-linking-exception.html", + "license": "ada-linking-exception.LICENSE" + }, + { + "license_key": "adacore-doc", + "category": "Permissive", + "spdx_license_key": "AdaCore-doc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adacore-doc.json", + "yaml": "adacore-doc.yml", + "html": "adacore-doc.html", + "license": "adacore-doc.LICENSE" + }, + { + "license_key": "adapt-1.0", + "category": "Copyleft", + "spdx_license_key": "APL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adapt-1.0.json", + "yaml": "adapt-1.0.yml", + "html": "adapt-1.0.html", + "license": "adapt-1.0.LICENSE" + }, + { + "license_key": "adaptec-downloadable", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adaptec-downloadable", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adaptec-downloadable.json", + "yaml": "adaptec-downloadable.yml", + "html": "adaptec-downloadable.html", + "license": "adaptec-downloadable.LICENSE" + }, + { + "license_key": "adaptec-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adaptec-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adaptec-eula.json", + "yaml": "adaptec-eula.yml", + "html": "adaptec-eula.html", + "license": "adaptec-eula.LICENSE" + }, + { + "license_key": "adcolony-tos-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adcolony-tos-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adcolony-tos-2022.json", + "yaml": "adcolony-tos-2022.yml", + "html": "adcolony-tos-2022.html", + "license": "adcolony-tos-2022.LICENSE" + }, + { + "license_key": "addthis-mobile-sdk-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-addthis-mobile-sdk-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "addthis-mobile-sdk-1.0.json", + "yaml": "addthis-mobile-sdk-1.0.yml", + "html": "addthis-mobile-sdk-1.0.html", + "license": "addthis-mobile-sdk-1.0.LICENSE" + }, + { + "license_key": "adi-bsd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-adi-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adi-bsd.json", + "yaml": "adi-bsd.yml", + "html": "adi-bsd.html", + "license": "adi-bsd.LICENSE" + }, + { + "license_key": "adobe-acrobat-reader-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-acrobat-reader-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-acrobat-reader-eula.json", + "yaml": "adobe-acrobat-reader-eula.yml", + "html": "adobe-acrobat-reader-eula.html", + "license": "adobe-acrobat-reader-eula.LICENSE" + }, + { + "license_key": "adobe-air-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-air-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-air-sdk.json", + "yaml": "adobe-air-sdk.yml", + "html": "adobe-air-sdk.html", + "license": "adobe-air-sdk.LICENSE" + }, + { + "license_key": "adobe-air-sdk-2014", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-air-sdk-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-air-sdk-2014.json", + "yaml": "adobe-air-sdk-2014.yml", + "html": "adobe-air-sdk-2014.html", + "license": "adobe-air-sdk-2014.LICENSE" + }, + { + "license_key": "adobe-color-profile-bundling", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-color-profile-bundling", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-color-profile-bundling.json", + "yaml": "adobe-color-profile-bundling.yml", + "html": "adobe-color-profile-bundling.html", + "license": "adobe-color-profile-bundling.LICENSE" + }, + { + "license_key": "adobe-color-profile-license", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-color-profile-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-color-profile-license.json", + "yaml": "adobe-color-profile-license.yml", + "html": "adobe-color-profile-license.html", + "license": "adobe-color-profile-license.LICENSE" + }, + { + "license_key": "adobe-dng-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-dng-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-dng-sdk.json", + "yaml": "adobe-dng-sdk.yml", + "html": "adobe-dng-sdk.html", + "license": "adobe-dng-sdk.LICENSE" + }, + { + "license_key": "adobe-dng-spec-patent", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-adobe-dng-spec-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-dng-spec-patent.json", + "yaml": "adobe-dng-spec-patent.yml", + "html": "adobe-dng-spec-patent.html", + "license": "adobe-dng-spec-patent.LICENSE" + }, + { + "license_key": "adobe-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-adobe-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-eula.json", + "yaml": "adobe-eula.yml", + "html": "adobe-eula.html", + "license": "adobe-eula.LICENSE" + }, + { + "license_key": "adobe-flash-player-eula-21.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-flash-player-eula-21.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-flash-player-eula-21.0.json", + "yaml": "adobe-flash-player-eula-21.0.yml", + "html": "adobe-flash-player-eula-21.0.html", + "license": "adobe-flash-player-eula-21.0.LICENSE" + }, + { + "license_key": "adobe-flex-4-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-flex-4-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-flex-4-sdk.json", + "yaml": "adobe-flex-4-sdk.yml", + "html": "adobe-flex-4-sdk.html", + "license": "adobe-flex-4-sdk.LICENSE" + }, + { + "license_key": "adobe-flex-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-flex-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-flex-sdk.json", + "yaml": "adobe-flex-sdk.yml", + "html": "adobe-flex-sdk.html", + "license": "adobe-flex-sdk.LICENSE" + }, + { + "license_key": "adobe-general-tou", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-adobe-general-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-general-tou.json", + "yaml": "adobe-general-tou.yml", + "html": "adobe-general-tou.html", + "license": "adobe-general-tou.LICENSE" + }, + { + "license_key": "adobe-glyph", + "category": "Permissive", + "spdx_license_key": "Adobe-Glyph", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-glyph.json", + "yaml": "adobe-glyph.yml", + "html": "adobe-glyph.html", + "license": "adobe-glyph.LICENSE" + }, + { + "license_key": "adobe-indesign-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-indesign-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-indesign-sdk.json", + "yaml": "adobe-indesign-sdk.yml", + "html": "adobe-indesign-sdk.html", + "license": "adobe-indesign-sdk.LICENSE" + }, + { + "license_key": "adobe-postscript", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-adobe-postscript", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-postscript.json", + "yaml": "adobe-postscript.yml", + "html": "adobe-postscript.html", + "license": "adobe-postscript.LICENSE" + }, + { + "license_key": "adobe-scl", + "category": "Permissive", + "spdx_license_key": "Adobe-2006", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-scl.json", + "yaml": "adobe-scl.yml", + "html": "adobe-scl.html", + "license": "adobe-scl.LICENSE" + }, + { + "license_key": "adobe-utopia", + "category": "Permissive", + "spdx_license_key": "Adobe-Utopia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adobe-utopia.json", + "yaml": "adobe-utopia.yml", + "html": "adobe-utopia.html", + "license": "adobe-utopia.LICENSE" + }, + { + "license_key": "adrian", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-adrian", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adrian.json", + "yaml": "adrian.yml", + "html": "adrian.html", + "license": "adrian.LICENSE" + }, + { + "license_key": "adsl", + "category": "Permissive", + "spdx_license_key": "ADSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "adsl.json", + "yaml": "adsl.yml", + "html": "adsl.html", + "license": "adsl.LICENSE" + }, + { + "license_key": "aes-128-3.0", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-aes-128-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aes-128-3.0.json", + "yaml": "aes-128-3.0.yml", + "html": "aes-128-3.0.html", + "license": "aes-128-3.0.LICENSE" + }, + { + "license_key": "afl-1.1", + "category": "Permissive", + "spdx_license_key": "AFL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afl-1.1.json", + "yaml": "afl-1.1.yml", + "html": "afl-1.1.html", + "license": "afl-1.1.LICENSE" + }, + { + "license_key": "afl-1.2", + "category": "Permissive", + "spdx_license_key": "AFL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afl-1.2.json", + "yaml": "afl-1.2.yml", + "html": "afl-1.2.html", + "license": "afl-1.2.LICENSE" + }, + { + "license_key": "afl-2.0", + "category": "Permissive", + "spdx_license_key": "AFL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afl-2.0.json", + "yaml": "afl-2.0.yml", + "html": "afl-2.0.html", + "license": "afl-2.0.LICENSE" + }, + { + "license_key": "afl-2.1", + "category": "Permissive", + "spdx_license_key": "AFL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afl-2.1.json", + "yaml": "afl-2.1.yml", + "html": "afl-2.1.html", + "license": "afl-2.1.LICENSE" + }, + { + "license_key": "afl-3.0", + "category": "Permissive", + "spdx_license_key": "AFL-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afl-3.0.json", + "yaml": "afl-3.0.yml", + "html": "afl-3.0.html", + "license": "afl-3.0.LICENSE" + }, + { + "license_key": "afmparse", + "category": "Permissive", + "spdx_license_key": "Afmparse", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afmparse.json", + "yaml": "afmparse.yml", + "html": "afmparse.html", + "license": "afmparse.LICENSE" + }, + { + "license_key": "afpl-8.0", + "category": "Copyleft", + "spdx_license_key": "Aladdin", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afpl-8.0.json", + "yaml": "afpl-8.0.yml", + "html": "afpl-8.0.html", + "license": "afpl-8.0.LICENSE" + }, + { + "license_key": "afpl-9.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-afpl-9.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "afpl-9.0.json", + "yaml": "afpl-9.0.yml", + "html": "afpl-9.0.html", + "license": "afpl-9.0.LICENSE" + }, + { + "license_key": "agentxpp", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-agentxpp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "agentxpp.json", + "yaml": "agentxpp.yml", + "html": "agentxpp.html", + "license": "agentxpp.LICENSE" + }, + { + "license_key": "agere-bsd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-agere-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "agere-bsd.json", + "yaml": "agere-bsd.yml", + "html": "agere-bsd.html", + "license": "agere-bsd.LICENSE" + }, + { + "license_key": "agere-sla", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-agere-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "agere-sla.json", + "yaml": "agere-sla.yml", + "html": "agere-sla.html", + "license": "agere-sla.LICENSE" + }, + { + "license_key": "ago-private-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ago-private-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ago-private-1.0.json", + "yaml": "ago-private-1.0.yml", + "html": "ago-private-1.0.html", + "license": "ago-private-1.0.LICENSE" + }, + { + "license_key": "agpl-1.0", + "category": "Copyleft", + "spdx_license_key": "AGPL-1.0-only", + "other_spdx_license_keys": [ + "AGPL-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "agpl-1.0.json", + "yaml": "agpl-1.0.yml", + "html": "agpl-1.0.html", + "license": "agpl-1.0.LICENSE" + }, + { + "license_key": "agpl-1.0-plus", + "category": "Copyleft", + "spdx_license_key": "AGPL-1.0-or-later", + "other_spdx_license_keys": [ + "AGPL-1.0+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "agpl-1.0-plus.json", + "yaml": "agpl-1.0-plus.yml", + "html": "agpl-1.0-plus.html", + "license": "agpl-1.0-plus.LICENSE" + }, + { + "license_key": "agpl-2.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-agpl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "agpl-2.0.json", + "yaml": "agpl-2.0.yml", + "html": "agpl-2.0.html", + "license": "agpl-2.0.LICENSE" + }, + { + "license_key": "agpl-3.0", + "category": "Copyleft", + "spdx_license_key": "AGPL-3.0-only", + "other_spdx_license_keys": [ + "AGPL-3.0", + "LicenseRef-AGPL-3.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "agpl-3.0.json", + "yaml": "agpl-3.0.yml", + "html": "agpl-3.0.html", + "license": "agpl-3.0.LICENSE" + }, + { + "license_key": "agpl-3.0-bacula", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "agpl-3.0-bacula.json", + "yaml": "agpl-3.0-bacula.yml", + "html": "agpl-3.0-bacula.html", + "license": "agpl-3.0-bacula.LICENSE" + }, + { + "license_key": "agpl-3.0-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "agpl-3.0-linking-exception.json", + "yaml": "agpl-3.0-linking-exception.yml", + "html": "agpl-3.0-linking-exception.html", + "license": "agpl-3.0-linking-exception.LICENSE" + }, + { + "license_key": "agpl-3.0-openssl", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "agpl-3.0-openssl.json", + "yaml": "agpl-3.0-openssl.yml", + "html": "agpl-3.0-openssl.html", + "license": "agpl-3.0-openssl.LICENSE" + }, + { + "license_key": "agpl-3.0-plus", + "category": "Copyleft", + "spdx_license_key": "AGPL-3.0-or-later", + "other_spdx_license_keys": [ + "AGPL-3.0+", + "LicenseRef-AGPL" + ], + "is_exception": false, + "is_deprecated": false, + "json": "agpl-3.0-plus.json", + "yaml": "agpl-3.0-plus.yml", + "html": "agpl-3.0-plus.html", + "license": "agpl-3.0-plus.LICENSE" + }, + { + "license_key": "agpl-generic-additional-terms", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-agpl-generic-additional-terms", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "agpl-generic-additional-terms.json", + "yaml": "agpl-generic-additional-terms.yml", + "html": "agpl-generic-additional-terms.html", + "license": "agpl-generic-additional-terms.LICENSE" + }, + { + "license_key": "agtpl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-agtpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "agtpl.json", + "yaml": "agtpl.yml", + "html": "agtpl.html", + "license": "agtpl.LICENSE" + }, + { + "license_key": "aladdin-md5", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "aladdin-md5.json", + "yaml": "aladdin-md5.yml", + "html": "aladdin-md5.html", + "license": "aladdin-md5.LICENSE" + }, + { + "license_key": "alasir", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-alasir", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "alasir.json", + "yaml": "alasir.yml", + "html": "alasir.html", + "license": "alasir.LICENSE" + }, + { + "license_key": "aldor-public-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-aldor-public-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aldor-public-2.0.json", + "yaml": "aldor-public-2.0.yml", + "html": "aldor-public-2.0.html", + "license": "aldor-public-2.0.LICENSE" + }, + { + "license_key": "alexisisaac-freeware", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-alexisisaac-freeware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "alexisisaac-freeware.json", + "yaml": "alexisisaac-freeware.yml", + "html": "alexisisaac-freeware.html", + "license": "alexisisaac-freeware.LICENSE" + }, + { + "license_key": "alfresco-exception-0.5", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-alfresco-exception-0.5", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "alfresco-exception-0.5.json", + "yaml": "alfresco-exception-0.5.yml", + "html": "alfresco-exception-0.5.html", + "license": "alfresco-exception-0.5.LICENSE" + }, + { + "license_key": "allegro-4", + "category": "Permissive", + "spdx_license_key": "Giftware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "allegro-4.json", + "yaml": "allegro-4.yml", + "html": "allegro-4.html", + "license": "allegro-4.LICENSE" + }, + { + "license_key": "allen-institute-software-2018", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-allen-institute-software-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "allen-institute-software-2018.json", + "yaml": "allen-institute-software-2018.yml", + "html": "allen-institute-software-2018.html", + "license": "allen-institute-software-2018.LICENSE" + }, + { + "license_key": "alliance-open-media-patent-1.0", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-alliance-open-media-patent-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "alliance-open-media-patent-1.0.json", + "yaml": "alliance-open-media-patent-1.0.yml", + "html": "alliance-open-media-patent-1.0.html", + "license": "alliance-open-media-patent-1.0.LICENSE" + }, + { + "license_key": "altermime", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-altermime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "altermime.json", + "yaml": "altermime.yml", + "html": "altermime.html", + "license": "altermime.LICENSE" + }, + { + "license_key": "altova-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-altova-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "altova-eula.json", + "yaml": "altova-eula.yml", + "html": "altova-eula.html", + "license": "altova-eula.LICENSE" + }, + { + "license_key": "amazon-redshift-jdbc", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-amazon-redshift-jdbc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "amazon-redshift-jdbc.json", + "yaml": "amazon-redshift-jdbc.yml", + "html": "amazon-redshift-jdbc.html", + "license": "amazon-redshift-jdbc.LICENSE" + }, + { + "license_key": "amazon-sl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-.amazon.com.-AmznSL-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-amazon-sl" + ], + "is_exception": false, + "is_deprecated": false, + "json": "amazon-sl.json", + "yaml": "amazon-sl.yml", + "html": "amazon-sl.html", + "license": "amazon-sl.LICENSE" + }, + { + "license_key": "amd-aspf-2023", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-amd-aspf-2023", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "amd-aspf-2023.json", + "yaml": "amd-aspf-2023.yml", + "html": "amd-aspf-2023.html", + "license": "amd-aspf-2023.LICENSE" + }, + { + "license_key": "amd-historical", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-amd-historical", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "amd-historical.json", + "yaml": "amd-historical.yml", + "html": "amd-historical.html", + "license": "amd-historical.LICENSE" + }, + { + "license_key": "amd-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-amd-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "amd-linux-firmware.json", + "yaml": "amd-linux-firmware.yml", + "html": "amd-linux-firmware.html", + "license": "amd-linux-firmware.LICENSE" + }, + { + "license_key": "amd-linux-firmware-export", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-amd-linux-firmware-export", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "amd-linux-firmware-export.json", + "yaml": "amd-linux-firmware-export.yml", + "html": "amd-linux-firmware-export.html", + "license": "amd-linux-firmware-export.LICENSE" + }, + { + "license_key": "amdplpa", + "category": "Permissive", + "spdx_license_key": "AMDPLPA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "amdplpa.json", + "yaml": "amdplpa.yml", + "html": "amdplpa.html", + "license": "amdplpa.LICENSE" + }, + { + "license_key": "aml", + "category": "Permissive", + "spdx_license_key": "AML", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aml.json", + "yaml": "aml.yml", + "html": "aml.html", + "license": "aml.LICENSE" + }, + { + "license_key": "amlogic-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-amlogic-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "amlogic-linux-firmware.json", + "yaml": "amlogic-linux-firmware.yml", + "html": "amlogic-linux-firmware.html", + "license": "amlogic-linux-firmware.LICENSE" + }, + { + "license_key": "ampas", + "category": "Permissive", + "spdx_license_key": "AMPAS", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ampas.json", + "yaml": "ampas.yml", + "html": "ampas.html", + "license": "ampas.LICENSE" + }, + { + "license_key": "ams-fonts", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ams-fonts", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ams-fonts.json", + "yaml": "ams-fonts.yml", + "html": "ams-fonts.html", + "license": "ams-fonts.LICENSE" + }, + { + "license_key": "android-sdk-2009", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-android-sdk-2009", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "android-sdk-2009.json", + "yaml": "android-sdk-2009.yml", + "html": "android-sdk-2009.html", + "license": "android-sdk-2009.LICENSE" + }, + { + "license_key": "android-sdk-2012", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-android-sdk-2012", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "android-sdk-2012.json", + "yaml": "android-sdk-2012.yml", + "html": "android-sdk-2012.html", + "license": "android-sdk-2012.LICENSE" + }, + { + "license_key": "android-sdk-2021", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-android-sdk-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "android-sdk-2021.json", + "yaml": "android-sdk-2021.yml", + "html": "android-sdk-2021.html", + "license": "android-sdk-2021.LICENSE" + }, + { + "license_key": "android-sdk-license", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-android-sdk-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "android-sdk-license.json", + "yaml": "android-sdk-license.yml", + "html": "android-sdk-license.html", + "license": "android-sdk-license.LICENSE" + }, + { + "license_key": "android-sdk-preview-2015", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-android-sdk-preview-2015", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "android-sdk-preview-2015.json", + "yaml": "android-sdk-preview-2015.yml", + "html": "android-sdk-preview-2015.html", + "license": "android-sdk-preview-2015.LICENSE" + }, + { + "license_key": "anepokis-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-anepokis-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "anepokis-1.0.json", + "yaml": "anepokis-1.0.yml", + "html": "anepokis-1.0.html", + "license": "anepokis-1.0.LICENSE" + }, + { + "license_key": "anti-capitalist-1.4", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-anti-capitalist-1.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "anti-capitalist-1.4.json", + "yaml": "anti-capitalist-1.4.yml", + "html": "anti-capitalist-1.4.html", + "license": "anti-capitalist-1.4.LICENSE" + }, + { + "license_key": "antlr-pd", + "category": "Permissive", + "spdx_license_key": "ANTLR-PD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "antlr-pd.json", + "yaml": "antlr-pd.yml", + "html": "antlr-pd.html", + "license": "antlr-pd.LICENSE" + }, + { + "license_key": "antlr-pd-fallback", + "category": "Public Domain", + "spdx_license_key": "ANTLR-PD-fallback", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "antlr-pd-fallback.json", + "yaml": "antlr-pd-fallback.yml", + "html": "antlr-pd-fallback.html", + "license": "antlr-pd-fallback.LICENSE" + }, + { + "license_key": "anu-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-anu-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "anu-license.json", + "yaml": "anu-license.yml", + "html": "anu-license.html", + "license": "anu-license.LICENSE" + }, + { + "license_key": "aop-pd", + "category": "Public Domain", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "aop-pd.json", + "yaml": "aop-pd.yml", + "html": "aop-pd.html", + "license": "aop-pd.LICENSE" + }, + { + "license_key": "apache-1.0", + "category": "Permissive", + "spdx_license_key": "Apache-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apache-1.0.json", + "yaml": "apache-1.0.yml", + "html": "apache-1.0.html", + "license": "apache-1.0.LICENSE" + }, + { + "license_key": "apache-1.1", + "category": "Permissive", + "spdx_license_key": "Apache-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apache-1.1.json", + "yaml": "apache-1.1.yml", + "html": "apache-1.1.html", + "license": "apache-1.1.LICENSE" + }, + { + "license_key": "apache-2.0", + "category": "Permissive", + "spdx_license_key": "Apache-2.0", + "other_spdx_license_keys": [ + "LicenseRef-Apache", + "LicenseRef-Apache-2.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "apache-2.0.json", + "yaml": "apache-2.0.yml", + "html": "apache-2.0.html", + "license": "apache-2.0.LICENSE" + }, + { + "license_key": "apache-2.0-linking-exception", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "apache-2.0-linking-exception.json", + "yaml": "apache-2.0-linking-exception.yml", + "html": "apache-2.0-linking-exception.html", + "license": "apache-2.0-linking-exception.LICENSE" + }, + { + "license_key": "apache-2.0-runtime-library-exception", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "apache-2.0-runtime-library-exception.json", + "yaml": "apache-2.0-runtime-library-exception.yml", + "html": "apache-2.0-runtime-library-exception.html", + "license": "apache-2.0-runtime-library-exception.LICENSE" + }, + { + "license_key": "apache-due-credit", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "apache-due-credit.json", + "yaml": "apache-due-credit.yml", + "html": "apache-due-credit.html", + "license": "apache-due-credit.LICENSE" + }, + { + "license_key": "apache-exception-llvm", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "apache-exception-llvm.json", + "yaml": "apache-exception-llvm.yml", + "html": "apache-exception-llvm.html", + "license": "apache-exception-llvm.LICENSE" + }, + { + "license_key": "apache-patent-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-apache-patent-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-apache-patent-provision-exception" + ], + "is_exception": true, + "is_deprecated": false, + "json": "apache-patent-exception.json", + "yaml": "apache-patent-exception.yml", + "html": "apache-patent-exception.html", + "license": "apache-patent-exception.LICENSE" + }, + { + "license_key": "apache-patent-provision-exception", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "apache-patent-provision-exception.json", + "yaml": "apache-patent-provision-exception.yml", + "html": "apache-patent-provision-exception.html", + "license": "apache-patent-provision-exception.LICENSE" + }, + { + "license_key": "apafml", + "category": "Permissive", + "spdx_license_key": "APAFML", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apafml.json", + "yaml": "apafml.yml", + "html": "apafml.html", + "license": "apafml.LICENSE" + }, + { + "license_key": "apl-1.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-apl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apl-1.1.json", + "yaml": "apl-1.1.yml", + "html": "apl-1.1.html", + "license": "apl-1.1.LICENSE" + }, + { + "license_key": "app-s2p", + "category": "Permissive", + "spdx_license_key": "App-s2p", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "app-s2p.json", + "yaml": "app-s2p.yml", + "html": "app-s2p.html", + "license": "app-s2p.LICENSE" + }, + { + "license_key": "appfire-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-appfire-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "appfire-eula.json", + "yaml": "appfire-eula.yml", + "html": "appfire-eula.html", + "license": "appfire-eula.LICENSE" + }, + { + "license_key": "apple-academic-lisa-os-3.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-apple-academic-lisa-os-3.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-academic-lisa-os-3.1.json", + "yaml": "apple-academic-lisa-os-3.1.yml", + "html": "apple-academic-lisa-os-3.1.html", + "license": "apple-academic-lisa-os-3.1.LICENSE" + }, + { + "license_key": "apple-attribution", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-apple-attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-attribution.json", + "yaml": "apple-attribution.yml", + "html": "apple-attribution.html", + "license": "apple-attribution.LICENSE" + }, + { + "license_key": "apple-attribution-1997", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-apple-attribution-1997", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-attribution-1997.json", + "yaml": "apple-attribution-1997.yml", + "html": "apple-attribution-1997.html", + "license": "apple-attribution-1997.LICENSE" + }, + { + "license_key": "apple-excl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-apple-excl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-excl.json", + "yaml": "apple-excl.yml", + "html": "apple-excl.html", + "license": "apple-excl.LICENSE" + }, + { + "license_key": "apple-mfi-license", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-apple-mfi-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-mfi-license.json", + "yaml": "apple-mfi-license.yml", + "html": "apple-mfi-license.html", + "license": "apple-mfi-license.LICENSE" + }, + { + "license_key": "apple-ml-ferret-2023", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-apple-ml-ferret-2023", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-ml-ferret-2023.json", + "yaml": "apple-ml-ferret-2023.yml", + "html": "apple-ml-ferret-2023.html", + "license": "apple-ml-ferret-2023.LICENSE" + }, + { + "license_key": "apple-mpeg-4", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-apple-mpeg-4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-mpeg-4.json", + "yaml": "apple-mpeg-4.yml", + "html": "apple-mpeg-4.html", + "license": "apple-mpeg-4.LICENSE" + }, + { + "license_key": "apple-runtime-library-exception", + "category": "Permissive", + "spdx_license_key": "Swift-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "apple-runtime-library-exception.json", + "yaml": "apple-runtime-library-exception.yml", + "html": "apple-runtime-library-exception.html", + "license": "apple-runtime-library-exception.LICENSE" + }, + { + "license_key": "apple-sscl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-apple-sscl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apple-sscl.json", + "yaml": "apple-sscl.yml", + "html": "apple-sscl.html", + "license": "apple-sscl.LICENSE" + }, + { + "license_key": "appsflyer-framework", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-appsflyer-framework", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "appsflyer-framework.json", + "yaml": "appsflyer-framework.yml", + "html": "appsflyer-framework.html", + "license": "appsflyer-framework.LICENSE" + }, + { + "license_key": "apsl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "APSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apsl-1.0.json", + "yaml": "apsl-1.0.yml", + "html": "apsl-1.0.html", + "license": "apsl-1.0.LICENSE" + }, + { + "license_key": "apsl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "APSL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apsl-1.1.json", + "yaml": "apsl-1.1.yml", + "html": "apsl-1.1.html", + "license": "apsl-1.1.LICENSE" + }, + { + "license_key": "apsl-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "APSL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apsl-1.2.json", + "yaml": "apsl-1.2.yml", + "html": "apsl-1.2.html", + "license": "apsl-1.2.LICENSE" + }, + { + "license_key": "apsl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "APSL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "apsl-2.0.json", + "yaml": "apsl-2.0.yml", + "html": "apsl-2.0.html", + "license": "apsl-2.0.LICENSE" + }, + { + "license_key": "aptana-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-aptana-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aptana-1.0.json", + "yaml": "aptana-1.0.yml", + "html": "aptana-1.0.html", + "license": "aptana-1.0.LICENSE" + }, + { + "license_key": "aptana-exception-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-aptana-exception-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "aptana-exception-3.0.json", + "yaml": "aptana-exception-3.0.yml", + "html": "aptana-exception-3.0.html", + "license": "aptana-exception-3.0.LICENSE" + }, + { + "license_key": "arachni-psl-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-arachni-psl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "arachni-psl-1.0.json", + "yaml": "arachni-psl-1.0.yml", + "html": "arachni-psl-1.0.html", + "license": "arachni-psl-1.0.LICENSE" + }, + { + "license_key": "aravindan-premkumar", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-aravindan-premkumar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aravindan-premkumar.json", + "yaml": "aravindan-premkumar.yml", + "html": "aravindan-premkumar.html", + "license": "aravindan-premkumar.LICENSE" + }, + { + "license_key": "argouml", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-argouml", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "argouml.json", + "yaml": "argouml.yml", + "html": "argouml.html", + "license": "argouml.LICENSE" + }, + { + "license_key": "arm-cortex-mx", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-arm-cortex-mx", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "arm-cortex-mx.json", + "yaml": "arm-cortex-mx.yml", + "html": "arm-cortex-mx.html", + "license": "arm-cortex-mx.LICENSE" + }, + { + "license_key": "arm-llvm-sga", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-arm-llvm-sga", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "arm-llvm-sga.json", + "yaml": "arm-llvm-sga.yml", + "html": "arm-llvm-sga.html", + "license": "arm-llvm-sga.LICENSE" + }, + { + "license_key": "arphic-public", + "category": "Copyleft", + "spdx_license_key": "Arphic-1999", + "other_spdx_license_keys": [ + "LicenseRef-scancode-arphic-public" + ], + "is_exception": false, + "is_deprecated": false, + "json": "arphic-public.json", + "yaml": "arphic-public.yml", + "html": "arphic-public.html", + "license": "arphic-public.LICENSE" + }, + { + "license_key": "array-input-method-pl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-array-input-method-pl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "array-input-method-pl.json", + "yaml": "array-input-method-pl.yml", + "html": "array-input-method-pl.html", + "license": "array-input-method-pl.LICENSE" + }, + { + "license_key": "artistic-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "Artistic-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "artistic-1.0.json", + "yaml": "artistic-1.0.yml", + "html": "artistic-1.0.html", + "license": "artistic-1.0.LICENSE" + }, + { + "license_key": "artistic-1.0-cl8", + "category": "Copyleft Limited", + "spdx_license_key": "Artistic-1.0-cl8", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "artistic-1.0-cl8.json", + "yaml": "artistic-1.0-cl8.yml", + "html": "artistic-1.0-cl8.html", + "license": "artistic-1.0-cl8.LICENSE" + }, + { + "license_key": "artistic-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "Artistic-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "artistic-2.0.json", + "yaml": "artistic-2.0.yml", + "html": "artistic-2.0.html", + "license": "artistic-2.0.LICENSE" + }, + { + "license_key": "artistic-clarified", + "category": "Copyleft Limited", + "spdx_license_key": "ClArtistic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "artistic-clarified.json", + "yaml": "artistic-clarified.yml", + "html": "artistic-clarified.html", + "license": "artistic-clarified.LICENSE" + }, + { + "license_key": "artistic-dist-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-artistic-1988-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "artistic-dist-1.0.json", + "yaml": "artistic-dist-1.0.yml", + "html": "artistic-dist-1.0.html", + "license": "artistic-dist-1.0.LICENSE" + }, + { + "license_key": "artistic-perl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "Artistic-1.0-Perl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "artistic-perl-1.0.json", + "yaml": "artistic-perl-1.0.yml", + "html": "artistic-perl-1.0.html", + "license": "artistic-perl-1.0.LICENSE" + }, + { + "license_key": "asal-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-asal-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "asal-1.0.json", + "yaml": "asal-1.0.yml", + "html": "asal-1.0.html", + "license": "asal-1.0.LICENSE" + }, + { + "license_key": "ascender-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ascender-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ascender-eula.json", + "yaml": "ascender-eula.yml", + "html": "ascender-eula.html", + "license": "ascender-eula.LICENSE" + }, + { + "license_key": "ascender-web-fonts", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ascender-web-fonts", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ascender-web-fonts.json", + "yaml": "ascender-web-fonts.yml", + "html": "ascender-web-fonts.html", + "license": "ascender-web-fonts.LICENSE" + }, + { + "license_key": "aslp", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-aslp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aslp.json", + "yaml": "aslp.yml", + "html": "aslp.html", + "license": "aslp.LICENSE" + }, + { + "license_key": "aslr", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-aslr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "aslr.json", + "yaml": "aslr.yml", + "html": "aslr.html", + "license": "aslr.LICENSE" + }, + { + "license_key": "asmus", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-asmus", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "asmus.json", + "yaml": "asmus.yml", + "html": "asmus.html", + "license": "asmus.LICENSE" + }, + { + "license_key": "asn1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-asn1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "asn1.json", + "yaml": "asn1.yml", + "html": "asn1.html", + "license": "asn1.LICENSE" + }, + { + "license_key": "asterisk-exception", + "category": "Copyleft", + "spdx_license_key": "Asterisk-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "asterisk-exception.json", + "yaml": "asterisk-exception.yml", + "html": "asterisk-exception.html", + "license": "asterisk-exception.LICENSE" + }, + { + "license_key": "aswf-digital-assets-1.0", + "category": "Free Restricted", + "spdx_license_key": "ASWF-Digital-Assets-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-aswf-digital-assets-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "aswf-digital-assets-1.0.json", + "yaml": "aswf-digital-assets-1.0.yml", + "html": "aswf-digital-assets-1.0.html", + "license": "aswf-digital-assets-1.0.LICENSE" + }, + { + "license_key": "aswf-digital-assets-1.1", + "category": "Free Restricted", + "spdx_license_key": "ASWF-Digital-Assets-1.1", + "other_spdx_license_keys": [ + "LicenseRef-scancode-aswf-digital-assets-1.1" + ], + "is_exception": false, + "is_deprecated": false, + "json": "aswf-digital-assets-1.1.json", + "yaml": "aswf-digital-assets-1.1.yml", + "html": "aswf-digital-assets-1.1.html", + "license": "aswf-digital-assets-1.1.LICENSE" + }, + { + "license_key": "ati-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ati-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ati-eula.json", + "yaml": "ati-eula.yml", + "html": "ati-eula.html", + "license": "ati-eula.LICENSE" + }, + { + "license_key": "atkinson-hyperlegible-font", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-atkinson-hyperlegible-font", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "atkinson-hyperlegible-font.json", + "yaml": "atkinson-hyperlegible-font.yml", + "html": "atkinson-hyperlegible-font.html", + "license": "atkinson-hyperlegible-font.LICENSE" + }, + { + "license_key": "atlassian-marketplace-tou", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-atlassian-marketplace-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "atlassian-marketplace-tou.json", + "yaml": "atlassian-marketplace-tou.yml", + "html": "atlassian-marketplace-tou.html", + "license": "atlassian-marketplace-tou.LICENSE" + }, + { + "license_key": "atmel-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-atmel-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "atmel-firmware.json", + "yaml": "atmel-firmware.yml", + "html": "atmel-firmware.html", + "license": "atmel-firmware.LICENSE" + }, + { + "license_key": "atmel-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-atmel-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "atmel-linux-firmware.json", + "yaml": "atmel-linux-firmware.yml", + "html": "atmel-linux-firmware.html", + "license": "atmel-linux-firmware.LICENSE" + }, + { + "license_key": "atmel-microcontroller", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-atmel-microcontroller", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "atmel-microcontroller.json", + "yaml": "atmel-microcontroller.yml", + "html": "atmel-microcontroller.html", + "license": "atmel-microcontroller.LICENSE" + }, + { + "license_key": "atmosphere-0.4", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-atmosphere-0.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "atmosphere-0.4.json", + "yaml": "atmosphere-0.4.yml", + "html": "atmosphere-0.4.html", + "license": "atmosphere-0.4.LICENSE" + }, + { + "license_key": "attribution", + "category": "Permissive", + "spdx_license_key": "AAL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "attribution.json", + "yaml": "attribution.yml", + "html": "attribution.html", + "license": "attribution.LICENSE" + }, + { + "license_key": "authorizenet-sdk", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-authorizenet-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "authorizenet-sdk.json", + "yaml": "authorizenet-sdk.yml", + "html": "authorizenet-sdk.html", + "license": "authorizenet-sdk.LICENSE" + }, + { + "license_key": "autoconf-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "Autoconf-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "autoconf-exception-2.0.json", + "yaml": "autoconf-exception-2.0.yml", + "html": "autoconf-exception-2.0.html", + "license": "autoconf-exception-2.0.LICENSE" + }, + { + "license_key": "autoconf-exception-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "Autoconf-exception-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "autoconf-exception-3.0.json", + "yaml": "autoconf-exception-3.0.yml", + "html": "autoconf-exception-3.0.html", + "license": "autoconf-exception-3.0.LICENSE" + }, + { + "license_key": "autoconf-macro-exception", + "category": "Copyleft Limited", + "spdx_license_key": "Autoconf-exception-macro", + "other_spdx_license_keys": [ + "LicenseRef-scancode-autoconf-macro-exception" + ], + "is_exception": true, + "is_deprecated": false, + "json": "autoconf-macro-exception.json", + "yaml": "autoconf-macro-exception.yml", + "html": "autoconf-macro-exception.html", + "license": "autoconf-macro-exception.LICENSE" + }, + { + "license_key": "autoconf-simple-exception", + "category": "Copyleft Limited", + "spdx_license_key": "Autoconf-exception-generic-3.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-autoconf-simple-exception" + ], + "is_exception": true, + "is_deprecated": false, + "json": "autoconf-simple-exception.json", + "yaml": "autoconf-simple-exception.yml", + "html": "autoconf-simple-exception.html", + "license": "autoconf-simple-exception.LICENSE" + }, + { + "license_key": "autoconf-simple-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "Autoconf-exception-generic", + "other_spdx_license_keys": [ + "LicenseRef-scancode-autoconf-simple-exception-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "autoconf-simple-exception-2.0.json", + "yaml": "autoconf-simple-exception-2.0.yml", + "html": "autoconf-simple-exception-2.0.html", + "license": "autoconf-simple-exception-2.0.LICENSE" + }, + { + "license_key": "autodesk-3d-sft-3.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-autodesk-3d-sft-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "autodesk-3d-sft-3.0.json", + "yaml": "autodesk-3d-sft-3.0.yml", + "html": "autodesk-3d-sft-3.0.html", + "license": "autodesk-3d-sft-3.0.LICENSE" + }, + { + "license_key": "autoit-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-autoit-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "autoit-eula.json", + "yaml": "autoit-eula.yml", + "html": "autoit-eula.html", + "license": "autoit-eula.LICENSE" + }, + { + "license_key": "autoopts-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-autoopts-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "autoopts-exception-2.0.json", + "yaml": "autoopts-exception-2.0.yml", + "html": "autoopts-exception-2.0.html", + "license": "autoopts-exception-2.0.LICENSE" + }, + { + "license_key": "avisynth-c-interface-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-avisynth-c-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "avisynth-c-interface-exception.json", + "yaml": "avisynth-c-interface-exception.yml", + "html": "avisynth-c-interface-exception.html", + "license": "avisynth-c-interface-exception.LICENSE" + }, + { + "license_key": "avisynth-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-avisynth-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "avisynth-linking-exception.json", + "yaml": "avisynth-linking-exception.yml", + "html": "avisynth-linking-exception.html", + "license": "avisynth-linking-exception.LICENSE" + }, + { + "license_key": "avsystem-5-clause", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-avsystem-5-clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "avsystem-5-clause.json", + "yaml": "avsystem-5-clause.yml", + "html": "avsystem-5-clause.html", + "license": "avsystem-5-clause.LICENSE" + }, + { + "license_key": "bacula-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-bacula-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "bacula-exception.json", + "yaml": "bacula-exception.yml", + "html": "bacula-exception.html", + "license": "bacula-exception.LICENSE" + }, + { + "license_key": "baekmuk-fonts", + "category": "Permissive", + "spdx_license_key": "Baekmuk", + "other_spdx_license_keys": [ + "LicenseRef-scancode-baekmuk-fonts" + ], + "is_exception": false, + "is_deprecated": false, + "json": "baekmuk-fonts.json", + "yaml": "baekmuk-fonts.yml", + "html": "baekmuk-fonts.html", + "license": "baekmuk-fonts.LICENSE" + }, + { + "license_key": "bahyph", + "category": "Permissive", + "spdx_license_key": "Bahyph", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bahyph.json", + "yaml": "bahyph.yml", + "html": "bahyph.html", + "license": "bahyph.LICENSE" + }, + { + "license_key": "bakoma-fonts-1995", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bakoma-fonts-1995", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bakoma-fonts-1995.json", + "yaml": "bakoma-fonts-1995.yml", + "html": "bakoma-fonts-1995.html", + "license": "bakoma-fonts-1995.LICENSE" + }, + { + "license_key": "bapl-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-bapl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bapl-1.0.json", + "yaml": "bapl-1.0.yml", + "html": "bapl-1.0.html", + "license": "bapl-1.0.LICENSE" + }, + { + "license_key": "barr-tex", + "category": "Permissive", + "spdx_license_key": "Barr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "barr-tex.json", + "yaml": "barr-tex.yml", + "html": "barr-tex.html", + "license": "barr-tex.LICENSE" + }, + { + "license_key": "bash-exception-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-bash-exception-gpl-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "bash-exception-gpl.json", + "yaml": "bash-exception-gpl.yml", + "html": "bash-exception-gpl.html", + "license": "bash-exception-gpl.LICENSE" + }, + { + "license_key": "bcrypt-solar-designer", + "category": "Permissive", + "spdx_license_key": "bcrypt-Solar-Designer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bcrypt-solar-designer.json", + "yaml": "bcrypt-solar-designer.yml", + "html": "bcrypt-solar-designer.html", + "license": "bcrypt-solar-designer.LICENSE" + }, + { + "license_key": "bea-2.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bea-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bea-2.1.json", + "yaml": "bea-2.1.yml", + "html": "bea-2.1.html", + "license": "bea-2.1.LICENSE" + }, + { + "license_key": "beal-screamer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-beal-screamer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "beal-screamer.json", + "yaml": "beal-screamer.yml", + "html": "beal-screamer.html", + "license": "beal-screamer.LICENSE" + }, + { + "license_key": "beerware", + "category": "Permissive", + "spdx_license_key": "Beerware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "beerware.json", + "yaml": "beerware.yml", + "html": "beerware.html", + "license": "beerware.LICENSE" + }, + { + "license_key": "beri-hw-sw-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-beri-hw-sw-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "beri-hw-sw-1.0.json", + "yaml": "beri-hw-sw-1.0.yml", + "html": "beri-hw-sw-1.0.html", + "license": "beri-hw-sw-1.0.LICENSE" + }, + { + "license_key": "bigcode-open-rail-m-v1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bigcode-open-rail-m-v1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bigcode-open-rail-m-v1.json", + "yaml": "bigcode-open-rail-m-v1.yml", + "html": "bigcode-open-rail-m-v1.html", + "license": "bigcode-open-rail-m-v1.LICENSE" + }, + { + "license_key": "bigdigits", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bigdigits", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bigdigits.json", + "yaml": "bigdigits.yml", + "html": "bigdigits.html", + "license": "bigdigits.LICENSE" + }, + { + "license_key": "bigelow-holmes", + "category": "Permissive", + "spdx_license_key": "Lucida-Bitmap-Fonts", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bigelow-holmes" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bigelow-holmes.json", + "yaml": "bigelow-holmes.yml", + "html": "bigelow-holmes.html", + "license": "bigelow-holmes.LICENSE" + }, + { + "license_key": "bigscience-open-rail-m", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bigscience-open-rail-m", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bigscience-open-rail-m.json", + "yaml": "bigscience-open-rail-m.yml", + "html": "bigscience-open-rail-m.html", + "license": "bigscience-open-rail-m.LICENSE" + }, + { + "license_key": "bigscience-rail-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bigscience-rail-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bigscience-rail-1.0.json", + "yaml": "bigscience-rail-1.0.yml", + "html": "bigscience-rail-1.0.html", + "license": "bigscience-rail-1.0.LICENSE" + }, + { + "license_key": "binary-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-binary-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "binary-linux-firmware.json", + "yaml": "binary-linux-firmware.yml", + "html": "binary-linux-firmware.html", + "license": "binary-linux-firmware.LICENSE" + }, + { + "license_key": "binary-linux-firmware-patent", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-binary-linux-firmware-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "binary-linux-firmware-patent.json", + "yaml": "binary-linux-firmware-patent.yml", + "html": "binary-linux-firmware-patent.html", + "license": "binary-linux-firmware-patent.LICENSE" + }, + { + "license_key": "biopython", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-biopython", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "biopython.json", + "yaml": "biopython.yml", + "html": "biopython.html", + "license": "biopython.LICENSE" + }, + { + "license_key": "biosl-4.0", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-biosl-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "biosl-4.0.json", + "yaml": "biosl-4.0.yml", + "html": "biosl-4.0.html", + "license": "biosl-4.0.LICENSE" + }, + { + "license_key": "bison-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "Bison-exception-1.24", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bison-exception-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "bison-exception-2.0.json", + "yaml": "bison-exception-2.0.yml", + "html": "bison-exception-2.0.html", + "license": "bison-exception-2.0.LICENSE" + }, + { + "license_key": "bison-exception-2.2", + "category": "Copyleft Limited", + "spdx_license_key": "Bison-exception-2.2", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "bison-exception-2.2.json", + "yaml": "bison-exception-2.2.yml", + "html": "bison-exception-2.2.html", + "license": "bison-exception-2.2.LICENSE" + }, + { + "license_key": "bitstream", + "category": "Permissive", + "spdx_license_key": "Bitstream-Vera", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bitstream" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bitstream.json", + "yaml": "bitstream.yml", + "html": "bitstream.html", + "license": "bitstream.LICENSE" + }, + { + "license_key": "bittorrent-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "BitTorrent-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bittorrent-1.0.json", + "yaml": "bittorrent-1.0.yml", + "html": "bittorrent-1.0.html", + "license": "bittorrent-1.0.LICENSE" + }, + { + "license_key": "bittorrent-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "BitTorrent-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bittorrent-1.1.json", + "yaml": "bittorrent-1.1.yml", + "html": "bittorrent-1.1.html", + "license": "bittorrent-1.1.LICENSE" + }, + { + "license_key": "bittorrent-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-bittorrent-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bittorrent-1.2.json", + "yaml": "bittorrent-1.2.yml", + "html": "bittorrent-1.2.html", + "license": "bittorrent-1.2.LICENSE" + }, + { + "license_key": "bittorrent-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bittorrent-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bittorrent-eula.json", + "yaml": "bittorrent-eula.yml", + "html": "bittorrent-eula.html", + "license": "bittorrent-eula.LICENSE" + }, + { + "license_key": "bitwarden-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-bitwarden-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bitwarden-1.0.json", + "yaml": "bitwarden-1.0.yml", + "html": "bitwarden-1.0.html", + "license": "bitwarden-1.0.LICENSE" + }, + { + "license_key": "bitzi-pd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bitzi-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bitzi-pd.json", + "yaml": "bitzi-pd.yml", + "html": "bitzi-pd.html", + "license": "bitzi-pd.LICENSE" + }, + { + "license_key": "blas-2017", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-blas-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "blas-2017.json", + "yaml": "blas-2017.yml", + "html": "blas-2017.html", + "license": "blas-2017.LICENSE" + }, + { + "license_key": "blender-2010", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-blender-2010", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "blender-2010.json", + "yaml": "blender-2010.yml", + "html": "blender-2010.html", + "license": "blender-2010.LICENSE" + }, + { + "license_key": "blessing", + "category": "Public Domain", + "spdx_license_key": "blessing", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "blessing.json", + "yaml": "blessing.yml", + "html": "blessing.html", + "license": "blessing.LICENSE" + }, + { + "license_key": "blitz-artistic", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-blitz-artistic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "blitz-artistic.json", + "yaml": "blitz-artistic.yml", + "html": "blitz-artistic.html", + "license": "blitz-artistic.LICENSE" + }, + { + "license_key": "bloomberg-blpapi", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bloomberg-blpapi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bloomberg-blpapi.json", + "yaml": "bloomberg-blpapi.yml", + "html": "bloomberg-blpapi.html", + "license": "bloomberg-blpapi.LICENSE" + }, + { + "license_key": "blueoak-1.0.0", + "category": "Permissive", + "spdx_license_key": "BlueOak-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "blueoak-1.0.0.json", + "yaml": "blueoak-1.0.0.yml", + "html": "blueoak-1.0.0.html", + "license": "blueoak-1.0.0.LICENSE" + }, + { + "license_key": "bohl-0.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bohl-0.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bohl-0.2.json", + "yaml": "bohl-0.2.yml", + "html": "bohl-0.2.html", + "license": "bohl-0.2.LICENSE" + }, + { + "license_key": "boost-1.0", + "category": "Permissive", + "spdx_license_key": "BSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "boost-1.0.json", + "yaml": "boost-1.0.yml", + "html": "boost-1.0.html", + "license": "boost-1.0.LICENSE" + }, + { + "license_key": "boost-original", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-boost-original", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "boost-original.json", + "yaml": "boost-original.yml", + "html": "boost-original.html", + "license": "boost-original.LICENSE" + }, + { + "license_key": "bootloader-exception", + "category": "Copyleft Limited", + "spdx_license_key": "Bootloader-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "bootloader-exception.json", + "yaml": "bootloader-exception.yml", + "html": "bootloader-exception.html", + "license": "bootloader-exception.LICENSE" + }, + { + "license_key": "borceux", + "category": "Permissive", + "spdx_license_key": "Borceux", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "borceux.json", + "yaml": "borceux.yml", + "html": "borceux.html", + "license": "borceux.LICENSE" + }, + { + "license_key": "boutell-libgd-2021", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-boutell-libgd-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "boutell-libgd-2021.json", + "yaml": "boutell-libgd-2021.yml", + "html": "boutell-libgd-2021.html", + "license": "boutell-libgd-2021.LICENSE" + }, + { + "license_key": "bpel4ws-spec", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bpel4ws-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bpel4ws-spec.json", + "yaml": "bpel4ws-spec.yml", + "html": "bpel4ws-spec.html", + "license": "bpel4ws-spec.LICENSE" + }, + { + "license_key": "bpmn-io", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bpmn-io", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bpmn-io.json", + "yaml": "bpmn-io.yml", + "html": "bpmn-io.html", + "license": "bpmn-io.LICENSE" + }, + { + "license_key": "brad-martinez-vb-32", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-brad-martinez-vb-32", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "brad-martinez-vb-32.json", + "yaml": "brad-martinez-vb-32.yml", + "html": "brad-martinez-vb-32.html", + "license": "brad-martinez-vb-32.LICENSE" + }, + { + "license_key": "brankas-open-license-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-brankas-open-license-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "brankas-open-license-1.0.json", + "yaml": "brankas-open-license-1.0.yml", + "html": "brankas-open-license-1.0.html", + "license": "brankas-open-license-1.0.LICENSE" + }, + { + "license_key": "brent-corkum", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-brent-corkum", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "brent-corkum.json", + "yaml": "brent-corkum.yml", + "html": "brent-corkum.html", + "license": "brent-corkum.LICENSE" + }, + { + "license_key": "brian-clapper", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-brian-clapper", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "brian-clapper.json", + "yaml": "brian-clapper.yml", + "html": "brian-clapper.html", + "license": "brian-clapper.LICENSE" + }, + { + "license_key": "brian-gladman", + "category": "Permissive", + "spdx_license_key": "Brian-Gladman-2-Clause", + "other_spdx_license_keys": [ + "LicenseRef-scancode-brian-gladman" + ], + "is_exception": false, + "is_deprecated": false, + "json": "brian-gladman.json", + "yaml": "brian-gladman.yml", + "html": "brian-gladman.html", + "license": "brian-gladman.LICENSE" + }, + { + "license_key": "brian-gladman-3-clause", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-brian-gladman-3-clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "brian-gladman-3-clause.json", + "yaml": "brian-gladman-3-clause.yml", + "html": "brian-gladman-3-clause.html", + "license": "brian-gladman-3-clause.LICENSE" + }, + { + "license_key": "brian-gladman-dual", + "category": "Permissive", + "spdx_license_key": "Brian-Gladman-3-Clause", + "other_spdx_license_keys": [ + "LicenseRef-scancode-brian-gladman-dual" + ], + "is_exception": false, + "is_deprecated": false, + "json": "brian-gladman-dual.json", + "yaml": "brian-gladman-dual.yml", + "html": "brian-gladman-dual.html", + "license": "brian-gladman-dual.LICENSE" + }, + { + "license_key": "broadcom-cfe", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-broadcom-cfe", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-cfe.json", + "yaml": "broadcom-cfe.yml", + "html": "broadcom-cfe.html", + "license": "broadcom-cfe.LICENSE" + }, + { + "license_key": "broadcom-commercial", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-broadcom-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-commercial.json", + "yaml": "broadcom-commercial.yml", + "html": "broadcom-commercial.html", + "license": "broadcom-commercial.LICENSE" + }, + { + "license_key": "broadcom-confidential", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-broadcom-confidential", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-confidential.json", + "yaml": "broadcom-confidential.yml", + "html": "broadcom-confidential.html", + "license": "broadcom-confidential.LICENSE" + }, + { + "license_key": "broadcom-dual", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "broadcom-dual.json", + "yaml": "broadcom-dual.yml", + "html": "broadcom-dual.html", + "license": "broadcom-dual.LICENSE" + }, + { + "license_key": "broadcom-linking-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-bcm-linking-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "broadcom-linking-exception-2.0.json", + "yaml": "broadcom-linking-exception-2.0.yml", + "html": "broadcom-linking-exception-2.0.html", + "license": "broadcom-linking-exception-2.0.LICENSE" + }, + { + "license_key": "broadcom-linking-unmodified", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-broadcom-linking-unmodified", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "broadcom-linking-unmodified.json", + "yaml": "broadcom-linking-unmodified.yml", + "html": "broadcom-linking-unmodified.html", + "license": "broadcom-linking-unmodified.LICENSE" + }, + { + "license_key": "broadcom-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-broadcom-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-linux-firmware.json", + "yaml": "broadcom-linux-firmware.yml", + "html": "broadcom-linux-firmware.html", + "license": "broadcom-linux-firmware.LICENSE" + }, + { + "license_key": "broadcom-linux-timer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-broadcom-linux-timer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-linux-timer.json", + "yaml": "broadcom-linux-timer.yml", + "html": "broadcom-linux-timer.html", + "license": "broadcom-linux-timer.LICENSE" + }, + { + "license_key": "broadcom-opus-patent", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-broadcom-opus-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-opus-patent.json", + "yaml": "broadcom-opus-patent.yml", + "html": "broadcom-opus-patent.html", + "license": "broadcom-opus-patent.LICENSE" + }, + { + "license_key": "broadcom-proprietary", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-broadcom-proprietary", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-proprietary.json", + "yaml": "broadcom-proprietary.yml", + "html": "broadcom-proprietary.html", + "license": "broadcom-proprietary.LICENSE" + }, + { + "license_key": "broadcom-raspberry-pi", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-broadcom-raspberry-pi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-raspberry-pi.json", + "yaml": "broadcom-raspberry-pi.yml", + "html": "broadcom-raspberry-pi.html", + "license": "broadcom-raspberry-pi.LICENSE" + }, + { + "license_key": "broadcom-standard-terms", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-broadcom-standard-terms", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-standard-terms.json", + "yaml": "broadcom-standard-terms.yml", + "html": "broadcom-standard-terms.html", + "license": "broadcom-standard-terms.LICENSE" + }, + { + "license_key": "broadcom-unmodified-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-broadcom-unmodified-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "broadcom-unmodified-exception.json", + "yaml": "broadcom-unmodified-exception.yml", + "html": "broadcom-unmodified-exception.html", + "license": "broadcom-unmodified-exception.LICENSE" + }, + { + "license_key": "broadcom-unpublished-source", + "category": "Commercial", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "broadcom-unpublished-source.json", + "yaml": "broadcom-unpublished-source.yml", + "html": "broadcom-unpublished-source.html", + "license": "broadcom-unpublished-source.LICENSE" + }, + { + "license_key": "broadcom-wiced", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-broadcom-wiced", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadcom-wiced.json", + "yaml": "broadcom-wiced.yml", + "html": "broadcom-wiced.html", + "license": "broadcom-wiced.LICENSE" + }, + { + "license_key": "broadleaf-fair-use", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-broadleaf-fair-use", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "broadleaf-fair-use.json", + "yaml": "broadleaf-fair-use.yml", + "html": "broadleaf-fair-use.html", + "license": "broadleaf-fair-use.LICENSE" + }, + { + "license_key": "brocade-firmware", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-brocade-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "brocade-firmware.json", + "yaml": "brocade-firmware.yml", + "html": "brocade-firmware.html", + "license": "brocade-firmware.LICENSE" + }, + { + "license_key": "bruno-podetti", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bruno-podetti", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bruno-podetti.json", + "yaml": "bruno-podetti.yml", + "html": "bruno-podetti.html", + "license": "bruno-podetti.LICENSE" + }, + { + "license_key": "bsd-1-clause", + "category": "Permissive", + "spdx_license_key": "BSD-1-Clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-1-clause.json", + "yaml": "bsd-1-clause.yml", + "html": "bsd-1-clause.html", + "license": "bsd-1-clause.LICENSE" + }, + { + "license_key": "bsd-1-clause-build", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-1-clause-build", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-1-clause-build.json", + "yaml": "bsd-1-clause-build.yml", + "html": "bsd-1-clause-build.html", + "license": "bsd-1-clause-build.LICENSE" + }, + { + "license_key": "bsd-1988", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-1988", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-1988.json", + "yaml": "bsd-1988.yml", + "html": "bsd-1988.html", + "license": "bsd-1988.LICENSE" + }, + { + "license_key": "bsd-2-clause-freebsd", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "bsd-2-clause-freebsd.json", + "yaml": "bsd-2-clause-freebsd.yml", + "html": "bsd-2-clause-freebsd.html", + "license": "bsd-2-clause-freebsd.LICENSE" + }, + { + "license_key": "bsd-2-clause-netbsd", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "bsd-2-clause-netbsd.json", + "yaml": "bsd-2-clause-netbsd.yml", + "html": "bsd-2-clause-netbsd.html", + "license": "bsd-2-clause-netbsd.LICENSE" + }, + { + "license_key": "bsd-2-clause-plus-advertizing", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-2-clause-plus-advertizing", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-2-clause-plus-advertizing.json", + "yaml": "bsd-2-clause-plus-advertizing.yml", + "html": "bsd-2-clause-plus-advertizing.html", + "license": "bsd-2-clause-plus-advertizing.LICENSE" + }, + { + "license_key": "bsd-2-clause-views", + "category": "Permissive", + "spdx_license_key": "BSD-2-Clause-Views", + "other_spdx_license_keys": [ + "BSD-2-Clause-FreeBSD" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-2-clause-views.json", + "yaml": "bsd-2-clause-views.yml", + "html": "bsd-2-clause-views.html", + "license": "bsd-2-clause-views.LICENSE" + }, + { + "license_key": "bsd-3-clause-devine", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-devine", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-devine.json", + "yaml": "bsd-3-clause-devine.yml", + "html": "bsd-3-clause-devine.html", + "license": "bsd-3-clause-devine.LICENSE" + }, + { + "license_key": "bsd-3-clause-fda", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-fda", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-fda.json", + "yaml": "bsd-3-clause-fda.yml", + "html": "bsd-3-clause-fda.html", + "license": "bsd-3-clause-fda.LICENSE" + }, + { + "license_key": "bsd-3-clause-hp", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-HP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-hp.json", + "yaml": "bsd-3-clause-hp.yml", + "html": "bsd-3-clause-hp.html", + "license": "bsd-3-clause-hp.LICENSE" + }, + { + "license_key": "bsd-3-clause-jtag", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-jtag", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-jtag.json", + "yaml": "bsd-3-clause-jtag.yml", + "html": "bsd-3-clause-jtag.html", + "license": "bsd-3-clause-jtag.LICENSE" + }, + { + "license_key": "bsd-3-clause-no-change", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-no-change", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-no-change.json", + "yaml": "bsd-3-clause-no-change.yml", + "html": "bsd-3-clause-no-change.html", + "license": "bsd-3-clause-no-change.LICENSE" + }, + { + "license_key": "bsd-3-clause-no-military", + "category": "Free Restricted", + "spdx_license_key": "BSD-3-Clause-No-Military-License", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsd-3-clause-no-military" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-no-military.json", + "yaml": "bsd-3-clause-no-military.yml", + "html": "bsd-3-clause-no-military.html", + "license": "bsd-3-clause-no-military.LICENSE" + }, + { + "license_key": "bsd-3-clause-no-nuclear-warranty", + "category": "Free Restricted", + "spdx_license_key": "BSD-3-Clause-No-Nuclear-Warranty", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-no-nuclear-warranty.json", + "yaml": "bsd-3-clause-no-nuclear-warranty.yml", + "html": "bsd-3-clause-no-nuclear-warranty.html", + "license": "bsd-3-clause-no-nuclear-warranty.LICENSE" + }, + { + "license_key": "bsd-3-clause-no-trademark", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-3-clause-no-trademark", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-no-trademark.json", + "yaml": "bsd-3-clause-no-trademark.yml", + "html": "bsd-3-clause-no-trademark.html", + "license": "bsd-3-clause-no-trademark.LICENSE" + }, + { + "license_key": "bsd-3-clause-open-mpi", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-Open-MPI", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-open-mpi.json", + "yaml": "bsd-3-clause-open-mpi.yml", + "html": "bsd-3-clause-open-mpi.html", + "license": "bsd-3-clause-open-mpi.LICENSE" + }, + { + "license_key": "bsd-3-clause-sun", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-Sun", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsd-3-clause-sun" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-3-clause-sun.json", + "yaml": "bsd-3-clause-sun.yml", + "html": "bsd-3-clause-sun.html", + "license": "bsd-3-clause-sun.LICENSE" + }, + { + "license_key": "bsd-4-clause-shortened", + "category": "Permissive", + "spdx_license_key": "BSD-4-Clause-Shortened", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-4-clause-shortened.json", + "yaml": "bsd-4-clause-shortened.yml", + "html": "bsd-4-clause-shortened.html", + "license": "bsd-4-clause-shortened.LICENSE" + }, + { + "license_key": "bsd-ack", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-Attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-ack.json", + "yaml": "bsd-ack.yml", + "html": "bsd-ack.html", + "license": "bsd-ack.LICENSE" + }, + { + "license_key": "bsd-ack-carrot2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-ack-carrot2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-ack-carrot2.json", + "yaml": "bsd-ack-carrot2.yml", + "html": "bsd-ack-carrot2.html", + "license": "bsd-ack-carrot2.LICENSE" + }, + { + "license_key": "bsd-advertising-acknowledgement", + "category": "Permissive", + "spdx_license_key": "BSD-Advertising-Acknowledgement", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-advertising-acknowledgement.json", + "yaml": "bsd-advertising-acknowledgement.yml", + "html": "bsd-advertising-acknowledgement.html", + "license": "bsd-advertising-acknowledgement.LICENSE" + }, + { + "license_key": "bsd-artwork", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-artwork", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-artwork.json", + "yaml": "bsd-artwork.yml", + "html": "bsd-artwork.html", + "license": "bsd-artwork.LICENSE" + }, + { + "license_key": "bsd-atmel", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-atmel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-atmel.json", + "yaml": "bsd-atmel.yml", + "html": "bsd-atmel.html", + "license": "bsd-atmel.LICENSE" + }, + { + "license_key": "bsd-axis", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "bsd-axis.json", + "yaml": "bsd-axis.yml", + "html": "bsd-axis.html", + "license": "bsd-axis.LICENSE" + }, + { + "license_key": "bsd-axis-nomod", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-axis-nomod", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-axis-nomod.json", + "yaml": "bsd-axis-nomod.yml", + "html": "bsd-axis-nomod.html", + "license": "bsd-axis-nomod.LICENSE" + }, + { + "license_key": "bsd-credit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-credit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-credit.json", + "yaml": "bsd-credit.yml", + "html": "bsd-credit.html", + "license": "bsd-credit.LICENSE" + }, + { + "license_key": "bsd-dpt", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-dpt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-dpt.json", + "yaml": "bsd-dpt.yml", + "html": "bsd-dpt.html", + "license": "bsd-dpt.LICENSE" + }, + { + "license_key": "bsd-export", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-export", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-export.json", + "yaml": "bsd-export.yml", + "html": "bsd-export.html", + "license": "bsd-export.LICENSE" + }, + { + "license_key": "bsd-inferno-nettverk", + "category": "Permissive", + "spdx_license_key": "BSD-Inferno-Nettverk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-inferno-nettverk.json", + "yaml": "bsd-inferno-nettverk.yml", + "html": "bsd-inferno-nettverk.html", + "license": "bsd-inferno-nettverk.LICENSE" + }, + { + "license_key": "bsd-innosys", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-innosys", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-innosys.json", + "yaml": "bsd-innosys.yml", + "html": "bsd-innosys.html", + "license": "bsd-innosys.LICENSE" + }, + { + "license_key": "bsd-intel", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "bsd-intel.json", + "yaml": "bsd-intel.yml", + "html": "bsd-intel.html", + "license": "bsd-intel.LICENSE" + }, + { + "license_key": "bsd-mylex", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-mylex", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-mylex.json", + "yaml": "bsd-mylex.yml", + "html": "bsd-mylex.html", + "license": "bsd-mylex.LICENSE" + }, + { + "license_key": "bsd-new", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause", + "other_spdx_license_keys": [ + "LicenseRef-scancode-libzip" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-new.json", + "yaml": "bsd-new.yml", + "html": "bsd-new.html", + "license": "bsd-new.LICENSE" + }, + { + "license_key": "bsd-new-derivative", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-new-derivative", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-new-derivative.json", + "yaml": "bsd-new-derivative.yml", + "html": "bsd-new-derivative.html", + "license": "bsd-new-derivative.LICENSE" + }, + { + "license_key": "bsd-new-far-manager", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "bsd-new-far-manager.json", + "yaml": "bsd-new-far-manager.yml", + "html": "bsd-new-far-manager.html", + "license": "bsd-new-far-manager.LICENSE" + }, + { + "license_key": "bsd-new-nomod", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-new-nomod", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-new-nomod.json", + "yaml": "bsd-new-nomod.yml", + "html": "bsd-new-nomod.html", + "license": "bsd-new-nomod.LICENSE" + }, + { + "license_key": "bsd-new-tcpdump", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-new-tcpdump", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-new-tcpdump.json", + "yaml": "bsd-new-tcpdump.yml", + "html": "bsd-new-tcpdump.html", + "license": "bsd-new-tcpdump.LICENSE" + }, + { + "license_key": "bsd-no-disclaimer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-no-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-no-disclaimer.json", + "yaml": "bsd-no-disclaimer.yml", + "html": "bsd-no-disclaimer.html", + "license": "bsd-no-disclaimer.LICENSE" + }, + { + "license_key": "bsd-no-disclaimer-unmodified", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-no-disclaimer-unmodified", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-no-disclaimer-unmodified.json", + "yaml": "bsd-no-disclaimer-unmodified.yml", + "html": "bsd-no-disclaimer-unmodified.html", + "license": "bsd-no-disclaimer-unmodified.LICENSE" + }, + { + "license_key": "bsd-no-mod", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-bsd-no-mod", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-no-mod.json", + "yaml": "bsd-no-mod.yml", + "html": "bsd-no-mod.html", + "license": "bsd-no-mod.LICENSE" + }, + { + "license_key": "bsd-original", + "category": "Permissive", + "spdx_license_key": "BSD-4-Clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-original.json", + "yaml": "bsd-original.yml", + "html": "bsd-original.html", + "license": "bsd-original.LICENSE" + }, + { + "license_key": "bsd-original-muscle", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-original-muscle", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-original-muscle.json", + "yaml": "bsd-original-muscle.yml", + "html": "bsd-original-muscle.html", + "license": "bsd-original-muscle.LICENSE" + }, + { + "license_key": "bsd-original-uc", + "category": "Permissive", + "spdx_license_key": "BSD-4-Clause-UC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-original-uc.json", + "yaml": "bsd-original-uc.yml", + "html": "bsd-original-uc.html", + "license": "bsd-original-uc.LICENSE" + }, + { + "license_key": "bsd-original-uc-1986", + "category": "Permissive", + "spdx_license_key": "BSD-4.3RENO", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsd-original-uc-1986" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-original-uc-1986.json", + "yaml": "bsd-original-uc-1986.yml", + "html": "bsd-original-uc-1986.html", + "license": "bsd-original-uc-1986.LICENSE" + }, + { + "license_key": "bsd-original-uc-1990", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "bsd-original-uc-1990.json", + "yaml": "bsd-original-uc-1990.yml", + "html": "bsd-original-uc-1990.html", + "license": "bsd-original-uc-1990.LICENSE" + }, + { + "license_key": "bsd-original-voices", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-original-voices", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-original-voices.json", + "yaml": "bsd-original-voices.yml", + "html": "bsd-original-voices.html", + "license": "bsd-original-voices.LICENSE" + }, + { + "license_key": "bsd-plus-mod-notice", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-plus-mod-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-plus-mod-notice.json", + "yaml": "bsd-plus-mod-notice.yml", + "html": "bsd-plus-mod-notice.html", + "license": "bsd-plus-mod-notice.LICENSE" + }, + { + "license_key": "bsd-plus-patent", + "category": "Permissive", + "spdx_license_key": "BSD-2-Clause-Patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-plus-patent.json", + "yaml": "bsd-plus-patent.yml", + "html": "bsd-plus-patent.html", + "license": "bsd-plus-patent.LICENSE" + }, + { + "license_key": "bsd-protection", + "category": "Copyleft", + "spdx_license_key": "BSD-Protection", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-protection.json", + "yaml": "bsd-protection.yml", + "html": "bsd-protection.html", + "license": "bsd-protection.LICENSE" + }, + { + "license_key": "bsd-simplified", + "category": "Permissive", + "spdx_license_key": "BSD-2-Clause", + "other_spdx_license_keys": [ + "BSD-2-Clause-NetBSD", + "BSD-2" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-simplified.json", + "yaml": "bsd-simplified.yml", + "html": "bsd-simplified.html", + "license": "bsd-simplified.LICENSE" + }, + { + "license_key": "bsd-simplified-darwin", + "category": "Permissive", + "spdx_license_key": "BSD-2-Clause-Darwin", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsd-simplified-darwin" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-simplified-darwin.json", + "yaml": "bsd-simplified-darwin.yml", + "html": "bsd-simplified-darwin.html", + "license": "bsd-simplified-darwin.LICENSE" + }, + { + "license_key": "bsd-simplified-intel", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-simplified-intel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-simplified-intel.json", + "yaml": "bsd-simplified-intel.yml", + "html": "bsd-simplified-intel.html", + "license": "bsd-simplified-intel.LICENSE" + }, + { + "license_key": "bsd-simplified-source", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-simplified-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-simplified-source.json", + "yaml": "bsd-simplified-source.yml", + "html": "bsd-simplified-source.html", + "license": "bsd-simplified-source.LICENSE" + }, + { + "license_key": "bsd-source-code", + "category": "Permissive", + "spdx_license_key": "BSD-Source-Code", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-source-code.json", + "yaml": "bsd-source-code.yml", + "html": "bsd-source-code.html", + "license": "bsd-source-code.LICENSE" + }, + { + "license_key": "bsd-systemics", + "category": "Permissive", + "spdx_license_key": "BSD-Systemics", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-systemics.json", + "yaml": "bsd-systemics.yml", + "html": "bsd-systemics.html", + "license": "bsd-systemics.LICENSE" + }, + { + "license_key": "bsd-systemics-w3works", + "category": "Permissive", + "spdx_license_key": "BSD-Systemics-W3Works", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-systemics-w3works.json", + "yaml": "bsd-systemics-w3works.yml", + "html": "bsd-systemics-w3works.html", + "license": "bsd-systemics-w3works.LICENSE" + }, + { + "license_key": "bsd-top", + "category": "Permissive", + "spdx_license_key": "BSD-Source-beginning-file", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsd-top" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-top.json", + "yaml": "bsd-top.yml", + "html": "bsd-top.html", + "license": "bsd-top.LICENSE" + }, + { + "license_key": "bsd-top-gpl-addition", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-top-gpl-addition", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-top-gpl-addition.json", + "yaml": "bsd-top-gpl-addition.yml", + "html": "bsd-top-gpl-addition.html", + "license": "bsd-top-gpl-addition.LICENSE" + }, + { + "license_key": "bsd-unchanged", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-unchanged", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-unchanged.json", + "yaml": "bsd-unchanged.yml", + "html": "bsd-unchanged.html", + "license": "bsd-unchanged.LICENSE" + }, + { + "license_key": "bsd-unmodified", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-unmodified", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-unmodified.json", + "yaml": "bsd-unmodified.yml", + "html": "bsd-unmodified.html", + "license": "bsd-unmodified.LICENSE" + }, + { + "license_key": "bsd-x11", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsd-x11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-x11.json", + "yaml": "bsd-x11.yml", + "html": "bsd-x11.html", + "license": "bsd-x11.LICENSE" + }, + { + "license_key": "bsd-zero", + "category": "Permissive", + "spdx_license_key": "0BSD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsd-zero.json", + "yaml": "bsd-zero.yml", + "html": "bsd-zero.html", + "license": "bsd-zero.LICENSE" + }, + { + "license_key": "bsl-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-bsl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsl-1.0.json", + "yaml": "bsl-1.0.yml", + "html": "bsl-1.0.html", + "license": "bsl-1.0.LICENSE" + }, + { + "license_key": "bsl-1.1", + "category": "Source-available", + "spdx_license_key": "BUSL-1.1", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsl-1.1" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsl-1.1.json", + "yaml": "bsl-1.1.yml", + "html": "bsl-1.1.html", + "license": "bsl-1.1.LICENSE" + }, + { + "license_key": "bsla", + "category": "Permissive", + "spdx_license_key": "BSD-4.3TAHOE", + "other_spdx_license_keys": [ + "LicenseRef-scancode-bsla" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bsla.json", + "yaml": "bsla.yml", + "html": "bsla.html", + "license": "bsla.LICENSE" + }, + { + "license_key": "bsla-no-advert", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bsla-no-advert", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bsla-no-advert.json", + "yaml": "bsla-no-advert.yml", + "html": "bsla-no-advert.html", + "license": "bsla-no-advert.LICENSE" + }, + { + "license_key": "bugsense-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-bugsense-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bugsense-sdk.json", + "yaml": "bugsense-sdk.yml", + "html": "bugsense-sdk.html", + "license": "bugsense-sdk.LICENSE" + }, + { + "license_key": "bytemark", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-bytemark", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "bytemark.json", + "yaml": "bytemark.yml", + "html": "bytemark.html", + "license": "bytemark.LICENSE" + }, + { + "license_key": "bzip2-libbzip-1.0.5", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "bzip2-libbzip-1.0.5.json", + "yaml": "bzip2-libbzip-1.0.5.yml", + "html": "bzip2-libbzip-1.0.5.html", + "license": "bzip2-libbzip-1.0.5.LICENSE" + }, + { + "license_key": "bzip2-libbzip-2010", + "category": "Permissive", + "spdx_license_key": "bzip2-1.0.6", + "other_spdx_license_keys": [ + "bzip2-1.0.5" + ], + "is_exception": false, + "is_deprecated": false, + "json": "bzip2-libbzip-2010.json", + "yaml": "bzip2-libbzip-2010.yml", + "html": "bzip2-libbzip-2010.html", + "license": "bzip2-libbzip-2010.LICENSE" + }, + { + "license_key": "c-fsl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-c-fsl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "c-fsl-1.1.json", + "yaml": "c-fsl-1.1.yml", + "html": "c-fsl-1.1.html", + "license": "c-fsl-1.1.LICENSE" + }, + { + "license_key": "c-uda-1.0", + "category": "Free Restricted", + "spdx_license_key": "C-UDA-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "c-uda-1.0.json", + "yaml": "c-uda-1.0.yml", + "html": "c-uda-1.0.html", + "license": "c-uda-1.0.LICENSE" + }, + { + "license_key": "ca-tosl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "CATOSL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ca-tosl-1.1.json", + "yaml": "ca-tosl-1.1.yml", + "html": "ca-tosl-1.1.html", + "license": "ca-tosl-1.1.LICENSE" + }, + { + "license_key": "cadence-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cadence-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cadence-linux-firmware.json", + "yaml": "cadence-linux-firmware.yml", + "html": "cadence-linux-firmware.html", + "license": "cadence-linux-firmware.LICENSE" + }, + { + "license_key": "cal-1.0", + "category": "Copyleft", + "spdx_license_key": "CAL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cal-1.0.json", + "yaml": "cal-1.0.yml", + "html": "cal-1.0.html", + "license": "cal-1.0.LICENSE" + }, + { + "license_key": "cal-1.0-combined-work-exception", + "category": "Copyleft Limited", + "spdx_license_key": "CAL-1.0-Combined-Work-Exception", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cal-1.0-combined-work-exception.json", + "yaml": "cal-1.0-combined-work-exception.yml", + "html": "cal-1.0-combined-work-exception.html", + "license": "cal-1.0-combined-work-exception.LICENSE" + }, + { + "license_key": "caldera", + "category": "Free Restricted", + "spdx_license_key": "Caldera", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "caldera.json", + "yaml": "caldera.yml", + "html": "caldera.html", + "license": "caldera.LICENSE" + }, + { + "license_key": "caldera-no-preamble", + "category": "Permissive", + "spdx_license_key": "Caldera-no-preamble", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "caldera-no-preamble.json", + "yaml": "caldera-no-preamble.yml", + "html": "caldera-no-preamble.html", + "license": "caldera-no-preamble.LICENSE" + }, + { + "license_key": "can-ogl-2.0-en", + "category": "Permissive", + "spdx_license_key": "OGL-Canada-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "can-ogl-2.0-en.json", + "yaml": "can-ogl-2.0-en.yml", + "html": "can-ogl-2.0-en.html", + "license": "can-ogl-2.0-en.LICENSE" + }, + { + "license_key": "can-ogl-alberta-2.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-can-ogl-alberta-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "can-ogl-alberta-2.1.json", + "yaml": "can-ogl-alberta-2.1.yml", + "html": "can-ogl-alberta-2.1.html", + "license": "can-ogl-alberta-2.1.LICENSE" + }, + { + "license_key": "can-ogl-british-columbia-2.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-can-ogl-british-columbia-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "can-ogl-british-columbia-2.0.json", + "yaml": "can-ogl-british-columbia-2.0.yml", + "html": "can-ogl-british-columbia-2.0.html", + "license": "can-ogl-british-columbia-2.0.LICENSE" + }, + { + "license_key": "can-ogl-nova-scotia-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-can-ogl-nova-scotia-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "can-ogl-nova-scotia-1.0.json", + "yaml": "can-ogl-nova-scotia-1.0.yml", + "html": "can-ogl-nova-scotia-1.0.html", + "license": "can-ogl-nova-scotia-1.0.LICENSE" + }, + { + "license_key": "can-ogl-ontario-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-can-ogl-ontario-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "can-ogl-ontario-1.0.json", + "yaml": "can-ogl-ontario-1.0.yml", + "html": "can-ogl-ontario-1.0.html", + "license": "can-ogl-ontario-1.0.LICENSE" + }, + { + "license_key": "can-ogl-toronto-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-can-ogl-toronto-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "can-ogl-toronto-1.0.json", + "yaml": "can-ogl-toronto-1.0.yml", + "html": "can-ogl-toronto-1.0.html", + "license": "can-ogl-toronto-1.0.LICENSE" + }, + { + "license_key": "canonical-ha-cla-any-e-v1.2", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-canonical-ha-cla-any-e-v1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "canonical-ha-cla-any-e-v1.2.json", + "yaml": "canonical-ha-cla-any-e-v1.2.yml", + "html": "canonical-ha-cla-any-e-v1.2.html", + "license": "canonical-ha-cla-any-e-v1.2.LICENSE" + }, + { + "license_key": "canonical-ha-cla-any-i-v1.2", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-canonical-ha-cla-any-i-v1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "canonical-ha-cla-any-i-v1.2.json", + "yaml": "canonical-ha-cla-any-i-v1.2.yml", + "html": "canonical-ha-cla-any-i-v1.2.html", + "license": "canonical-ha-cla-any-i-v1.2.LICENSE" + }, + { + "license_key": "capec-tou", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-capec-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "capec-tou.json", + "yaml": "capec-tou.yml", + "html": "capec-tou.html", + "license": "capec-tou.LICENSE" + }, + { + "license_key": "careware", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-careware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "careware.json", + "yaml": "careware.yml", + "html": "careware.html", + "license": "careware.LICENSE" + }, + { + "license_key": "carnegie-mellon", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-carnegie-mellon", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "carnegie-mellon.json", + "yaml": "carnegie-mellon.yml", + "html": "carnegie-mellon.html", + "license": "carnegie-mellon.LICENSE" + }, + { + "license_key": "carnegie-mellon-contributors", + "category": "Permissive", + "spdx_license_key": "CMU-Mach", + "other_spdx_license_keys": [ + "LicenseRef-scancode-carnegie-mellon-contributors" + ], + "is_exception": false, + "is_deprecated": false, + "json": "carnegie-mellon-contributors.json", + "yaml": "carnegie-mellon-contributors.yml", + "html": "carnegie-mellon-contributors.html", + "license": "carnegie-mellon-contributors.LICENSE" + }, + { + "license_key": "catharon-osl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-catharon-osl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "catharon-osl.json", + "yaml": "catharon-osl.yml", + "html": "catharon-osl.html", + "license": "catharon-osl.LICENSE" + }, + { + "license_key": "cavium-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cavium-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cavium-linux-firmware.json", + "yaml": "cavium-linux-firmware.yml", + "html": "cavium-linux-firmware.html", + "license": "cavium-linux-firmware.LICENSE" + }, + { + "license_key": "cavium-malloc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cavium-malloc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cavium-malloc.json", + "yaml": "cavium-malloc.yml", + "html": "cavium-malloc.html", + "license": "cavium-malloc.LICENSE" + }, + { + "license_key": "cavium-targeted-hardware", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-cavium-targeted-hardware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cavium-targeted-hardware.json", + "yaml": "cavium-targeted-hardware.yml", + "html": "cavium-targeted-hardware.html", + "license": "cavium-targeted-hardware.LICENSE" + }, + { + "license_key": "cc-by-1.0", + "category": "Permissive", + "spdx_license_key": "CC-BY-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-1.0.json", + "yaml": "cc-by-1.0.yml", + "html": "cc-by-1.0.html", + "license": "cc-by-1.0.LICENSE" + }, + { + "license_key": "cc-by-2.0", + "category": "Permissive", + "spdx_license_key": "CC-BY-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-2.0.json", + "yaml": "cc-by-2.0.yml", + "html": "cc-by-2.0.html", + "license": "cc-by-2.0.LICENSE" + }, + { + "license_key": "cc-by-2.0-uk", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cc-by-2.0-uk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-2.0-uk.json", + "yaml": "cc-by-2.0-uk.yml", + "html": "cc-by-2.0-uk.html", + "license": "cc-by-2.0-uk.LICENSE" + }, + { + "license_key": "cc-by-2.5", + "category": "Permissive", + "spdx_license_key": "CC-BY-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-2.5.json", + "yaml": "cc-by-2.5.yml", + "html": "cc-by-2.5.html", + "license": "cc-by-2.5.LICENSE" + }, + { + "license_key": "cc-by-2.5-au", + "category": "Permissive", + "spdx_license_key": "CC-BY-2.5-AU", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-2.5-au.json", + "yaml": "cc-by-2.5-au.yml", + "html": "cc-by-2.5-au.html", + "license": "cc-by-2.5-au.LICENSE" + }, + { + "license_key": "cc-by-3.0", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-3.0.json", + "yaml": "cc-by-3.0.yml", + "html": "cc-by-3.0.html", + "license": "cc-by-3.0.LICENSE" + }, + { + "license_key": "cc-by-3.0-at", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0-AT", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-3.0-at.json", + "yaml": "cc-by-3.0-at.yml", + "html": "cc-by-3.0-at.html", + "license": "cc-by-3.0-at.LICENSE" + }, + { + "license_key": "cc-by-3.0-au", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0-AU", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-3.0-au.json", + "yaml": "cc-by-3.0-au.yml", + "html": "cc-by-3.0-au.html", + "license": "cc-by-3.0-au.LICENSE" + }, + { + "license_key": "cc-by-3.0-de", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-3.0-de.json", + "yaml": "cc-by-3.0-de.yml", + "html": "cc-by-3.0-de.html", + "license": "cc-by-3.0-de.LICENSE" + }, + { + "license_key": "cc-by-3.0-igo", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0-IGO", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-3.0-igo.json", + "yaml": "cc-by-3.0-igo.yml", + "html": "cc-by-3.0-igo.html", + "license": "cc-by-3.0-igo.LICENSE" + }, + { + "license_key": "cc-by-3.0-nl", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0-NL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-3.0-nl.json", + "yaml": "cc-by-3.0-nl.yml", + "html": "cc-by-3.0-nl.html", + "license": "cc-by-3.0-nl.LICENSE" + }, + { + "license_key": "cc-by-3.0-us", + "category": "Permissive", + "spdx_license_key": "CC-BY-3.0-US", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-3.0-us.json", + "yaml": "cc-by-3.0-us.yml", + "html": "cc-by-3.0-us.html", + "license": "cc-by-3.0-us.LICENSE" + }, + { + "license_key": "cc-by-4.0", + "category": "Permissive", + "spdx_license_key": "CC-BY-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-4.0.json", + "yaml": "cc-by-4.0.yml", + "html": "cc-by-4.0.html", + "license": "cc-by-4.0.LICENSE" + }, + { + "license_key": "cc-by-nc-1.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-1.0.json", + "yaml": "cc-by-nc-1.0.yml", + "html": "cc-by-nc-1.0.html", + "license": "cc-by-nc-1.0.LICENSE" + }, + { + "license_key": "cc-by-nc-2.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-2.0.json", + "yaml": "cc-by-nc-2.0.yml", + "html": "cc-by-nc-2.0.html", + "license": "cc-by-nc-2.0.LICENSE" + }, + { + "license_key": "cc-by-nc-2.5", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-2.5.json", + "yaml": "cc-by-nc-2.5.yml", + "html": "cc-by-nc-2.5.html", + "license": "cc-by-nc-2.5.LICENSE" + }, + { + "license_key": "cc-by-nc-3.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-3.0.json", + "yaml": "cc-by-nc-3.0.yml", + "html": "cc-by-nc-3.0.html", + "license": "cc-by-nc-3.0.LICENSE" + }, + { + "license_key": "cc-by-nc-3.0-de", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-3.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-3.0-de.json", + "yaml": "cc-by-nc-3.0-de.yml", + "html": "cc-by-nc-3.0-de.html", + "license": "cc-by-nc-3.0-de.LICENSE" + }, + { + "license_key": "cc-by-nc-4.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-4.0.json", + "yaml": "cc-by-nc-4.0.yml", + "html": "cc-by-nc-4.0.html", + "license": "cc-by-nc-4.0.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-1.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-1.0.json", + "yaml": "cc-by-nc-nd-1.0.yml", + "html": "cc-by-nc-nd-1.0.html", + "license": "cc-by-nc-nd-1.0.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-2.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-2.0.json", + "yaml": "cc-by-nc-nd-2.0.yml", + "html": "cc-by-nc-nd-2.0.html", + "license": "cc-by-nc-nd-2.0.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-2.0-at", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cc-by-nc-nd-2.0-at", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-2.0-at.json", + "yaml": "cc-by-nc-nd-2.0-at.yml", + "html": "cc-by-nc-nd-2.0-at.html", + "license": "cc-by-nc-nd-2.0-at.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-2.0-au", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cc-by-nc-nd-2.0-au", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-2.0-au.json", + "yaml": "cc-by-nc-nd-2.0-au.yml", + "html": "cc-by-nc-nd-2.0-au.html", + "license": "cc-by-nc-nd-2.0-au.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-2.5", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-2.5.json", + "yaml": "cc-by-nc-nd-2.5.yml", + "html": "cc-by-nc-nd-2.5.html", + "license": "cc-by-nc-nd-2.5.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-3.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-3.0.json", + "yaml": "cc-by-nc-nd-3.0.yml", + "html": "cc-by-nc-nd-3.0.html", + "license": "cc-by-nc-nd-3.0.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-3.0-de", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-3.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-3.0-de.json", + "yaml": "cc-by-nc-nd-3.0-de.yml", + "html": "cc-by-nc-nd-3.0-de.html", + "license": "cc-by-nc-nd-3.0-de.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-3.0-igo", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-3.0-IGO", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-3.0-igo.json", + "yaml": "cc-by-nc-nd-3.0-igo.yml", + "html": "cc-by-nc-nd-3.0-igo.html", + "license": "cc-by-nc-nd-3.0-igo.LICENSE" + }, + { + "license_key": "cc-by-nc-nd-4.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-ND-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-nd-4.0.json", + "yaml": "cc-by-nc-nd-4.0.yml", + "html": "cc-by-nc-nd-4.0.html", + "license": "cc-by-nc-nd-4.0.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-1.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-1.0.json", + "yaml": "cc-by-nc-sa-1.0.yml", + "html": "cc-by-nc-sa-1.0.html", + "license": "cc-by-nc-sa-1.0.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-2.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-2.0.json", + "yaml": "cc-by-nc-sa-2.0.yml", + "html": "cc-by-nc-sa-2.0.html", + "license": "cc-by-nc-sa-2.0.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-2.0-de", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-2.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-2.0-de.json", + "yaml": "cc-by-nc-sa-2.0-de.yml", + "html": "cc-by-nc-sa-2.0-de.html", + "license": "cc-by-nc-sa-2.0-de.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-2.0-fr", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-2.0-FR", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-2.0-fr.json", + "yaml": "cc-by-nc-sa-2.0-fr.yml", + "html": "cc-by-nc-sa-2.0-fr.html", + "license": "cc-by-nc-sa-2.0-fr.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-2.0-uk", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-2.0-UK", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-2.0-uk.json", + "yaml": "cc-by-nc-sa-2.0-uk.yml", + "html": "cc-by-nc-sa-2.0-uk.html", + "license": "cc-by-nc-sa-2.0-uk.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-2.5", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-2.5.json", + "yaml": "cc-by-nc-sa-2.5.yml", + "html": "cc-by-nc-sa-2.5.html", + "license": "cc-by-nc-sa-2.5.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-3.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-3.0.json", + "yaml": "cc-by-nc-sa-3.0.yml", + "html": "cc-by-nc-sa-3.0.html", + "license": "cc-by-nc-sa-3.0.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-3.0-de", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-3.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-3.0-de.json", + "yaml": "cc-by-nc-sa-3.0-de.yml", + "html": "cc-by-nc-sa-3.0-de.html", + "license": "cc-by-nc-sa-3.0-de.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-3.0-igo", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-3.0-IGO", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-3.0-igo.json", + "yaml": "cc-by-nc-sa-3.0-igo.yml", + "html": "cc-by-nc-sa-3.0-igo.html", + "license": "cc-by-nc-sa-3.0-igo.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-3.0-us", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cc-by-nc-sa-3.0-us", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-3.0-us.json", + "yaml": "cc-by-nc-sa-3.0-us.yml", + "html": "cc-by-nc-sa-3.0-us.html", + "license": "cc-by-nc-sa-3.0-us.LICENSE" + }, + { + "license_key": "cc-by-nc-sa-4.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-NC-SA-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nc-sa-4.0.json", + "yaml": "cc-by-nc-sa-4.0.yml", + "html": "cc-by-nc-sa-4.0.html", + "license": "cc-by-nc-sa-4.0.LICENSE" + }, + { + "license_key": "cc-by-nd-1.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-ND-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nd-1.0.json", + "yaml": "cc-by-nd-1.0.yml", + "html": "cc-by-nd-1.0.html", + "license": "cc-by-nd-1.0.LICENSE" + }, + { + "license_key": "cc-by-nd-2.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-ND-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nd-2.0.json", + "yaml": "cc-by-nd-2.0.yml", + "html": "cc-by-nd-2.0.html", + "license": "cc-by-nd-2.0.LICENSE" + }, + { + "license_key": "cc-by-nd-2.5", + "category": "Source-available", + "spdx_license_key": "CC-BY-ND-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nd-2.5.json", + "yaml": "cc-by-nd-2.5.yml", + "html": "cc-by-nd-2.5.html", + "license": "cc-by-nd-2.5.LICENSE" + }, + { + "license_key": "cc-by-nd-3.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-ND-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nd-3.0.json", + "yaml": "cc-by-nd-3.0.yml", + "html": "cc-by-nd-3.0.html", + "license": "cc-by-nd-3.0.LICENSE" + }, + { + "license_key": "cc-by-nd-3.0-de", + "category": "Source-available", + "spdx_license_key": "CC-BY-ND-3.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nd-3.0-de.json", + "yaml": "cc-by-nd-3.0-de.yml", + "html": "cc-by-nd-3.0-de.html", + "license": "cc-by-nd-3.0-de.LICENSE" + }, + { + "license_key": "cc-by-nd-4.0", + "category": "Source-available", + "spdx_license_key": "CC-BY-ND-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-nd-4.0.json", + "yaml": "cc-by-nd-4.0.yml", + "html": "cc-by-nd-4.0.html", + "license": "cc-by-nd-4.0.LICENSE" + }, + { + "license_key": "cc-by-sa-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-1.0.json", + "yaml": "cc-by-sa-1.0.yml", + "html": "cc-by-sa-1.0.html", + "license": "cc-by-sa-1.0.LICENSE" + }, + { + "license_key": "cc-by-sa-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-2.0.json", + "yaml": "cc-by-sa-2.0.yml", + "html": "cc-by-sa-2.0.html", + "license": "cc-by-sa-2.0.LICENSE" + }, + { + "license_key": "cc-by-sa-2.0-uk", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-2.0-UK", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-2.0-uk.json", + "yaml": "cc-by-sa-2.0-uk.yml", + "html": "cc-by-sa-2.0-uk.html", + "license": "cc-by-sa-2.0-uk.LICENSE" + }, + { + "license_key": "cc-by-sa-2.1-jp", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-2.1-JP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-2.1-jp.json", + "yaml": "cc-by-sa-2.1-jp.yml", + "html": "cc-by-sa-2.1-jp.html", + "license": "cc-by-sa-2.1-jp.LICENSE" + }, + { + "license_key": "cc-by-sa-2.5", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-2.5.json", + "yaml": "cc-by-sa-2.5.yml", + "html": "cc-by-sa-2.5.html", + "license": "cc-by-sa-2.5.LICENSE" + }, + { + "license_key": "cc-by-sa-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-3.0.json", + "yaml": "cc-by-sa-3.0.yml", + "html": "cc-by-sa-3.0.html", + "license": "cc-by-sa-3.0.LICENSE" + }, + { + "license_key": "cc-by-sa-3.0-at", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-3.0-AT", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-3.0-at.json", + "yaml": "cc-by-sa-3.0-at.yml", + "html": "cc-by-sa-3.0-at.html", + "license": "cc-by-sa-3.0-at.LICENSE" + }, + { + "license_key": "cc-by-sa-3.0-de", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-3.0-DE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-3.0-de.json", + "yaml": "cc-by-sa-3.0-de.yml", + "html": "cc-by-sa-3.0-de.html", + "license": "cc-by-sa-3.0-de.LICENSE" + }, + { + "license_key": "cc-by-sa-3.0-igo", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-3.0-IGO", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-3.0-igo.json", + "yaml": "cc-by-sa-3.0-igo.yml", + "html": "cc-by-sa-3.0-igo.html", + "license": "cc-by-sa-3.0-igo.LICENSE" + }, + { + "license_key": "cc-by-sa-4.0", + "category": "Copyleft Limited", + "spdx_license_key": "CC-BY-SA-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-by-sa-4.0.json", + "yaml": "cc-by-sa-4.0.yml", + "html": "cc-by-sa-4.0.html", + "license": "cc-by-sa-4.0.LICENSE" + }, + { + "license_key": "cc-devnations-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cc-devnations-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-devnations-2.0.json", + "yaml": "cc-devnations-2.0.yml", + "html": "cc-devnations-2.0.html", + "license": "cc-devnations-2.0.LICENSE" + }, + { + "license_key": "cc-gpl-2.0-pt", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-cc-gpl-2.0-pt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-gpl-2.0-pt.json", + "yaml": "cc-gpl-2.0-pt.yml", + "html": "cc-gpl-2.0-pt.html", + "license": "cc-gpl-2.0-pt.LICENSE" + }, + { + "license_key": "cc-lgpl-2.1-pt", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cc-lgpl-2.1-pt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-lgpl-2.1-pt.json", + "yaml": "cc-lgpl-2.1-pt.yml", + "html": "cc-lgpl-2.1-pt.html", + "license": "cc-lgpl-2.1-pt.LICENSE" + }, + { + "license_key": "cc-nc-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cc-nc-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-nc-1.0.json", + "yaml": "cc-nc-1.0.yml", + "html": "cc-nc-1.0.html", + "license": "cc-nc-1.0.LICENSE" + }, + { + "license_key": "cc-nc-sampling-plus-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cc-nc-sampling-plus-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-nc-sampling-plus-1.0.json", + "yaml": "cc-nc-sampling-plus-1.0.yml", + "html": "cc-nc-sampling-plus-1.0.html", + "license": "cc-nc-sampling-plus-1.0.LICENSE" + }, + { + "license_key": "cc-nd-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cc-nd-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-nd-1.0.json", + "yaml": "cc-nd-1.0.yml", + "html": "cc-nd-1.0.html", + "license": "cc-nd-1.0.LICENSE" + }, + { + "license_key": "cc-pd", + "category": "Public Domain", + "spdx_license_key": "CC-PDDC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-pd.json", + "yaml": "cc-pd.yml", + "html": "cc-pd.html", + "license": "cc-pd.LICENSE" + }, + { + "license_key": "cc-pdm-1.0", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-cc-pdm-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-pdm-1.0.json", + "yaml": "cc-pdm-1.0.yml", + "html": "cc-pdm-1.0.html", + "license": "cc-pdm-1.0.LICENSE" + }, + { + "license_key": "cc-sa-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-cc-sa-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-sa-1.0.json", + "yaml": "cc-sa-1.0.yml", + "html": "cc-sa-1.0.html", + "license": "cc-sa-1.0.LICENSE" + }, + { + "license_key": "cc-sampling-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cc-sampling-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-sampling-1.0.json", + "yaml": "cc-sampling-1.0.yml", + "html": "cc-sampling-1.0.html", + "license": "cc-sampling-1.0.LICENSE" + }, + { + "license_key": "cc-sampling-plus-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cc-sampling-plus-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc-sampling-plus-1.0.json", + "yaml": "cc-sampling-plus-1.0.yml", + "html": "cc-sampling-plus-1.0.html", + "license": "cc-sampling-plus-1.0.LICENSE" + }, + { + "license_key": "cc0-1.0", + "category": "Public Domain", + "spdx_license_key": "CC0-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cc0-1.0.json", + "yaml": "cc0-1.0.yml", + "html": "cc0-1.0.html", + "license": "cc0-1.0.LICENSE" + }, + { + "license_key": "cclrc", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-cclrc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cclrc.json", + "yaml": "cclrc.yml", + "html": "cclrc.html", + "license": "cclrc.LICENSE" + }, + { + "license_key": "ccrc-1.0", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ccrc-1.0.json", + "yaml": "ccrc-1.0.yml", + "html": "ccrc-1.0.html", + "license": "ccrc-1.0.LICENSE" + }, + { + "license_key": "cddl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "CDDL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cddl-1.0.json", + "yaml": "cddl-1.0.yml", + "html": "cddl-1.0.html", + "license": "cddl-1.0.LICENSE" + }, + { + "license_key": "cddl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "CDDL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cddl-1.1.json", + "yaml": "cddl-1.1.yml", + "html": "cddl-1.1.html", + "license": "cddl-1.1.LICENSE" + }, + { + "license_key": "cdla-permissive-1.0", + "category": "Permissive", + "spdx_license_key": "CDLA-Permissive-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cdla-permissive-1.0.json", + "yaml": "cdla-permissive-1.0.yml", + "html": "cdla-permissive-1.0.html", + "license": "cdla-permissive-1.0.LICENSE" + }, + { + "license_key": "cdla-permissive-2.0", + "category": "Permissive", + "spdx_license_key": "CDLA-Permissive-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cdla-permissive-2.0.json", + "yaml": "cdla-permissive-2.0.yml", + "html": "cdla-permissive-2.0.html", + "license": "cdla-permissive-2.0.LICENSE" + }, + { + "license_key": "cdla-sharing-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "CDLA-Sharing-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cdla-sharing-1.0.json", + "yaml": "cdla-sharing-1.0.yml", + "html": "cdla-sharing-1.0.html", + "license": "cdla-sharing-1.0.LICENSE" + }, + { + "license_key": "cecill-1.0", + "category": "Copyleft", + "spdx_license_key": "CECILL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-1.0.json", + "yaml": "cecill-1.0.yml", + "html": "cecill-1.0.html", + "license": "cecill-1.0.LICENSE" + }, + { + "license_key": "cecill-1.0-en", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-cecill-1.0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-1.0-en.json", + "yaml": "cecill-1.0-en.yml", + "html": "cecill-1.0-en.html", + "license": "cecill-1.0-en.LICENSE" + }, + { + "license_key": "cecill-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "CECILL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-1.1.json", + "yaml": "cecill-1.1.yml", + "html": "cecill-1.1.html", + "license": "cecill-1.1.LICENSE" + }, + { + "license_key": "cecill-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "CECILL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-2.0.json", + "yaml": "cecill-2.0.yml", + "html": "cecill-2.0.html", + "license": "cecill-2.0.LICENSE" + }, + { + "license_key": "cecill-2.0-fr", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cecill-2.0-fr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-2.0-fr.json", + "yaml": "cecill-2.0-fr.yml", + "html": "cecill-2.0-fr.html", + "license": "cecill-2.0-fr.LICENSE" + }, + { + "license_key": "cecill-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "CECILL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-2.1.json", + "yaml": "cecill-2.1.yml", + "html": "cecill-2.1.html", + "license": "cecill-2.1.LICENSE" + }, + { + "license_key": "cecill-2.1-fr", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cecill-2.1-fr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-2.1-fr.json", + "yaml": "cecill-2.1-fr.yml", + "html": "cecill-2.1-fr.html", + "license": "cecill-2.1-fr.LICENSE" + }, + { + "license_key": "cecill-b", + "category": "Permissive", + "spdx_license_key": "CECILL-B", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-b.json", + "yaml": "cecill-b.yml", + "html": "cecill-b.html", + "license": "cecill-b.LICENSE" + }, + { + "license_key": "cecill-b-en", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cecill-b-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-b-en.json", + "yaml": "cecill-b-en.yml", + "html": "cecill-b-en.html", + "license": "cecill-b-en.LICENSE" + }, + { + "license_key": "cecill-c", + "category": "Copyleft", + "spdx_license_key": "CECILL-C", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-c.json", + "yaml": "cecill-c.yml", + "html": "cecill-c.html", + "license": "cecill-c.LICENSE" + }, + { + "license_key": "cecill-c-en", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cecill-c-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cecill-c-en.json", + "yaml": "cecill-c-en.yml", + "html": "cecill-c-en.html", + "license": "cecill-c-en.LICENSE" + }, + { + "license_key": "cern-attribution-1995", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cern-attribution-1995", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cern-attribution-1995.json", + "yaml": "cern-attribution-1995.yml", + "html": "cern-attribution-1995.html", + "license": "cern-attribution-1995.LICENSE" + }, + { + "license_key": "cern-ohl-1.1", + "category": "Permissive", + "spdx_license_key": "CERN-OHL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cern-ohl-1.1.json", + "yaml": "cern-ohl-1.1.yml", + "html": "cern-ohl-1.1.html", + "license": "cern-ohl-1.1.LICENSE" + }, + { + "license_key": "cern-ohl-1.2", + "category": "Permissive", + "spdx_license_key": "CERN-OHL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cern-ohl-1.2.json", + "yaml": "cern-ohl-1.2.yml", + "html": "cern-ohl-1.2.html", + "license": "cern-ohl-1.2.LICENSE" + }, + { + "license_key": "cern-ohl-p-2.0", + "category": "Permissive", + "spdx_license_key": "CERN-OHL-P-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cern-ohl-p-2.0.json", + "yaml": "cern-ohl-p-2.0.yml", + "html": "cern-ohl-p-2.0.html", + "license": "cern-ohl-p-2.0.LICENSE" + }, + { + "license_key": "cern-ohl-s-2.0", + "category": "Copyleft", + "spdx_license_key": "CERN-OHL-S-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cern-ohl-s-2.0.json", + "yaml": "cern-ohl-s-2.0.yml", + "html": "cern-ohl-s-2.0.html", + "license": "cern-ohl-s-2.0.LICENSE" + }, + { + "license_key": "cern-ohl-w-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "CERN-OHL-W-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cern-ohl-w-2.0.json", + "yaml": "cern-ohl-w-2.0.yml", + "html": "cern-ohl-w-2.0.html", + "license": "cern-ohl-w-2.0.LICENSE" + }, + { + "license_key": "cfitsio", + "category": "Permissive", + "spdx_license_key": "CFITSIO", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cfitsio.json", + "yaml": "cfitsio.yml", + "html": "cfitsio.html", + "license": "cfitsio.LICENSE" + }, + { + "license_key": "cgic", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cgic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cgic.json", + "yaml": "cgic.yml", + "html": "cgic.html", + "license": "cgic.LICENSE" + }, + { + "license_key": "chartdirector-6.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-chartdirector-6.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "chartdirector-6.0.json", + "yaml": "chartdirector-6.0.yml", + "html": "chartdirector-6.0.html", + "license": "chartdirector-6.0.LICENSE" + }, + { + "license_key": "check-cvs", + "category": "Permissive", + "spdx_license_key": "check-cvs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "check-cvs.json", + "yaml": "check-cvs.yml", + "html": "check-cvs.html", + "license": "check-cvs.LICENSE" + }, + { + "license_key": "checkmk", + "category": "Permissive", + "spdx_license_key": "checkmk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "checkmk.json", + "yaml": "checkmk.yml", + "html": "checkmk.html", + "license": "checkmk.LICENSE" + }, + { + "license_key": "chelsio-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-chelsio-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "chelsio-linux-firmware.json", + "yaml": "chelsio-linux-firmware.yml", + "html": "chelsio-linux-firmware.html", + "license": "chelsio-linux-firmware.LICENSE" + }, + { + "license_key": "chicken-dl-0.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-chicken-dl-0.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "chicken-dl-0.2.json", + "yaml": "chicken-dl-0.2.yml", + "html": "chicken-dl-0.2.html", + "license": "chicken-dl-0.2.LICENSE" + }, + { + "license_key": "chris-maunder", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-chris-maunder", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "chris-maunder.json", + "yaml": "chris-maunder.yml", + "html": "chris-maunder.html", + "license": "chris-maunder.LICENSE" + }, + { + "license_key": "chris-stoy", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-chris-stoy", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "chris-stoy.json", + "yaml": "chris-stoy.yml", + "html": "chris-stoy.html", + "license": "chris-stoy.LICENSE" + }, + { + "license_key": "christopher-velazquez", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-christopher-velazquez", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "christopher-velazquez.json", + "yaml": "christopher-velazquez.yml", + "html": "christopher-velazquez.html", + "license": "christopher-velazquez.LICENSE" + }, + { + "license_key": "cisco-avch264-patent", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-cisco-avch264-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cisco-avch264-patent.json", + "yaml": "cisco-avch264-patent.yml", + "html": "cisco-avch264-patent.html", + "license": "cisco-avch264-patent.LICENSE" + }, + { + "license_key": "civicrm-exception-to-agpl-3.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-civicrm-exception-to-agpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "civicrm-exception-to-agpl-3.0.json", + "yaml": "civicrm-exception-to-agpl-3.0.yml", + "html": "civicrm-exception-to-agpl-3.0.html", + "license": "civicrm-exception-to-agpl-3.0.LICENSE" + }, + { + "license_key": "classic-vb", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-classic-vb", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "classic-vb.json", + "yaml": "classic-vb.yml", + "html": "classic-vb.html", + "license": "classic-vb.LICENSE" + }, + { + "license_key": "classpath-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "Classpath-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "classpath-exception-2.0.json", + "yaml": "classpath-exception-2.0.yml", + "html": "classpath-exception-2.0.html", + "license": "classpath-exception-2.0.LICENSE" + }, + { + "license_key": "classworlds", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "classworlds.json", + "yaml": "classworlds.yml", + "html": "classworlds.html", + "license": "classworlds.LICENSE" + }, + { + "license_key": "clause-6-exception-lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-clause-6-exception-lgpl-2.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "clause-6-exception-lgpl-2.1.json", + "yaml": "clause-6-exception-lgpl-2.1.yml", + "html": "clause-6-exception-lgpl-2.1.html", + "license": "clause-6-exception-lgpl-2.1.LICENSE" + }, + { + "license_key": "clear-bsd", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-Clear", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "clear-bsd.json", + "yaml": "clear-bsd.yml", + "html": "clear-bsd.html", + "license": "clear-bsd.LICENSE" + }, + { + "license_key": "clear-bsd-1-clause", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-clear-bsd-1-clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "clear-bsd-1-clause.json", + "yaml": "clear-bsd-1-clause.yml", + "html": "clear-bsd-1-clause.html", + "license": "clear-bsd-1-clause.LICENSE" + }, + { + "license_key": "click-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-click-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "click-license.json", + "yaml": "click-license.yml", + "html": "click-license.html", + "license": "click-license.LICENSE" + }, + { + "license_key": "clips-2017", + "category": "Permissive", + "spdx_license_key": "Clips", + "other_spdx_license_keys": [ + "LicenseRef-scancode-clips-2017" + ], + "is_exception": false, + "is_deprecated": false, + "json": "clips-2017.json", + "yaml": "clips-2017.yml", + "html": "clips-2017.html", + "license": "clips-2017.LICENSE" + }, + { + "license_key": "clisp-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "CLISP-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "clisp-exception-2.0.json", + "yaml": "clisp-exception-2.0.yml", + "html": "clisp-exception-2.0.html", + "license": "clisp-exception-2.0.LICENSE" + }, + { + "license_key": "clojure-exception-to-gpl-3.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-clojure-exception-to-gpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "clojure-exception-to-gpl-3.0.json", + "yaml": "clojure-exception-to-gpl-3.0.yml", + "html": "clojure-exception-to-gpl-3.0.html", + "license": "clojure-exception-to-gpl-3.0.LICENSE" + }, + { + "license_key": "cloudera-express", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cloudera-express", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cloudera-express.json", + "yaml": "cloudera-express.yml", + "html": "cloudera-express.html", + "license": "cloudera-express.LICENSE" + }, + { + "license_key": "cmigemo", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cmigemo", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmigemo.json", + "yaml": "cmigemo.yml", + "html": "cmigemo.html", + "license": "cmigemo.LICENSE" + }, + { + "license_key": "cmr-no", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "cmr-no.json", + "yaml": "cmr-no.yml", + "html": "cmr-no.html", + "license": "cmr-no.LICENSE" + }, + { + "license_key": "cmu-computing-services", + "category": "Permissive", + "spdx_license_key": "BSD-Attribution-HPND-disclaimer", + "other_spdx_license_keys": [ + "LicenseRef-scancode-cmu-computing-services" + ], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-computing-services.json", + "yaml": "cmu-computing-services.yml", + "html": "cmu-computing-services.html", + "license": "cmu-computing-services.LICENSE" + }, + { + "license_key": "cmu-flite", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cmu-flite", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-flite.json", + "yaml": "cmu-flite.yml", + "html": "cmu-flite.html", + "license": "cmu-flite.LICENSE" + }, + { + "license_key": "cmu-mit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cmu-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-mit.json", + "yaml": "cmu-mit.yml", + "html": "cmu-mit.html", + "license": "cmu-mit.LICENSE" + }, + { + "license_key": "cmu-nara-nagoya", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cmu-nara-nagoya", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-nara-nagoya.json", + "yaml": "cmu-nara-nagoya.yml", + "html": "cmu-nara-nagoya.html", + "license": "cmu-nara-nagoya.LICENSE" + }, + { + "license_key": "cmu-simple", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cmu-simple", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-simple.json", + "yaml": "cmu-simple.yml", + "html": "cmu-simple.html", + "license": "cmu-simple.LICENSE" + }, + { + "license_key": "cmu-template", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cmu-template", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-template.json", + "yaml": "cmu-template.yml", + "html": "cmu-template.html", + "license": "cmu-template.LICENSE" + }, + { + "license_key": "cmu-uc", + "category": "Permissive", + "spdx_license_key": "MIT-CMU", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cmu-uc.json", + "yaml": "cmu-uc.yml", + "html": "cmu-uc.html", + "license": "cmu-uc.LICENSE" + }, + { + "license_key": "cncf-corporate-cla-1.0", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-cncf-corporate-cla-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cncf-corporate-cla-1.0.json", + "yaml": "cncf-corporate-cla-1.0.yml", + "html": "cncf-corporate-cla-1.0.html", + "license": "cncf-corporate-cla-1.0.LICENSE" + }, + { + "license_key": "cncf-individual-cla-1.0", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-cncf-individual-cla-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cncf-individual-cla-1.0.json", + "yaml": "cncf-individual-cla-1.0.yml", + "html": "cncf-individual-cla-1.0.html", + "license": "cncf-individual-cla-1.0.LICENSE" + }, + { + "license_key": "cnri-jython", + "category": "Permissive", + "spdx_license_key": "CNRI-Jython", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cnri-jython.json", + "yaml": "cnri-jython.yml", + "html": "cnri-jython.html", + "license": "cnri-jython.LICENSE" + }, + { + "license_key": "cnri-python-1.6", + "category": "Permissive", + "spdx_license_key": "CNRI-Python", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cnri-python-1.6.json", + "yaml": "cnri-python-1.6.yml", + "html": "cnri-python-1.6.html", + "license": "cnri-python-1.6.LICENSE" + }, + { + "license_key": "cnri-python-1.6.1", + "category": "Permissive", + "spdx_license_key": "CNRI-Python-GPL-Compatible", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cnri-python-1.6.1.json", + "yaml": "cnri-python-1.6.1.yml", + "html": "cnri-python-1.6.1.html", + "license": "cnri-python-1.6.1.LICENSE" + }, + { + "license_key": "cockroach", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cockroach", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cockroach.json", + "yaml": "cockroach.yml", + "html": "cockroach.html", + "license": "cockroach.LICENSE" + }, + { + "license_key": "cockroachdb-use-grant-for-bsl-1.1", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-cockroachdb-use-grant-bsl-1.1", + "other_spdx_license_keys": [ + "LicenseRef-scancode-cockroachdb-use-grant-for-bsl-1.1" + ], + "is_exception": true, + "is_deprecated": false, + "json": "cockroachdb-use-grant-for-bsl-1.1.json", + "yaml": "cockroachdb-use-grant-for-bsl-1.1.yml", + "html": "cockroachdb-use-grant-for-bsl-1.1.html", + "license": "cockroachdb-use-grant-for-bsl-1.1.LICENSE" + }, + { + "license_key": "code-credit-license-1.0-0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-code-credit-license-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "code-credit-license-1.0-0.json", + "yaml": "code-credit-license-1.0-0.yml", + "html": "code-credit-license-1.0-0.html", + "license": "code-credit-license-1.0-0.LICENSE" + }, + { + "license_key": "code-credit-license-1.0.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-code-credit-license-1.0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "code-credit-license-1.0.1.json", + "yaml": "code-credit-license-1.0.1.yml", + "html": "code-credit-license-1.0.1.html", + "license": "code-credit-license-1.0.1.LICENSE" + }, + { + "license_key": "code-credit-license-1.1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-code-credit-license-1.1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "code-credit-license-1.1.0.json", + "yaml": "code-credit-license-1.1.0.yml", + "html": "code-credit-license-1.1.0.html", + "license": "code-credit-license-1.1.0.LICENSE" + }, + { + "license_key": "codeguru-permissions", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-codeguru-permissions", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "codeguru-permissions.json", + "yaml": "codeguru-permissions.yml", + "html": "codeguru-permissions.html", + "license": "codeguru-permissions.LICENSE" + }, + { + "license_key": "codelite-exception-to-gpl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-codelite-exception-to-gpl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "codelite-exception-to-gpl.json", + "yaml": "codelite-exception-to-gpl.yml", + "html": "codelite-exception-to-gpl.html", + "license": "codelite-exception-to-gpl.LICENSE" + }, + { + "license_key": "codesourcery-2004", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-codesourcery-2004", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "codesourcery-2004.json", + "yaml": "codesourcery-2004.yml", + "html": "codesourcery-2004.html", + "license": "codesourcery-2004.LICENSE" + }, + { + "license_key": "codexia", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-codexia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "codexia.json", + "yaml": "codexia.yml", + "html": "codexia.html", + "license": "codexia.LICENSE" + }, + { + "license_key": "cognitive-web-osl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cognitive-web-osl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cognitive-web-osl-1.1.json", + "yaml": "cognitive-web-osl-1.1.yml", + "html": "cognitive-web-osl-1.1.html", + "license": "cognitive-web-osl-1.1.LICENSE" + }, + { + "license_key": "coil-1.0", + "category": "Permissive", + "spdx_license_key": "COIL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "coil-1.0.json", + "yaml": "coil-1.0.yml", + "html": "coil-1.0.html", + "license": "coil-1.0.LICENSE" + }, + { + "license_key": "colt", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-colt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "colt.json", + "yaml": "colt.yml", + "html": "colt.html", + "license": "colt.LICENSE" + }, + { + "license_key": "com-oreilly-servlet", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-com-oreilly-servlet", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "com-oreilly-servlet.json", + "yaml": "com-oreilly-servlet.yml", + "html": "com-oreilly-servlet.html", + "license": "com-oreilly-servlet.LICENSE" + }, + { + "license_key": "commercial-license", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-commercial-license", + "other_spdx_license_keys": [ + "LicenseRef-Commercial" + ], + "is_exception": false, + "is_deprecated": false, + "json": "commercial-license.json", + "yaml": "commercial-license.yml", + "html": "commercial-license.html", + "license": "commercial-license.LICENSE" + }, + { + "license_key": "commercial-option", + "category": "Commercial", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "commercial-option.json", + "yaml": "commercial-option.yml", + "html": "commercial-option.html", + "license": "commercial-option.LICENSE" + }, + { + "license_key": "commonj-timer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-commonj-timer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "commonj-timer.json", + "yaml": "commonj-timer.yml", + "html": "commonj-timer.html", + "license": "commonj-timer.LICENSE" + }, + { + "license_key": "commons-clause", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-commons-clause", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "commons-clause.json", + "yaml": "commons-clause.yml", + "html": "commons-clause.html", + "license": "commons-clause.LICENSE" + }, + { + "license_key": "compass", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-compass", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "compass.json", + "yaml": "compass.yml", + "html": "compass.html", + "license": "compass.LICENSE" + }, + { + "license_key": "componentace-jcraft", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-componentace-jcraft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "componentace-jcraft.json", + "yaml": "componentace-jcraft.yml", + "html": "componentace-jcraft.html", + "license": "componentace-jcraft.LICENSE" + }, + { + "license_key": "compuphase-linking-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-compuphase-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "compuphase-linking-exception.json", + "yaml": "compuphase-linking-exception.yml", + "html": "compuphase-linking-exception.html", + "license": "compuphase-linking-exception.LICENSE" + }, + { + "license_key": "concursive-pl-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-concursive-pl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "concursive-pl-1.0.json", + "yaml": "concursive-pl-1.0.yml", + "html": "concursive-pl-1.0.html", + "license": "concursive-pl-1.0.LICENSE" + }, + { + "license_key": "condor-1.1", + "category": "Permissive", + "spdx_license_key": "Condor-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "condor-1.1.json", + "yaml": "condor-1.1.yml", + "html": "condor-1.1.html", + "license": "condor-1.1.LICENSE" + }, + { + "license_key": "confluent-community-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-confluent-community-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "confluent-community-1.0.json", + "yaml": "confluent-community-1.0.yml", + "html": "confluent-community-1.0.html", + "license": "confluent-community-1.0.LICENSE" + }, + { + "license_key": "cooperative-non-violent-4.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cooperative-non-violent-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cooperative-non-violent-4.0.json", + "yaml": "cooperative-non-violent-4.0.yml", + "html": "cooperative-non-violent-4.0.html", + "license": "cooperative-non-violent-4.0.LICENSE" + }, + { + "license_key": "cooperative-non-violent-6.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cooperative-non-violent-6.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cooperative-non-violent-6.0.json", + "yaml": "cooperative-non-violent-6.0.yml", + "html": "cooperative-non-violent-6.0.html", + "license": "cooperative-non-violent-6.0.LICENSE" + }, + { + "license_key": "cooperative-non-violent-7.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cooperative-non-violent-7.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cooperative-non-violent-7.0.json", + "yaml": "cooperative-non-violent-7.0.yml", + "html": "cooperative-non-violent-7.0.html", + "license": "cooperative-non-violent-7.0.LICENSE" + }, + { + "license_key": "copyheart", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-copyheart", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "copyheart.json", + "yaml": "copyheart.yml", + "html": "copyheart.html", + "license": "copyheart.LICENSE" + }, + { + "license_key": "copyleft-next-0.3.0", + "category": "Copyleft", + "spdx_license_key": "copyleft-next-0.3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "copyleft-next-0.3.0.json", + "yaml": "copyleft-next-0.3.0.yml", + "html": "copyleft-next-0.3.0.html", + "license": "copyleft-next-0.3.0.LICENSE" + }, + { + "license_key": "copyleft-next-0.3.1", + "category": "Copyleft", + "spdx_license_key": "copyleft-next-0.3.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "copyleft-next-0.3.1.json", + "yaml": "copyleft-next-0.3.1.yml", + "html": "copyleft-next-0.3.1.html", + "license": "copyleft-next-0.3.1.LICENSE" + }, + { + "license_key": "cornell-lossless-jpeg", + "category": "Permissive", + "spdx_license_key": "Cornell-Lossless-JPEG", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cornell-lossless-jpeg.json", + "yaml": "cornell-lossless-jpeg.yml", + "html": "cornell-lossless-jpeg.html", + "license": "cornell-lossless-jpeg.LICENSE" + }, + { + "license_key": "corporate-accountability-1.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-corporate-accountability-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "corporate-accountability-1.1.json", + "yaml": "corporate-accountability-1.1.yml", + "html": "corporate-accountability-1.1.html", + "license": "corporate-accountability-1.1.LICENSE" + }, + { + "license_key": "corporate-accountability-commercial-1.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-accountability-commercial-1.1", + "other_spdx_license_keys": [ + "LicenseRef-scancode-corporate-accountability-commercial-1.1" + ], + "is_exception": true, + "is_deprecated": false, + "json": "corporate-accountability-commercial-1.1.json", + "yaml": "corporate-accountability-commercial-1.1.yml", + "html": "corporate-accountability-commercial-1.1.html", + "license": "corporate-accountability-commercial-1.1.LICENSE" + }, + { + "license_key": "cosl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cosl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cosl.json", + "yaml": "cosl.yml", + "html": "cosl.html", + "license": "cosl.LICENSE" + }, + { + "license_key": "cosli", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-cosli", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cosli.json", + "yaml": "cosli.yml", + "html": "cosli.html", + "license": "cosli.LICENSE" + }, + { + "license_key": "couchbase-community", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-couchbase-community", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "couchbase-community.json", + "yaml": "couchbase-community.yml", + "html": "couchbase-community.html", + "license": "couchbase-community.LICENSE" + }, + { + "license_key": "couchbase-enterprise", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-couchbase-enterprise", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "couchbase-enterprise.json", + "yaml": "couchbase-enterprise.yml", + "html": "couchbase-enterprise.html", + "license": "couchbase-enterprise.LICENSE" + }, + { + "license_key": "cpal-1.0", + "category": "Copyleft", + "spdx_license_key": "CPAL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cpal-1.0.json", + "yaml": "cpal-1.0.yml", + "html": "cpal-1.0.html", + "license": "cpal-1.0.LICENSE" + }, + { + "license_key": "cpl-0.5", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cpl-0.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cpl-0.5.json", + "yaml": "cpl-0.5.yml", + "html": "cpl-0.5.html", + "license": "cpl-0.5.LICENSE" + }, + { + "license_key": "cpl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "CPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cpl-1.0.json", + "yaml": "cpl-1.0.yml", + "html": "cpl-1.0.html", + "license": "cpl-1.0.LICENSE" + }, + { + "license_key": "cpm-2022", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cpm-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cpm-2022.json", + "yaml": "cpm-2022.yml", + "html": "cpm-2022.html", + "license": "cpm-2022.LICENSE" + }, + { + "license_key": "cpol-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-cpol-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cpol-1.0.json", + "yaml": "cpol-1.0.yml", + "html": "cpol-1.0.html", + "license": "cpol-1.0.LICENSE" + }, + { + "license_key": "cpol-1.02", + "category": "Free Restricted", + "spdx_license_key": "CPOL-1.02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cpol-1.02.json", + "yaml": "cpol-1.02.yml", + "html": "cpol-1.02.html", + "license": "cpol-1.02.LICENSE" + }, + { + "license_key": "cpp-core-guidelines", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cpp-core-guidelines", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cpp-core-guidelines.json", + "yaml": "cpp-core-guidelines.yml", + "html": "cpp-core-guidelines.html", + "license": "cpp-core-guidelines.LICENSE" + }, + { + "license_key": "crapl-0.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-crapl-0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crapl-0.1.json", + "yaml": "crapl-0.1.yml", + "html": "crapl-0.1.html", + "license": "crapl-0.1.LICENSE" + }, + { + "license_key": "crashlytics-agreement-2018", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-crashlytics-agreement-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crashlytics-agreement-2018.json", + "yaml": "crashlytics-agreement-2018.yml", + "html": "crashlytics-agreement-2018.html", + "license": "crashlytics-agreement-2018.LICENSE" + }, + { + "license_key": "crcalc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-crcalc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crcalc.json", + "yaml": "crcalc.yml", + "html": "crcalc.html", + "license": "crcalc.LICENSE" + }, + { + "license_key": "cronyx", + "category": "Permissive", + "spdx_license_key": "Cronyx", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cronyx.json", + "yaml": "cronyx.yml", + "html": "cronyx.html", + "license": "cronyx.LICENSE" + }, + { + "license_key": "crossword", + "category": "Permissive", + "spdx_license_key": "Crossword", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crossword.json", + "yaml": "crossword.yml", + "html": "crossword.html", + "license": "crossword.LICENSE" + }, + { + "license_key": "crunchbase-data-2019-12-17", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-crunchbase-data-2019-12-17", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crunchbase-data-2019-12-17.json", + "yaml": "crunchbase-data-2019-12-17.yml", + "html": "crunchbase-data-2019-12-17.html", + "license": "crunchbase-data-2019-12-17.LICENSE" + }, + { + "license_key": "crypto-keys-redistribution", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-crypto-keys-redistribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crypto-keys-redistribution.json", + "yaml": "crypto-keys-redistribution.yml", + "html": "crypto-keys-redistribution.html", + "license": "crypto-keys-redistribution.LICENSE" + }, + { + "license_key": "cryptopp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cryptopp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cryptopp.json", + "yaml": "cryptopp.yml", + "html": "cryptopp.html", + "license": "cryptopp.LICENSE" + }, + { + "license_key": "crystal-stacker", + "category": "Permissive", + "spdx_license_key": "CrystalStacker", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "crystal-stacker.json", + "yaml": "crystal-stacker.yml", + "html": "crystal-stacker.html", + "license": "crystal-stacker.LICENSE" + }, + { + "license_key": "csl-1.0", + "category": "Permissive", + "spdx_license_key": "Community-Spec-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-csl-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "csl-1.0.json", + "yaml": "csl-1.0.yml", + "html": "csl-1.0.html", + "license": "csl-1.0.LICENSE" + }, + { + "license_key": "csla", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-csla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "csla.json", + "yaml": "csla.yml", + "html": "csla.html", + "license": "csla.LICENSE" + }, + { + "license_key": "csprng", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-csprng", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "csprng.json", + "yaml": "csprng.yml", + "html": "csprng.html", + "license": "csprng.LICENSE" + }, + { + "license_key": "ctl-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ctl-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ctl-linux-firmware.json", + "yaml": "ctl-linux-firmware.yml", + "html": "ctl-linux-firmware.html", + "license": "ctl-linux-firmware.LICENSE" + }, + { + "license_key": "cua-opl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "CUA-OPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cua-opl-1.0.json", + "yaml": "cua-opl-1.0.yml", + "html": "cua-opl-1.0.html", + "license": "cua-opl-1.0.LICENSE" + }, + { + "license_key": "cube", + "category": "Permissive", + "spdx_license_key": "Cube", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cube.json", + "yaml": "cube.yml", + "html": "cube.html", + "license": "cube.LICENSE" + }, + { + "license_key": "cubiware-software-1.0", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-cubiware-software-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cubiware-software-1.0.json", + "yaml": "cubiware-software-1.0.yml", + "html": "cubiware-software-1.0.html", + "license": "cubiware-software-1.0.LICENSE" + }, + { + "license_key": "cups", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-cups", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cups.json", + "yaml": "cups.yml", + "html": "cups.html", + "license": "cups.LICENSE" + }, + { + "license_key": "cups-apple-os-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cups-apple-os-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "cups-apple-os-exception.json", + "yaml": "cups-apple-os-exception.yml", + "html": "cups-apple-os-exception.html", + "license": "cups-apple-os-exception.LICENSE" + }, + { + "license_key": "curl", + "category": "Permissive", + "spdx_license_key": "curl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "curl.json", + "yaml": "curl.yml", + "html": "curl.html", + "license": "curl.LICENSE" + }, + { + "license_key": "cve-tou", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cve-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cve-tou.json", + "yaml": "cve-tou.yml", + "html": "cve-tou.html", + "license": "cve-tou.LICENSE" + }, + { + "license_key": "cvwl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cvwl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cvwl.json", + "yaml": "cvwl.yml", + "html": "cvwl.html", + "license": "cvwl.LICENSE" + }, + { + "license_key": "cwe-tou", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cwe-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cwe-tou.json", + "yaml": "cwe-tou.yml", + "html": "cwe-tou.html", + "license": "cwe-tou.LICENSE" + }, + { + "license_key": "cximage", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-cximage", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cximage.json", + "yaml": "cximage.yml", + "html": "cximage.html", + "license": "cximage.LICENSE" + }, + { + "license_key": "cygwin-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cygwin-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "cygwin-exception-2.0.json", + "yaml": "cygwin-exception-2.0.yml", + "html": "cygwin-exception-2.0.html", + "license": "cygwin-exception-2.0.LICENSE" + }, + { + "license_key": "cygwin-exception-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cygwin-exception-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "cygwin-exception-3.0.json", + "yaml": "cygwin-exception-3.0.yml", + "html": "cygwin-exception-3.0.html", + "license": "cygwin-exception-3.0.LICENSE" + }, + { + "license_key": "cygwin-exception-lgpl-3.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-cygwin-exception-lgpl-3.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "cygwin-exception-lgpl-3.0-plus.json", + "yaml": "cygwin-exception-lgpl-3.0-plus.yml", + "html": "cygwin-exception-lgpl-3.0-plus.html", + "license": "cygwin-exception-lgpl-3.0-plus.LICENSE" + }, + { + "license_key": "cypress-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-cypress-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "cypress-linux-firmware.json", + "yaml": "cypress-linux-firmware.yml", + "html": "cypress-linux-firmware.html", + "license": "cypress-linux-firmware.LICENSE" + }, + { + "license_key": "d-fsl-1.0-de", + "category": "Copyleft", + "spdx_license_key": "D-FSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "d-fsl-1.0-de.json", + "yaml": "d-fsl-1.0-de.yml", + "html": "d-fsl-1.0-de.html", + "license": "d-fsl-1.0-de.LICENSE" + }, + { + "license_key": "d-fsl-1.0-en", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-d-fsl-1.0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "d-fsl-1.0-en.json", + "yaml": "d-fsl-1.0-en.yml", + "html": "d-fsl-1.0-en.html", + "license": "d-fsl-1.0-en.LICENSE" + }, + { + "license_key": "d-zlib", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-d-zlib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "d-zlib.json", + "yaml": "d-zlib.yml", + "html": "d-zlib.html", + "license": "d-zlib.LICENSE" + }, + { + "license_key": "damail", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-damail", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "damail.json", + "yaml": "damail.yml", + "html": "damail.html", + "license": "damail.LICENSE" + }, + { + "license_key": "dante-treglia", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dante-treglia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dante-treglia.json", + "yaml": "dante-treglia.yml", + "html": "dante-treglia.html", + "license": "dante-treglia.LICENSE" + }, + { + "license_key": "datamekanix-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-datamekanix-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "datamekanix-license.json", + "yaml": "datamekanix-license.yml", + "html": "datamekanix-license.html", + "license": "datamekanix-license.LICENSE" + }, + { + "license_key": "day-spec", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-day-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "day-spec.json", + "yaml": "day-spec.yml", + "html": "day-spec.html", + "license": "day-spec.LICENSE" + }, + { + "license_key": "dbad", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-dbad", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dbad.json", + "yaml": "dbad.yml", + "html": "dbad.html", + "license": "dbad.LICENSE" + }, + { + "license_key": "dbad-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dbad-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dbad-1.1.json", + "yaml": "dbad-1.1.yml", + "html": "dbad-1.1.html", + "license": "dbad-1.1.LICENSE" + }, + { + "license_key": "dbcl-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-dbcl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dbcl-1.0.json", + "yaml": "dbcl-1.0.yml", + "html": "dbcl-1.0.html", + "license": "dbcl-1.0.LICENSE" + }, + { + "license_key": "dbmx-foss-exception-1.0.9", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-dbmx-foss-exception-1.0.9", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "dbmx-foss-exception-1.0.9.json", + "yaml": "dbmx-foss-exception-1.0.9.yml", + "html": "dbmx-foss-exception-1.0.9.html", + "license": "dbmx-foss-exception-1.0.9.LICENSE" + }, + { + "license_key": "dbmx-linking-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-dbmx-linking-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "dbmx-linking-exception-1.0.json", + "yaml": "dbmx-linking-exception-1.0.yml", + "html": "dbmx-linking-exception-1.0.html", + "license": "dbmx-linking-exception-1.0.LICENSE" + }, + { + "license_key": "dco-1.1", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-dco-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dco-1.1.json", + "yaml": "dco-1.1.yml", + "html": "dco-1.1.html", + "license": "dco-1.1.LICENSE" + }, + { + "license_key": "dec-3-clause", + "category": "Permissive", + "spdx_license_key": "DEC-3-Clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dec-3-clause.json", + "yaml": "dec-3-clause.yml", + "html": "dec-3-clause.html", + "license": "dec-3-clause.LICENSE" + }, + { + "license_key": "defensive-patent-1.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-defensive-patent-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "defensive-patent-1.1.json", + "yaml": "defensive-patent-1.1.yml", + "html": "defensive-patent-1.1.html", + "license": "defensive-patent-1.1.LICENSE" + }, + { + "license_key": "dejavu-font", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dejavu-font", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "dejavu-font.json", + "yaml": "dejavu-font.yml", + "html": "dejavu-font.html", + "license": "dejavu-font.LICENSE" + }, + { + "license_key": "delorie-historical", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-delorie-historical", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "delorie-historical.json", + "yaml": "delorie-historical.yml", + "html": "delorie-historical.html", + "license": "delorie-historical.LICENSE" + }, + { + "license_key": "dennis-ferguson", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-dennis-ferguson", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dennis-ferguson.json", + "yaml": "dennis-ferguson.yml", + "html": "dennis-ferguson.html", + "license": "dennis-ferguson.LICENSE" + }, + { + "license_key": "devblocks-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-devblocks-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "devblocks-1.0.json", + "yaml": "devblocks-1.0.yml", + "html": "devblocks-1.0.html", + "license": "devblocks-1.0.LICENSE" + }, + { + "license_key": "dgraph-cla", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-dgraph-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dgraph-cla.json", + "yaml": "dgraph-cla.yml", + "html": "dgraph-cla.html", + "license": "dgraph-cla.LICENSE" + }, + { + "license_key": "dhb-lbnl-bsd-2007", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-dhb-lbnl-bsd-2007", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dhb-lbnl-bsd-2007.json", + "yaml": "dhb-lbnl-bsd-2007.yml", + "html": "dhb-lbnl-bsd-2007.html", + "license": "dhb-lbnl-bsd-2007.LICENSE" + }, + { + "license_key": "dhb-limited-bsd-2015", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-dhb-limited-bsd-2015", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dhb-limited-bsd-2015.json", + "yaml": "dhb-limited-bsd-2015.yml", + "html": "dhb-limited-bsd-2015.html", + "license": "dhb-limited-bsd-2015.LICENSE" + }, + { + "license_key": "dhtmlab-public", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dhtmlab-public", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dhtmlab-public.json", + "yaml": "dhtmlab-public.yml", + "html": "dhtmlab-public.html", + "license": "dhtmlab-public.LICENSE" + }, + { + "license_key": "diffmark", + "category": "Public Domain", + "spdx_license_key": "diffmark", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "diffmark.json", + "yaml": "diffmark.yml", + "html": "diffmark.html", + "license": "diffmark.LICENSE" + }, + { + "license_key": "digia-qt-commercial", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-digia-qt-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "digia-qt-commercial.json", + "yaml": "digia-qt-commercial.yml", + "html": "digia-qt-commercial.html", + "license": "digia-qt-commercial.LICENSE" + }, + { + "license_key": "digia-qt-exception-lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "digia-qt-exception-lgpl-2.1.json", + "yaml": "digia-qt-exception-lgpl-2.1.yml", + "html": "digia-qt-exception-lgpl-2.1.html", + "license": "digia-qt-exception-lgpl-2.1.LICENSE" + }, + { + "license_key": "digia-qt-preview", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-digia-qt-preview", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "digia-qt-preview.json", + "yaml": "digia-qt-preview.yml", + "html": "digia-qt-preview.html", + "license": "digia-qt-preview.LICENSE" + }, + { + "license_key": "digirule-foss-exception", + "category": "Copyleft Limited", + "spdx_license_key": "DigiRule-FOSS-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "digirule-foss-exception.json", + "yaml": "digirule-foss-exception.yml", + "html": "digirule-foss-exception.html", + "license": "digirule-foss-exception.LICENSE" + }, + { + "license_key": "divx-open-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-divx-open-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "divx-open-1.0.json", + "yaml": "divx-open-1.0.yml", + "html": "divx-open-1.0.html", + "license": "divx-open-1.0.LICENSE" + }, + { + "license_key": "divx-open-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-divx-open-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "divx-open-2.1.json", + "yaml": "divx-open-2.1.yml", + "html": "divx-open-2.1.html", + "license": "divx-open-2.1.LICENSE" + }, + { + "license_key": "dl-de-by-1-0-de", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-1-0-de", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dl-de-by-1-0-de.json", + "yaml": "dl-de-by-1-0-de.yml", + "html": "dl-de-by-1-0-de.html", + "license": "dl-de-by-1-0-de.LICENSE" + }, + { + "license_key": "dl-de-by-1-0-en", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-1-0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dl-de-by-1-0-en.json", + "yaml": "dl-de-by-1-0-en.yml", + "html": "dl-de-by-1-0-en.html", + "license": "dl-de-by-1-0-en.LICENSE" + }, + { + "license_key": "dl-de-by-2-0-de", + "category": "Permissive", + "spdx_license_key": "DL-DE-BY-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-dl-de-by-2-0-de" + ], + "is_exception": false, + "is_deprecated": false, + "json": "dl-de-by-2-0-de.json", + "yaml": "dl-de-by-2-0-de.yml", + "html": "dl-de-by-2-0-de.html", + "license": "dl-de-by-2-0-de.LICENSE" + }, + { + "license_key": "dl-de-by-2-0-en", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-2-0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dl-de-by-2-0-en.json", + "yaml": "dl-de-by-2-0-en.yml", + "html": "dl-de-by-2-0-en.html", + "license": "dl-de-by-2-0-en.LICENSE" + }, + { + "license_key": "dl-de-by-nc-1-0-de", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-nc-1-0-de", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dl-de-by-nc-1-0-de.json", + "yaml": "dl-de-by-nc-1-0-de.yml", + "html": "dl-de-by-nc-1-0-de.html", + "license": "dl-de-by-nc-1-0-de.LICENSE" + }, + { + "license_key": "dl-de-by-nc-1-0-en", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-dl-de-by-nc-1-0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dl-de-by-nc-1-0-en.json", + "yaml": "dl-de-by-nc-1-0-en.yml", + "html": "dl-de-by-nc-1-0-en.html", + "license": "dl-de-by-nc-1-0-en.LICENSE" + }, + { + "license_key": "dl-de-zero-2.0", + "category": "Permissive", + "spdx_license_key": "DL-DE-ZERO-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dl-de-zero-2.0.json", + "yaml": "dl-de-zero-2.0.yml", + "html": "dl-de-zero-2.0.html", + "license": "dl-de-zero-2.0.LICENSE" + }, + { + "license_key": "dmalloc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dmalloc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dmalloc.json", + "yaml": "dmalloc.yml", + "html": "dmalloc.html", + "license": "dmalloc.LICENSE" + }, + { + "license_key": "dmtf-2017", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dmtf-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dmtf-2017.json", + "yaml": "dmtf-2017.yml", + "html": "dmtf-2017.html", + "license": "dmtf-2017.LICENSE" + }, + { + "license_key": "do-no-harm-0.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-do-no-harm-0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "do-no-harm-0.1.json", + "yaml": "do-no-harm-0.1.yml", + "html": "do-no-harm-0.1.html", + "license": "do-no-harm-0.1.LICENSE" + }, + { + "license_key": "docbook", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-docbook", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "docbook.json", + "yaml": "docbook.yml", + "html": "docbook.html", + "license": "docbook.LICENSE" + }, + { + "license_key": "dom4j", + "category": "Permissive", + "spdx_license_key": "Plexus", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dom4j.json", + "yaml": "dom4j.yml", + "html": "dom4j.html", + "license": "dom4j.LICENSE" + }, + { + "license_key": "dos32a-extender", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dos32a-extender", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dos32a-extender.json", + "yaml": "dos32a-extender.yml", + "html": "dos32a-extender.html", + "license": "dos32a-extender.LICENSE" + }, + { + "license_key": "dotseqn", + "category": "Permissive", + "spdx_license_key": "Dotseqn", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dotseqn.json", + "yaml": "dotseqn.yml", + "html": "dotseqn.html", + "license": "dotseqn.LICENSE" + }, + { + "license_key": "doug-lea", + "category": "Public Domain", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "doug-lea.json", + "yaml": "doug-lea.yml", + "html": "doug-lea.html", + "license": "doug-lea.LICENSE" + }, + { + "license_key": "douglas-young", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-douglas-young", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "douglas-young.json", + "yaml": "douglas-young.yml", + "html": "douglas-young.html", + "license": "douglas-young.LICENSE" + }, + { + "license_key": "dpl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-dpl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dpl-1.1.json", + "yaml": "dpl-1.1.yml", + "html": "dpl-1.1.html", + "license": "dpl-1.1.LICENSE" + }, + { + "license_key": "dr-john-maddock", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "dr-john-maddock.json", + "yaml": "dr-john-maddock.yml", + "html": "dr-john-maddock.html", + "license": "dr-john-maddock.LICENSE" + }, + { + "license_key": "drl-1.0", + "category": "Permissive", + "spdx_license_key": "DRL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "drl-1.0.json", + "yaml": "drl-1.0.yml", + "html": "drl-1.0.html", + "license": "drl-1.0.LICENSE" + }, + { + "license_key": "drl-1.1", + "category": "Permissive", + "spdx_license_key": "DRL-1.1", + "other_spdx_license_keys": [ + "LicenseRef-scancode-drl-1.1" + ], + "is_exception": false, + "is_deprecated": false, + "json": "drl-1.1.json", + "yaml": "drl-1.1.yml", + "html": "drl-1.1.html", + "license": "drl-1.1.LICENSE" + }, + { + "license_key": "dropbear", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dropbear", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dropbear.json", + "yaml": "dropbear.yml", + "html": "dropbear.html", + "license": "dropbear.LICENSE" + }, + { + "license_key": "dropbear-2016", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dropbear-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dropbear-2016.json", + "yaml": "dropbear-2016.yml", + "html": "dropbear-2016.html", + "license": "dropbear-2016.LICENSE" + }, + { + "license_key": "dsdp", + "category": "Permissive", + "spdx_license_key": "DSDP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dsdp.json", + "yaml": "dsdp.yml", + "html": "dsdp.html", + "license": "dsdp.LICENSE" + }, + { + "license_key": "dtree", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dtree", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dtree.json", + "yaml": "dtree.yml", + "html": "dtree.html", + "license": "dtree.LICENSE" + }, + { + "license_key": "dual-bsd-gpl", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "dual-bsd-gpl.json", + "yaml": "dual-bsd-gpl.yml", + "html": "dual-bsd-gpl.html", + "license": "dual-bsd-gpl.LICENSE" + }, + { + "license_key": "dual-commercial-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-dual-commercial-gpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dual-commercial-gpl.json", + "yaml": "dual-commercial-gpl.yml", + "html": "dual-commercial-gpl.html", + "license": "dual-commercial-gpl.LICENSE" + }, + { + "license_key": "duende-sla-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-duende-sla-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "duende-sla-2022.json", + "yaml": "duende-sla-2022.yml", + "html": "duende-sla-2022.html", + "license": "duende-sla-2022.LICENSE" + }, + { + "license_key": "dune-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-dune-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "dune-exception.json", + "yaml": "dune-exception.yml", + "html": "dune-exception.html", + "license": "dune-exception.LICENSE" + }, + { + "license_key": "dvipdfm", + "category": "Permissive", + "spdx_license_key": "dvipdfm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dvipdfm.json", + "yaml": "dvipdfm.yml", + "html": "dvipdfm.html", + "license": "dvipdfm.LICENSE" + }, + { + "license_key": "dwtfnmfpl-3.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dwtfnmfpl-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dwtfnmfpl-3.0.json", + "yaml": "dwtfnmfpl-3.0.yml", + "html": "dwtfnmfpl-3.0.html", + "license": "dwtfnmfpl-3.0.LICENSE" + }, + { + "license_key": "dynamic-drive-tou", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-dynamic-drive-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dynamic-drive-tou.json", + "yaml": "dynamic-drive-tou.yml", + "html": "dynamic-drive-tou.html", + "license": "dynamic-drive-tou.LICENSE" + }, + { + "license_key": "dynarch-developer", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-dynarch-developer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dynarch-developer.json", + "yaml": "dynarch-developer.yml", + "html": "dynarch-developer.html", + "license": "dynarch-developer.LICENSE" + }, + { + "license_key": "dynarch-linkware", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-dynarch-linkware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "dynarch-linkware.json", + "yaml": "dynarch-linkware.yml", + "html": "dynarch-linkware.html", + "license": "dynarch-linkware.LICENSE" + }, + { + "license_key": "ecfonts-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ecfonts-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecfonts-1.0.json", + "yaml": "ecfonts-1.0.yml", + "html": "ecfonts-1.0.html", + "license": "ecfonts-1.0.LICENSE" + }, + { + "license_key": "ecl-1.0", + "category": "Permissive", + "spdx_license_key": "ECL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecl-1.0.json", + "yaml": "ecl-1.0.yml", + "html": "ecl-1.0.html", + "license": "ecl-1.0.LICENSE" + }, + { + "license_key": "ecl-2.0", + "category": "Permissive", + "spdx_license_key": "ECL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecl-2.0.json", + "yaml": "ecl-2.0.yml", + "html": "ecl-2.0.html", + "license": "ecl-2.0.LICENSE" + }, + { + "license_key": "eclipse-sua-2001", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2001", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2001.json", + "yaml": "eclipse-sua-2001.yml", + "html": "eclipse-sua-2001.html", + "license": "eclipse-sua-2001.LICENSE" + }, + { + "license_key": "eclipse-sua-2002", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2002", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2002.json", + "yaml": "eclipse-sua-2002.yml", + "html": "eclipse-sua-2002.html", + "license": "eclipse-sua-2002.LICENSE" + }, + { + "license_key": "eclipse-sua-2003", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2003", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2003.json", + "yaml": "eclipse-sua-2003.yml", + "html": "eclipse-sua-2003.html", + "license": "eclipse-sua-2003.LICENSE" + }, + { + "license_key": "eclipse-sua-2004", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2004", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2004.json", + "yaml": "eclipse-sua-2004.yml", + "html": "eclipse-sua-2004.html", + "license": "eclipse-sua-2004.LICENSE" + }, + { + "license_key": "eclipse-sua-2005", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2005", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2005.json", + "yaml": "eclipse-sua-2005.yml", + "html": "eclipse-sua-2005.html", + "license": "eclipse-sua-2005.LICENSE" + }, + { + "license_key": "eclipse-sua-2010", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2010", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2010.json", + "yaml": "eclipse-sua-2010.yml", + "html": "eclipse-sua-2010.html", + "license": "eclipse-sua-2010.LICENSE" + }, + { + "license_key": "eclipse-sua-2011", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2011", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2011.json", + "yaml": "eclipse-sua-2011.yml", + "html": "eclipse-sua-2011.html", + "license": "eclipse-sua-2011.LICENSE" + }, + { + "license_key": "eclipse-sua-2014", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2014.json", + "yaml": "eclipse-sua-2014.yml", + "html": "eclipse-sua-2014.html", + "license": "eclipse-sua-2014.LICENSE" + }, + { + "license_key": "eclipse-sua-2014-11", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2014-11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2014-11.json", + "yaml": "eclipse-sua-2014-11.yml", + "html": "eclipse-sua-2014-11.html", + "license": "eclipse-sua-2014-11.LICENSE" + }, + { + "license_key": "eclipse-sua-2017", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-eclipse-sua-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eclipse-sua-2017.json", + "yaml": "eclipse-sua-2017.yml", + "html": "eclipse-sua-2017.html", + "license": "eclipse-sua-2017.LICENSE" + }, + { + "license_key": "ecma-documentation", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-ecma-documentation", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecma-documentation.json", + "yaml": "ecma-documentation.yml", + "html": "ecma-documentation.html", + "license": "ecma-documentation.LICENSE" + }, + { + "license_key": "ecma-no-patent", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ecma-no-patent", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ecma-no-patent.json", + "yaml": "ecma-no-patent.yml", + "html": "ecma-no-patent.html", + "license": "ecma-no-patent.LICENSE" + }, + { + "license_key": "ecma-patent-coc-0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecma-patent-coc-0.json", + "yaml": "ecma-patent-coc-0.yml", + "html": "ecma-patent-coc-0.html", + "license": "ecma-patent-coc-0.LICENSE" + }, + { + "license_key": "ecma-patent-coc-1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecma-patent-coc-1.json", + "yaml": "ecma-patent-coc-1.yml", + "html": "ecma-patent-coc-1.html", + "license": "ecma-patent-coc-1.LICENSE" + }, + { + "license_key": "ecma-patent-coc-2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ecma-patent-coc-2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecma-patent-coc-2.json", + "yaml": "ecma-patent-coc-2.yml", + "html": "ecma-patent-coc-2.html", + "license": "ecma-patent-coc-2.LICENSE" + }, + { + "license_key": "ecos", + "category": "Copyleft Limited", + "spdx_license_key": "eCos-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "ecos.json", + "yaml": "ecos.yml", + "html": "ecos.html", + "license": "ecos.LICENSE" + }, + { + "license_key": "ecos-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "eCos-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ecos-exception-2.0.json", + "yaml": "ecos-exception-2.0.yml", + "html": "ecos-exception-2.0.html", + "license": "ecos-exception-2.0.LICENSE" + }, + { + "license_key": "ecosrh-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ecosrh-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecosrh-1.0.json", + "yaml": "ecosrh-1.0.yml", + "html": "ecosrh-1.0.html", + "license": "ecosrh-1.0.LICENSE" + }, + { + "license_key": "ecosrh-1.1", + "category": "Copyleft", + "spdx_license_key": "RHeCos-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ecosrh-1.1.json", + "yaml": "ecosrh-1.1.yml", + "html": "ecosrh-1.1.html", + "license": "ecosrh-1.1.LICENSE" + }, + { + "license_key": "edrdg-2000", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-edrdg-2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "edrdg-2000.json", + "yaml": "edrdg-2000.yml", + "html": "edrdg-2000.html", + "license": "edrdg-2000.LICENSE" + }, + { + "license_key": "efl-1.0", + "category": "Permissive", + "spdx_license_key": "EFL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "efl-1.0.json", + "yaml": "efl-1.0.yml", + "html": "efl-1.0.html", + "license": "efl-1.0.LICENSE" + }, + { + "license_key": "efl-2.0", + "category": "Permissive", + "spdx_license_key": "EFL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "efl-2.0.json", + "yaml": "efl-2.0.yml", + "html": "efl-2.0.html", + "license": "efl-2.0.LICENSE" + }, + { + "license_key": "efsl-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-efsl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "efsl-1.0.json", + "yaml": "efsl-1.0.yml", + "html": "efsl-1.0.html", + "license": "efsl-1.0.LICENSE" + }, + { + "license_key": "egenix-1.0.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-egenix-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "egenix-1.0.0.json", + "yaml": "egenix-1.0.0.yml", + "html": "egenix-1.0.0.html", + "license": "egenix-1.0.0.LICENSE" + }, + { + "license_key": "egenix-1.1.0", + "category": "Permissive", + "spdx_license_key": "eGenix", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "egenix-1.1.0.json", + "yaml": "egenix-1.1.0.yml", + "html": "egenix-1.1.0.html", + "license": "egenix-1.1.0.LICENSE" + }, + { + "license_key": "egrappler", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-egrappler", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "egrappler.json", + "yaml": "egrappler.yml", + "html": "egrappler.html", + "license": "egrappler.LICENSE" + }, + { + "license_key": "ej-technologies-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ej-technologies-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ej-technologies-eula.json", + "yaml": "ej-technologies-eula.yml", + "html": "ej-technologies-eula.html", + "license": "ej-technologies-eula.LICENSE" + }, + { + "license_key": "ekiga-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-ekiga-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ekiga-exception-2.0-plus.json", + "yaml": "ekiga-exception-2.0-plus.yml", + "html": "ekiga-exception-2.0-plus.html", + "license": "ekiga-exception-2.0-plus.LICENSE" + }, + { + "license_key": "ekioh", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ekioh.json", + "yaml": "ekioh.yml", + "html": "ekioh.html", + "license": "ekioh.LICENSE" + }, + { + "license_key": "elastic-license-2018", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-elastic-license-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "elastic-license-2018.json", + "yaml": "elastic-license-2018.yml", + "html": "elastic-license-2018.html", + "license": "elastic-license-2018.LICENSE" + }, + { + "license_key": "elastic-license-v2", + "category": "Source-available", + "spdx_license_key": "Elastic-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-elastic-license-v2" + ], + "is_exception": false, + "is_deprecated": false, + "json": "elastic-license-v2.json", + "yaml": "elastic-license-v2.yml", + "html": "elastic-license-v2.html", + "license": "elastic-license-v2.LICENSE" + }, + { + "license_key": "elib-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-elib-gpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "elib-gpl.json", + "yaml": "elib-gpl.yml", + "html": "elib-gpl.html", + "license": "elib-gpl.LICENSE" + }, + { + "license_key": "ellis-lab", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ellis-lab", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ellis-lab.json", + "yaml": "ellis-lab.yml", + "html": "ellis-lab.html", + "license": "ellis-lab.LICENSE" + }, + { + "license_key": "embedthis-evaluation", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-embedthis-evaluation", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "embedthis-evaluation.json", + "yaml": "embedthis-evaluation.yml", + "html": "embedthis-evaluation.html", + "license": "embedthis-evaluation.LICENSE" + }, + { + "license_key": "embedthis-extension", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-embedthis-extension", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "embedthis-extension.json", + "yaml": "embedthis-extension.yml", + "html": "embedthis-extension.html", + "license": "embedthis-extension.LICENSE" + }, + { + "license_key": "embedthis-tou-2022", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-embedthis-tou-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "embedthis-tou-2022.json", + "yaml": "embedthis-tou-2022.yml", + "html": "embedthis-tou-2022.html", + "license": "embedthis-tou-2022.LICENSE" + }, + { + "license_key": "emit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-emit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "emit.json", + "yaml": "emit.yml", + "html": "emit.html", + "license": "emit.LICENSE" + }, + { + "license_key": "emx-library", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-emx-library", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "emx-library.json", + "yaml": "emx-library.yml", + "html": "emx-library.html", + "license": "emx-library.LICENSE" + }, + { + "license_key": "energyplus", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-energyplus-2023", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "energyplus.json", + "yaml": "energyplus.yml", + "html": "energyplus.html", + "license": "energyplus.LICENSE" + }, + { + "license_key": "energyplus-bsd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-energyplus-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "energyplus-bsd.json", + "yaml": "energyplus-bsd.yml", + "html": "energyplus-bsd.html", + "license": "energyplus-bsd.LICENSE" + }, + { + "license_key": "enhydra-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-enhydra-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "enhydra-1.1.json", + "yaml": "enhydra-1.1.yml", + "html": "enhydra-1.1.html", + "license": "enhydra-1.1.LICENSE" + }, + { + "license_key": "enlightenment", + "category": "Permissive", + "spdx_license_key": "MIT-advertising", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "enlightenment.json", + "yaml": "enlightenment.yml", + "html": "enlightenment.html", + "license": "enlightenment.LICENSE" + }, + { + "license_key": "enna", + "category": "Permissive", + "spdx_license_key": "MIT-enna", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "enna.json", + "yaml": "enna.yml", + "html": "enna.html", + "license": "enna.LICENSE" + }, + { + "license_key": "entessa-1.0", + "category": "Permissive", + "spdx_license_key": "Entessa", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "entessa-1.0.json", + "yaml": "entessa-1.0.yml", + "html": "entessa-1.0.html", + "license": "entessa-1.0.LICENSE" + }, + { + "license_key": "epaperpress", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-epaperpress", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "epaperpress.json", + "yaml": "epaperpress.yml", + "html": "epaperpress.html", + "license": "epaperpress.LICENSE" + }, + { + "license_key": "epics", + "category": "Permissive", + "spdx_license_key": "EPICS", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "epics.json", + "yaml": "epics.yml", + "html": "epics.html", + "license": "epics.LICENSE" + }, + { + "license_key": "epl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "EPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "epl-1.0.json", + "yaml": "epl-1.0.yml", + "html": "epl-1.0.html", + "license": "epl-1.0.LICENSE" + }, + { + "license_key": "epl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "EPL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "epl-2.0.json", + "yaml": "epl-2.0.yml", + "html": "epl-2.0.html", + "license": "epl-2.0.LICENSE" + }, + { + "license_key": "epo-osl-2005.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-epo-osl-2005.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "epo-osl-2005.1.json", + "yaml": "epo-osl-2005.1.yml", + "html": "epo-osl-2005.1.html", + "license": "epo-osl-2005.1.LICENSE" + }, + { + "license_key": "eric-glass", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-eric-glass", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eric-glass.json", + "yaml": "eric-glass.yml", + "html": "eric-glass.html", + "license": "eric-glass.LICENSE" + }, + { + "license_key": "erlangpl-1.1", + "category": "Copyleft", + "spdx_license_key": "ErlPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "erlangpl-1.1.json", + "yaml": "erlangpl-1.1.yml", + "html": "erlangpl-1.1.html", + "license": "erlangpl-1.1.LICENSE" + }, + { + "license_key": "errbot-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-errbot-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "errbot-exception.json", + "yaml": "errbot-exception.yml", + "html": "errbot-exception.html", + "license": "errbot-exception.LICENSE" + }, + { + "license_key": "esri", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-esri", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "esri.json", + "yaml": "esri.yml", + "html": "esri.html", + "license": "esri.LICENSE" + }, + { + "license_key": "esri-devkit", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-esri-devkit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "esri-devkit.json", + "yaml": "esri-devkit.yml", + "html": "esri-devkit.html", + "license": "esri-devkit.LICENSE" + }, + { + "license_key": "etalab-2.0", + "category": "Permissive", + "spdx_license_key": "etalab-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-etalab-2.0", + "LicenseRef-scancode-etalab-2.0-fr" + ], + "is_exception": false, + "is_deprecated": false, + "json": "etalab-2.0.json", + "yaml": "etalab-2.0.yml", + "html": "etalab-2.0.html", + "license": "etalab-2.0.LICENSE" + }, + { + "license_key": "etalab-2.0-en", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-etalab-2.0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "etalab-2.0-en.json", + "yaml": "etalab-2.0-en.yml", + "html": "etalab-2.0-en.html", + "license": "etalab-2.0-en.LICENSE" + }, + { + "license_key": "etalab-2.0-fr", + "category": "Unstated License", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "etalab-2.0-fr.json", + "yaml": "etalab-2.0-fr.yml", + "html": "etalab-2.0-fr.html", + "license": "etalab-2.0-fr.LICENSE" + }, + { + "license_key": "eu-datagrid", + "category": "Permissive", + "spdx_license_key": "EUDatagrid", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eu-datagrid.json", + "yaml": "eu-datagrid.yml", + "html": "eu-datagrid.html", + "license": "eu-datagrid.LICENSE" + }, + { + "license_key": "eupl-1.0", + "category": "Copyleft", + "spdx_license_key": "EUPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eupl-1.0.json", + "yaml": "eupl-1.0.yml", + "html": "eupl-1.0.html", + "license": "eupl-1.0.LICENSE" + }, + { + "license_key": "eupl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "EUPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eupl-1.1.json", + "yaml": "eupl-1.1.yml", + "html": "eupl-1.1.html", + "license": "eupl-1.1.LICENSE" + }, + { + "license_key": "eupl-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "EUPL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eupl-1.2.json", + "yaml": "eupl-1.2.yml", + "html": "eupl-1.2.html", + "license": "eupl-1.2.LICENSE" + }, + { + "license_key": "eurosym", + "category": "Copyleft Limited", + "spdx_license_key": "Eurosym", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "eurosym.json", + "yaml": "eurosym.yml", + "html": "eurosym.html", + "license": "eurosym.LICENSE" + }, + { + "license_key": "examdiff", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-examdiff", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "examdiff.json", + "yaml": "examdiff.yml", + "html": "examdiff.html", + "license": "examdiff.LICENSE" + }, + { + "license_key": "excelsior-jet-runtime", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-excelsior-jet-runtime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "excelsior-jet-runtime.json", + "yaml": "excelsior-jet-runtime.yml", + "html": "excelsior-jet-runtime.html", + "license": "excelsior-jet-runtime.LICENSE" + }, + { + "license_key": "fabien-tassin", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fabien-tassin", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fabien-tassin.json", + "yaml": "fabien-tassin.yml", + "html": "fabien-tassin.html", + "license": "fabien-tassin.LICENSE" + }, + { + "license_key": "fabric-agreement-2017", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-fabric-agreement-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fabric-agreement-2017.json", + "yaml": "fabric-agreement-2017.yml", + "html": "fabric-agreement-2017.html", + "license": "fabric-agreement-2017.LICENSE" + }, + { + "license_key": "facebook-nuclide", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-facebook-nuclide", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "facebook-nuclide.json", + "yaml": "facebook-nuclide.yml", + "html": "facebook-nuclide.html", + "license": "facebook-nuclide.LICENSE" + }, + { + "license_key": "facebook-patent-rights-2", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-facebook-patent-rights-2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "facebook-patent-rights-2.json", + "yaml": "facebook-patent-rights-2.yml", + "html": "facebook-patent-rights-2.html", + "license": "facebook-patent-rights-2.LICENSE" + }, + { + "license_key": "facebook-software-license", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-facebook-software-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "facebook-software-license.json", + "yaml": "facebook-software-license.yml", + "html": "facebook-software-license.html", + "license": "facebook-software-license.LICENSE" + }, + { + "license_key": "fair", + "category": "Permissive", + "spdx_license_key": "Fair", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fair.json", + "yaml": "fair.yml", + "html": "fair.html", + "license": "fair.LICENSE" + }, + { + "license_key": "fair-source-0.9", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-fair-source-0.9", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fair-source-0.9.json", + "yaml": "fair-source-0.9.yml", + "html": "fair-source-0.9.html", + "license": "fair-source-0.9.LICENSE" + }, + { + "license_key": "fancyzoom", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-fancyzoom", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fancyzoom.json", + "yaml": "fancyzoom.yml", + "html": "fancyzoom.html", + "license": "fancyzoom.LICENSE" + }, + { + "license_key": "far-manager-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-far-manager-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "far-manager-exception.json", + "yaml": "far-manager-exception.yml", + "html": "far-manager-exception.html", + "license": "far-manager-exception.LICENSE" + }, + { + "license_key": "fastbuild-2012-2020", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fastbuild-2012-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fastbuild-2012-2020.json", + "yaml": "fastbuild-2012-2020.yml", + "html": "fastbuild-2012-2020.html", + "license": "fastbuild-2012-2020.LICENSE" + }, + { + "license_key": "fastcgi-devkit", + "category": "Permissive", + "spdx_license_key": "OML", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fastcgi-devkit.json", + "yaml": "fastcgi-devkit.yml", + "html": "fastcgi-devkit.html", + "license": "fastcgi-devkit.LICENSE" + }, + { + "license_key": "fatfs", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fatfs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fatfs.json", + "yaml": "fatfs.yml", + "html": "fatfs.html", + "license": "fatfs.LICENSE" + }, + { + "license_key": "fawkes-runtime-exception", + "category": "Copyleft Limited", + "spdx_license_key": "Fawkes-Runtime-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "fawkes-runtime-exception.json", + "yaml": "fawkes-runtime-exception.yml", + "html": "fawkes-runtime-exception.html", + "license": "fawkes-runtime-exception.LICENSE" + }, + { + "license_key": "fbm", + "category": "Permissive", + "spdx_license_key": "FBM", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fbm.json", + "yaml": "fbm.yml", + "html": "fbm.html", + "license": "fbm.LICENSE" + }, + { + "license_key": "ferguson-twofish", + "category": "Permissive", + "spdx_license_key": "Ferguson-Twofish", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ferguson-twofish.json", + "yaml": "ferguson-twofish.yml", + "html": "ferguson-twofish.html", + "license": "ferguson-twofish.LICENSE" + }, + { + "license_key": "fftpack-2004", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fftpack-2004", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fftpack-2004.json", + "yaml": "fftpack-2004.yml", + "html": "fftpack-2004.html", + "license": "fftpack-2004.LICENSE" + }, + { + "license_key": "filament-group-mit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-filament-group-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "filament-group-mit.json", + "yaml": "filament-group-mit.yml", + "html": "filament-group-mit.html", + "license": "filament-group-mit.LICENSE" + }, + { + "license_key": "first-works-appreciative-1.2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-first-works-appreciative-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "first-works-appreciative-1.2.json", + "yaml": "first-works-appreciative-1.2.yml", + "html": "first-works-appreciative-1.2.html", + "license": "first-works-appreciative-1.2.LICENSE" + }, + { + "license_key": "flex-2.5", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-flex", + "other_spdx_license_keys": [ + "LicenseRef-scancode-flex-2.5" + ], + "is_exception": false, + "is_deprecated": false, + "json": "flex-2.5.json", + "yaml": "flex-2.5.yml", + "html": "flex-2.5.html", + "license": "flex-2.5.LICENSE" + }, + { + "license_key": "flex2sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-flex2sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "flex2sdk.json", + "yaml": "flex2sdk.yml", + "html": "flex2sdk.html", + "license": "flex2sdk.LICENSE" + }, + { + "license_key": "flora-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-flora-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "flora-1.1.json", + "yaml": "flora-1.1.yml", + "html": "flora-1.1.html", + "license": "flora-1.1.LICENSE" + }, + { + "license_key": "flowplayer-gpl-3.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-flowplayer-gpl-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "flowplayer-gpl-3.0.json", + "yaml": "flowplayer-gpl-3.0.yml", + "html": "flowplayer-gpl-3.0.html", + "license": "flowplayer-gpl-3.0.LICENSE" + }, + { + "license_key": "fltk-exception-lgpl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "FLTK-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "fltk-exception-lgpl-2.0.json", + "yaml": "fltk-exception-lgpl-2.0.yml", + "html": "fltk-exception-lgpl-2.0.html", + "license": "fltk-exception-lgpl-2.0.LICENSE" + }, + { + "license_key": "font-alias", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-font-alias", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "font-alias.json", + "yaml": "font-alias.yml", + "html": "font-alias.html", + "license": "font-alias.LICENSE" + }, + { + "license_key": "font-exception-gpl", + "category": "Copyleft Limited", + "spdx_license_key": "Font-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "font-exception-gpl.json", + "yaml": "font-exception-gpl.yml", + "html": "font-exception-gpl.html", + "license": "font-exception-gpl.LICENSE" + }, + { + "license_key": "foobar2000", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-foobar2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "foobar2000.json", + "yaml": "foobar2000.yml", + "html": "foobar2000.html", + "license": "foobar2000.LICENSE" + }, + { + "license_key": "fpdf", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fpdf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fpdf.json", + "yaml": "fpdf.yml", + "html": "fpdf.html", + "license": "fpdf.LICENSE" + }, + { + "license_key": "fpl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fpl.json", + "yaml": "fpl.yml", + "html": "fpl.html", + "license": "fpl.LICENSE" + }, + { + "license_key": "fplot", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fplot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fplot.json", + "yaml": "fplot.yml", + "html": "fplot.html", + "license": "fplot.LICENSE" + }, + { + "license_key": "frameworx-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "Frameworx-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "frameworx-1.0.json", + "yaml": "frameworx-1.0.yml", + "html": "frameworx-1.0.html", + "license": "frameworx-1.0.LICENSE" + }, + { + "license_key": "fraunhofer-fdk-aac-codec", + "category": "Copyleft Limited", + "spdx_license_key": "FDK-AAC", + "other_spdx_license_keys": [ + "LicenseRef-scancode-fraunhofer-fdk-aac-codec" + ], + "is_exception": false, + "is_deprecated": false, + "json": "fraunhofer-fdk-aac-codec.json", + "yaml": "fraunhofer-fdk-aac-codec.yml", + "html": "fraunhofer-fdk-aac-codec.html", + "license": "fraunhofer-fdk-aac-codec.LICENSE" + }, + { + "license_key": "fraunhofer-iso-14496-10", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fraunhofer-iso-14496-10", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fraunhofer-iso-14496-10.json", + "yaml": "fraunhofer-iso-14496-10.yml", + "html": "fraunhofer-iso-14496-10.html", + "license": "fraunhofer-iso-14496-10.LICENSE" + }, + { + "license_key": "free-art-1.3", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-free-art-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "free-art-1.3.json", + "yaml": "free-art-1.3.yml", + "html": "free-art-1.3.html", + "license": "free-art-1.3.LICENSE" + }, + { + "license_key": "free-fork", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-free-fork", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "free-fork.json", + "yaml": "free-fork.yml", + "html": "free-fork.html", + "license": "free-fork.LICENSE" + }, + { + "license_key": "free-surfer-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-free-surfer-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "free-surfer-1.0.json", + "yaml": "free-surfer-1.0.yml", + "html": "free-surfer-1.0.html", + "license": "free-surfer-1.0.LICENSE" + }, + { + "license_key": "free-unknown", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-free-unknown", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "free-unknown.json", + "yaml": "free-unknown.yml", + "html": "free-unknown.html", + "license": "free-unknown.LICENSE" + }, + { + "license_key": "freebsd-boot", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-freebsd-boot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "freebsd-boot.json", + "yaml": "freebsd-boot.yml", + "html": "freebsd-boot.html", + "license": "freebsd-boot.LICENSE" + }, + { + "license_key": "freebsd-doc", + "category": "Permissive", + "spdx_license_key": "FreeBSD-DOC", + "other_spdx_license_keys": [ + "LicenseRef-scancode-freebsd-doc" + ], + "is_exception": false, + "is_deprecated": false, + "json": "freebsd-doc.json", + "yaml": "freebsd-doc.yml", + "html": "freebsd-doc.html", + "license": "freebsd-doc.LICENSE" + }, + { + "license_key": "freebsd-first", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-freebsd-first", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "freebsd-first.json", + "yaml": "freebsd-first.yml", + "html": "freebsd-first.html", + "license": "freebsd-first.LICENSE" + }, + { + "license_key": "freeimage-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "FreeImage", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "freeimage-1.0.json", + "yaml": "freeimage-1.0.yml", + "html": "freeimage-1.0.html", + "license": "freeimage-1.0.LICENSE" + }, + { + "license_key": "freemarker", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-freemarker", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "freemarker.json", + "yaml": "freemarker.yml", + "html": "freemarker.html", + "license": "freemarker.LICENSE" + }, + { + "license_key": "freertos-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "freertos-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "freertos-exception-2.0.json", + "yaml": "freertos-exception-2.0.yml", + "html": "freertos-exception-2.0.html", + "license": "freertos-exception-2.0.LICENSE" + }, + { + "license_key": "freetts", + "category": "Permissive", + "spdx_license_key": "MIT-Festival", + "other_spdx_license_keys": [ + "LicenseRef-scancode-freetts" + ], + "is_exception": false, + "is_deprecated": false, + "json": "freetts.json", + "yaml": "freetts.yml", + "html": "freetts.html", + "license": "freetts.LICENSE" + }, + { + "license_key": "freetype", + "category": "Permissive", + "spdx_license_key": "FTL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "freetype.json", + "yaml": "freetype.yml", + "html": "freetype.html", + "license": "freetype.LICENSE" + }, + { + "license_key": "freetype-patent", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-freetype-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "freetype-patent.json", + "yaml": "freetype-patent.yml", + "html": "freetype-patent.html", + "license": "freetype-patent.LICENSE" + }, + { + "license_key": "froala-owdl-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-froala-owdl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "froala-owdl-1.0.json", + "yaml": "froala-owdl-1.0.yml", + "html": "froala-owdl-1.0.html", + "license": "froala-owdl-1.0.LICENSE" + }, + { + "license_key": "frontier-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-frontier-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "frontier-1.0.json", + "yaml": "frontier-1.0.yml", + "html": "frontier-1.0.html", + "license": "frontier-1.0.LICENSE" + }, + { + "license_key": "fsf-ap", + "category": "Permissive", + "spdx_license_key": "FSFAP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fsf-ap.json", + "yaml": "fsf-ap.yml", + "html": "fsf-ap.html", + "license": "fsf-ap.LICENSE" + }, + { + "license_key": "fsf-free", + "category": "Public Domain", + "spdx_license_key": "FSFUL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fsf-free.json", + "yaml": "fsf-free.yml", + "html": "fsf-free.html", + "license": "fsf-free.LICENSE" + }, + { + "license_key": "fsf-notice", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fsf-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fsf-notice.json", + "yaml": "fsf-notice.yml", + "html": "fsf-notice.html", + "license": "fsf-notice.LICENSE" + }, + { + "license_key": "fsf-unlimited", + "category": "Permissive", + "spdx_license_key": "FSFULLR", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fsf-unlimited.json", + "yaml": "fsf-unlimited.yml", + "html": "fsf-unlimited.html", + "license": "fsf-unlimited.LICENSE" + }, + { + "license_key": "fsf-unlimited-no-warranty", + "category": "Permissive", + "spdx_license_key": "FSFULLRWD", + "other_spdx_license_keys": [ + "LicenseRef-scancode-fsf-unlimited-no-warranty" + ], + "is_exception": false, + "is_deprecated": false, + "json": "fsf-unlimited-no-warranty.json", + "yaml": "fsf-unlimited-no-warranty.yml", + "html": "fsf-unlimited-no-warranty.html", + "license": "fsf-unlimited-no-warranty.LICENSE" + }, + { + "license_key": "fsfap-no-warranty-disclaimer", + "category": "Permissive", + "spdx_license_key": "FSFAP-no-warranty-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fsfap-no-warranty-disclaimer.json", + "yaml": "fsfap-no-warranty-disclaimer.yml", + "html": "fsfap-no-warranty-disclaimer.html", + "license": "fsfap-no-warranty-disclaimer.LICENSE" + }, + { + "license_key": "fsl-1.0-apache-2.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-fsl-1.0-apache-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fsl-1.0-apache-2.0.json", + "yaml": "fsl-1.0-apache-2.0.yml", + "html": "fsl-1.0-apache-2.0.html", + "license": "fsl-1.0-apache-2.0.LICENSE" + }, + { + "license_key": "fsl-1.0-mit", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-fsl-1.0-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fsl-1.0-mit.json", + "yaml": "fsl-1.0-mit.yml", + "html": "fsl-1.0-mit.html", + "license": "fsl-1.0-mit.LICENSE" + }, + { + "license_key": "ftdi", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ftdi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ftdi.json", + "yaml": "ftdi.yml", + "html": "ftdi.html", + "license": "ftdi.LICENSE" + }, + { + "license_key": "ftpbean", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ftpbean", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ftpbean.json", + "yaml": "ftpbean.yml", + "html": "ftpbean.html", + "license": "ftpbean.LICENSE" + }, + { + "license_key": "fujion-exception-to-apache-2.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-fujion-exception-to-apache-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "fujion-exception-to-apache-2.0.json", + "yaml": "fujion-exception-to-apache-2.0.yml", + "html": "fujion-exception-to-apache-2.0.html", + "license": "fujion-exception-to-apache-2.0.LICENSE" + }, + { + "license_key": "furuseth", + "category": "Permissive", + "spdx_license_key": "Furuseth", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "furuseth.json", + "yaml": "furuseth.yml", + "html": "furuseth.html", + "license": "furuseth.LICENSE" + }, + { + "license_key": "fwlw", + "category": "Permissive", + "spdx_license_key": "fwlw", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "fwlw.json", + "yaml": "fwlw.yml", + "html": "fwlw.html", + "license": "fwlw.LICENSE" + }, + { + "license_key": "g10-permissive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-g10-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "g10-permissive.json", + "yaml": "g10-permissive.yml", + "html": "g10-permissive.html", + "license": "g10-permissive.LICENSE" + }, + { + "license_key": "gareth-mccaughan", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gareth-mccaughan", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gareth-mccaughan.json", + "yaml": "gareth-mccaughan.yml", + "html": "gareth-mccaughan.html", + "license": "gareth-mccaughan.LICENSE" + }, + { + "license_key": "gary-s-brown", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gary-s-brown", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gary-s-brown.json", + "yaml": "gary-s-brown.yml", + "html": "gary-s-brown.html", + "license": "gary-s-brown.LICENSE" + }, + { + "license_key": "gatling-highcharts", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-gatling-highcharts", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gatling-highcharts.json", + "yaml": "gatling-highcharts.yml", + "html": "gatling-highcharts.html", + "license": "gatling-highcharts.LICENSE" + }, + { + "license_key": "gcc-compiler-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-gcc-compiler-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gcc-compiler-exception-2.0.json", + "yaml": "gcc-compiler-exception-2.0.yml", + "html": "gcc-compiler-exception-2.0.html", + "license": "gcc-compiler-exception-2.0.LICENSE" + }, + { + "license_key": "gcc-exception-2.0-note", + "category": "Copyleft Limited", + "spdx_license_key": "GCC-exception-2.0-note", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gcc-exception-2.0-note.json", + "yaml": "gcc-exception-2.0-note.yml", + "html": "gcc-exception-2.0-note.html", + "license": "gcc-exception-2.0-note.LICENSE" + }, + { + "license_key": "gcc-exception-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-gcc-exception-3.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-exception-3.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "gcc-exception-3.0.json", + "yaml": "gcc-exception-3.0.yml", + "html": "gcc-exception-3.0.html", + "license": "gcc-exception-3.0.LICENSE" + }, + { + "license_key": "gcc-exception-3.1", + "category": "Copyleft Limited", + "spdx_license_key": "GCC-exception-3.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gcc-exception-3.1.json", + "yaml": "gcc-exception-3.1.yml", + "html": "gcc-exception-3.1.html", + "license": "gcc-exception-3.1.LICENSE" + }, + { + "license_key": "gcc-linking-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "GCC-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gcc-linking-exception-2.0.json", + "yaml": "gcc-linking-exception-2.0.yml", + "html": "gcc-linking-exception-2.0.html", + "license": "gcc-linking-exception-2.0.LICENSE" + }, + { + "license_key": "gcel-2022", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-gcel-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gcel-2022.json", + "yaml": "gcel-2022.yml", + "html": "gcel-2022.html", + "license": "gcel-2022.LICENSE" + }, + { + "license_key": "gco-v3.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-gco-v3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gco-v3.0.json", + "yaml": "gco-v3.0.yml", + "html": "gco-v3.0.html", + "license": "gco-v3.0.LICENSE" + }, + { + "license_key": "gcr-docs", + "category": "Copyleft Limited", + "spdx_license_key": "GCR-docs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gcr-docs.json", + "yaml": "gcr-docs.yml", + "html": "gcr-docs.html", + "license": "gcr-docs.LICENSE" + }, + { + "license_key": "gdcl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gdcl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gdcl.json", + "yaml": "gdcl.yml", + "html": "gdcl.html", + "license": "gdcl.LICENSE" + }, + { + "license_key": "generic-cla", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-generic-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "generic-cla.json", + "yaml": "generic-cla.yml", + "html": "generic-cla.html", + "license": "generic-cla.LICENSE" + }, + { + "license_key": "generic-exception", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-generic-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "generic-exception.json", + "yaml": "generic-exception.yml", + "html": "generic-exception.html", + "license": "generic-exception.LICENSE" + }, + { + "license_key": "generic-export-compliance", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-generic-export-compliance", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "generic-export-compliance.json", + "yaml": "generic-export-compliance.yml", + "html": "generic-export-compliance.html", + "license": "generic-export-compliance.LICENSE" + }, + { + "license_key": "generic-loop", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-generic-loop", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "generic-loop.json", + "yaml": "generic-loop.yml", + "html": "generic-loop.html", + "license": "generic-loop.LICENSE" + }, + { + "license_key": "generic-tos", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-generic-tos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "generic-tos.json", + "yaml": "generic-tos.yml", + "html": "generic-tos.html", + "license": "generic-tos.LICENSE" + }, + { + "license_key": "generic-trademark", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-generic-trademark", + "other_spdx_license_keys": [ + "LicenseRef-scancode-trademark-notice" + ], + "is_exception": false, + "is_deprecated": false, + "json": "generic-trademark.json", + "yaml": "generic-trademark.yml", + "html": "generic-trademark.html", + "license": "generic-trademark.LICENSE" + }, + { + "license_key": "genivia-gsoap", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-genivia-gsoap", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "genivia-gsoap.json", + "yaml": "genivia-gsoap.yml", + "html": "genivia-gsoap.html", + "license": "genivia-gsoap.LICENSE" + }, + { + "license_key": "genode-agpl-3.0-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-genode-agpl-3.0-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "genode-agpl-3.0-exception.json", + "yaml": "genode-agpl-3.0-exception.yml", + "html": "genode-agpl-3.0-exception.html", + "license": "genode-agpl-3.0-exception.LICENSE" + }, + { + "license_key": "geoff-kuenning-1993", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-geoff-kuenning-1993", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "geoff-kuenning-1993.json", + "yaml": "geoff-kuenning-1993.yml", + "html": "geoff-kuenning-1993.html", + "license": "geoff-kuenning-1993.LICENSE" + }, + { + "license_key": "geoserver-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-geoserver-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "geoserver-exception-2.0-plus.json", + "yaml": "geoserver-exception-2.0-plus.yml", + "html": "geoserver-exception-2.0-plus.html", + "license": "geoserver-exception-2.0-plus.LICENSE" + }, + { + "license_key": "gfdl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.1-only", + "other_spdx_license_keys": [ + "GFDL-1.1" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.1.json", + "yaml": "gfdl-1.1.yml", + "html": "gfdl-1.1.html", + "license": "gfdl-1.1.LICENSE" + }, + { + "license_key": "gfdl-1.1-invariants-only", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.1-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.1-invariants-only.json", + "yaml": "gfdl-1.1-invariants-only.yml", + "html": "gfdl-1.1-invariants-only.html", + "license": "gfdl-1.1-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.1-invariants-or-later", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.1-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.1-invariants-or-later.json", + "yaml": "gfdl-1.1-invariants-or-later.yml", + "html": "gfdl-1.1-invariants-or-later.html", + "license": "gfdl-1.1-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.1-no-invariants-only", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.1-no-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.1-no-invariants-only.json", + "yaml": "gfdl-1.1-no-invariants-only.yml", + "html": "gfdl-1.1-no-invariants-only.html", + "license": "gfdl-1.1-no-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.1-no-invariants-or-later", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.1-no-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.1-no-invariants-or-later.json", + "yaml": "gfdl-1.1-no-invariants-or-later.yml", + "html": "gfdl-1.1-no-invariants-or-later.html", + "license": "gfdl-1.1-no-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.1-plus", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.1-or-later", + "other_spdx_license_keys": [ + "GFDL-1.1+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.1-plus.json", + "yaml": "gfdl-1.1-plus.yml", + "html": "gfdl-1.1-plus.html", + "license": "gfdl-1.1-plus.LICENSE" + }, + { + "license_key": "gfdl-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.2-only", + "other_spdx_license_keys": [ + "GFDL-1.2" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.2.json", + "yaml": "gfdl-1.2.yml", + "html": "gfdl-1.2.html", + "license": "gfdl-1.2.LICENSE" + }, + { + "license_key": "gfdl-1.2-invariants-only", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.2-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.2-invariants-only.json", + "yaml": "gfdl-1.2-invariants-only.yml", + "html": "gfdl-1.2-invariants-only.html", + "license": "gfdl-1.2-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.2-invariants-or-later", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.2-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.2-invariants-or-later.json", + "yaml": "gfdl-1.2-invariants-or-later.yml", + "html": "gfdl-1.2-invariants-or-later.html", + "license": "gfdl-1.2-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.2-no-invariants-only", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.2-no-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.2-no-invariants-only.json", + "yaml": "gfdl-1.2-no-invariants-only.yml", + "html": "gfdl-1.2-no-invariants-only.html", + "license": "gfdl-1.2-no-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.2-no-invariants-or-later", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.2-no-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.2-no-invariants-or-later.json", + "yaml": "gfdl-1.2-no-invariants-or-later.yml", + "html": "gfdl-1.2-no-invariants-or-later.html", + "license": "gfdl-1.2-no-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.2-plus", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.2-or-later", + "other_spdx_license_keys": [ + "GFDL-1.2+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.2-plus.json", + "yaml": "gfdl-1.2-plus.yml", + "html": "gfdl-1.2-plus.html", + "license": "gfdl-1.2-plus.LICENSE" + }, + { + "license_key": "gfdl-1.3", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.3-only", + "other_spdx_license_keys": [ + "GFDL-1.3" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.3.json", + "yaml": "gfdl-1.3.yml", + "html": "gfdl-1.3.html", + "license": "gfdl-1.3.LICENSE" + }, + { + "license_key": "gfdl-1.3-invariants-only", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.3-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.3-invariants-only.json", + "yaml": "gfdl-1.3-invariants-only.yml", + "html": "gfdl-1.3-invariants-only.html", + "license": "gfdl-1.3-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.3-invariants-or-later", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.3-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.3-invariants-or-later.json", + "yaml": "gfdl-1.3-invariants-or-later.yml", + "html": "gfdl-1.3-invariants-or-later.html", + "license": "gfdl-1.3-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.3-no-invariants-only", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.3-no-invariants-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.3-no-invariants-only.json", + "yaml": "gfdl-1.3-no-invariants-only.yml", + "html": "gfdl-1.3-no-invariants-only.html", + "license": "gfdl-1.3-no-invariants-only.LICENSE" + }, + { + "license_key": "gfdl-1.3-no-invariants-or-later", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.3-no-invariants-or-later", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.3-no-invariants-or-later.json", + "yaml": "gfdl-1.3-no-invariants-or-later.yml", + "html": "gfdl-1.3-no-invariants-or-later.html", + "license": "gfdl-1.3-no-invariants-or-later.LICENSE" + }, + { + "license_key": "gfdl-1.3-plus", + "category": "Copyleft Limited", + "spdx_license_key": "GFDL-1.3-or-later", + "other_spdx_license_keys": [ + "GFDL-1.3+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gfdl-1.3-plus.json", + "yaml": "gfdl-1.3-plus.yml", + "html": "gfdl-1.3-plus.html", + "license": "gfdl-1.3-plus.LICENSE" + }, + { + "license_key": "ghostpdl-permissive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ghostpdl-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ghostpdl-permissive.json", + "yaml": "ghostpdl-permissive.yml", + "html": "ghostpdl-permissive.html", + "license": "ghostpdl-permissive.LICENSE" + }, + { + "license_key": "ghostscript-1988", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ghostscript-1988", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ghostscript-1988.json", + "yaml": "ghostscript-1988.yml", + "html": "ghostscript-1988.html", + "license": "ghostscript-1988.LICENSE" + }, + { + "license_key": "github-codeql-terms-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-github-codeql-terms-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "github-codeql-terms-2020.json", + "yaml": "github-codeql-terms-2020.yml", + "html": "github-codeql-terms-2020.html", + "license": "github-codeql-terms-2020.LICENSE" + }, + { + "license_key": "gitlab-ee", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-gitlab-ee", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gitlab-ee.json", + "yaml": "gitlab-ee.yml", + "html": "gitlab-ee.html", + "license": "gitlab-ee.LICENSE" + }, + { + "license_key": "gitpod-self-hosted-free-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-gitpod-self-hosted-free-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gitpod-self-hosted-free-2020.json", + "yaml": "gitpod-self-hosted-free-2020.yml", + "html": "gitpod-self-hosted-free-2020.html", + "license": "gitpod-self-hosted-free-2020.LICENSE" + }, + { + "license_key": "gl2ps", + "category": "Copyleft Limited", + "spdx_license_key": "GL2PS", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gl2ps.json", + "yaml": "gl2ps.yml", + "html": "gl2ps.html", + "license": "gl2ps.LICENSE" + }, + { + "license_key": "gladman-older-rijndael-code-use", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gladman-older-rijndael-code", + "other_spdx_license_keys": [ + "LicenseRef-scancode-gladman-older-rijndael-code-use" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gladman-older-rijndael-code-use.json", + "yaml": "gladman-older-rijndael-code-use.yml", + "html": "gladman-older-rijndael-code-use.html", + "license": "gladman-older-rijndael-code-use.LICENSE" + }, + { + "license_key": "glide", + "category": "Copyleft", + "spdx_license_key": "Glide", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "glide.json", + "yaml": "glide.yml", + "html": "glide.html", + "license": "glide.LICENSE" + }, + { + "license_key": "glulxe", + "category": "Permissive", + "spdx_license_key": "Glulxe", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "glulxe.json", + "yaml": "glulxe.yml", + "html": "glulxe.html", + "license": "glulxe.LICENSE" + }, + { + "license_key": "glut", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-glut", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "glut.json", + "yaml": "glut.yml", + "html": "glut.html", + "license": "glut.LICENSE" + }, + { + "license_key": "glwtpl", + "category": "Permissive", + "spdx_license_key": "GLWTPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "glwtpl.json", + "yaml": "glwtpl.yml", + "html": "glwtpl.html", + "license": "glwtpl.LICENSE" + }, + { + "license_key": "gmsh-exception", + "category": "Copyleft Limited", + "spdx_license_key": "Gmsh-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gmsh-exception.json", + "yaml": "gmsh-exception.yml", + "html": "gmsh-exception.html", + "license": "gmsh-exception.LICENSE" + }, + { + "license_key": "gnome-examples-exception", + "category": "Permissive", + "spdx_license_key": "GNOME-examples-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gnome-examples-exception.json", + "yaml": "gnome-examples-exception.yml", + "html": "gnome-examples-exception.html", + "license": "gnome-examples-exception.LICENSE" + }, + { + "license_key": "gnu-emacs-gpl-1988", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gnu-emacs-gpl-1988", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gnu-emacs-gpl-1988.json", + "yaml": "gnu-emacs-gpl-1988.yml", + "html": "gnu-emacs-gpl-1988.html", + "license": "gnu-emacs-gpl-1988.LICENSE" + }, + { + "license_key": "gnu-javamail-exception", + "category": "Copyleft Limited", + "spdx_license_key": "gnu-javamail-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gnu-javamail-exception.json", + "yaml": "gnu-javamail-exception.yml", + "html": "gnu-javamail-exception.html", + "license": "gnu-javamail-exception.LICENSE" + }, + { + "license_key": "gnuplot", + "category": "Copyleft Limited", + "spdx_license_key": "gnuplot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gnuplot.json", + "yaml": "gnuplot.yml", + "html": "gnuplot.html", + "license": "gnuplot.LICENSE" + }, + { + "license_key": "goahead", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-goahead", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "goahead.json", + "yaml": "goahead.yml", + "html": "goahead.html", + "license": "goahead.LICENSE" + }, + { + "license_key": "good-boy", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-good-boy", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "good-boy.json", + "yaml": "good-boy.yml", + "html": "good-boy.html", + "license": "good-boy.LICENSE" + }, + { + "license_key": "google-analytics-tos", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-analytics-tos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-analytics-tos.json", + "yaml": "google-analytics-tos.yml", + "html": "google-analytics-tos.html", + "license": "google-analytics-tos.LICENSE" + }, + { + "license_key": "google-analytics-tos-2015", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2015", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-analytics-tos-2015.json", + "yaml": "google-analytics-tos-2015.yml", + "html": "google-analytics-tos-2015.html", + "license": "google-analytics-tos-2015.LICENSE" + }, + { + "license_key": "google-analytics-tos-2016", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-analytics-tos-2016.json", + "yaml": "google-analytics-tos-2016.yml", + "html": "google-analytics-tos-2016.html", + "license": "google-analytics-tos-2016.LICENSE" + }, + { + "license_key": "google-analytics-tos-2019", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-analytics-tos-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-analytics-tos-2019.json", + "yaml": "google-analytics-tos-2019.yml", + "html": "google-analytics-tos-2019.html", + "license": "google-analytics-tos-2019.LICENSE" + }, + { + "license_key": "google-apis-tos-2021", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-apis-tos-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-apis-tos-2021.json", + "yaml": "google-apis-tos-2021.yml", + "html": "google-apis-tos-2021.html", + "license": "google-apis-tos-2021.LICENSE" + }, + { + "license_key": "google-cla", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-google-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-cla.json", + "yaml": "google-cla.yml", + "html": "google-cla.html", + "license": "google-cla.LICENSE" + }, + { + "license_key": "google-corporate-cla", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-google-corporate-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-corporate-cla.json", + "yaml": "google-corporate-cla.yml", + "html": "google-corporate-cla.html", + "license": "google-corporate-cla.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-02-07", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-02-07", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2018-02-07.json", + "yaml": "google-maps-tos-2018-02-07.yml", + "html": "google-maps-tos-2018-02-07.html", + "license": "google-maps-tos-2018-02-07.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-05-01", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-05-01", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2018-05-01.json", + "yaml": "google-maps-tos-2018-05-01.yml", + "html": "google-maps-tos-2018-05-01.html", + "license": "google-maps-tos-2018-05-01.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-06-07", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-06-07", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2018-06-07.json", + "yaml": "google-maps-tos-2018-06-07.yml", + "html": "google-maps-tos-2018-06-07.html", + "license": "google-maps-tos-2018-06-07.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-07-09", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-07-09", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2018-07-09.json", + "yaml": "google-maps-tos-2018-07-09.yml", + "html": "google-maps-tos-2018-07-09.html", + "license": "google-maps-tos-2018-07-09.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-07-19", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-07-19", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2018-07-19.json", + "yaml": "google-maps-tos-2018-07-19.yml", + "html": "google-maps-tos-2018-07-19.html", + "license": "google-maps-tos-2018-07-19.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-10-01", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-10-01", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2018-10-01.json", + "yaml": "google-maps-tos-2018-10-01.yml", + "html": "google-maps-tos-2018-10-01.html", + "license": "google-maps-tos-2018-10-01.LICENSE" + }, + { + "license_key": "google-maps-tos-2018-10-31", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2018-10-31", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2018-10-31.json", + "yaml": "google-maps-tos-2018-10-31.yml", + "html": "google-maps-tos-2018-10-31.html", + "license": "google-maps-tos-2018-10-31.LICENSE" + }, + { + "license_key": "google-maps-tos-2019-05-02", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2019-05-02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2019-05-02.json", + "yaml": "google-maps-tos-2019-05-02.yml", + "html": "google-maps-tos-2019-05-02.html", + "license": "google-maps-tos-2019-05-02.LICENSE" + }, + { + "license_key": "google-maps-tos-2019-11-21", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2019-11-21", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2019-11-21.json", + "yaml": "google-maps-tos-2019-11-21.yml", + "html": "google-maps-tos-2019-11-21.html", + "license": "google-maps-tos-2019-11-21.LICENSE" + }, + { + "license_key": "google-maps-tos-2020-04-02", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2020-04-02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2020-04-02.json", + "yaml": "google-maps-tos-2020-04-02.yml", + "html": "google-maps-tos-2020-04-02.html", + "license": "google-maps-tos-2020-04-02.LICENSE" + }, + { + "license_key": "google-maps-tos-2020-04-27", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2020-04-27", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2020-04-27.json", + "yaml": "google-maps-tos-2020-04-27.yml", + "html": "google-maps-tos-2020-04-27.html", + "license": "google-maps-tos-2020-04-27.LICENSE" + }, + { + "license_key": "google-maps-tos-2020-05-06", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-maps-tos-2020-05-06", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-maps-tos-2020-05-06.json", + "yaml": "google-maps-tos-2020-05-06.yml", + "html": "google-maps-tos-2020-05-06.html", + "license": "google-maps-tos-2020-05-06.LICENSE" + }, + { + "license_key": "google-ml-kit-tos-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-ml-kit-tos-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-ml-kit-tos-2022.json", + "yaml": "google-ml-kit-tos-2022.yml", + "html": "google-ml-kit-tos-2022.html", + "license": "google-ml-kit-tos-2022.LICENSE" + }, + { + "license_key": "google-patent-license", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-google-patent-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-patent-license.json", + "yaml": "google-patent-license.yml", + "html": "google-patent-license.html", + "license": "google-patent-license.LICENSE" + }, + { + "license_key": "google-patent-license-fuchsia", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-fuchsia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-patent-license-fuchsia.json", + "yaml": "google-patent-license-fuchsia.yml", + "html": "google-patent-license-fuchsia.html", + "license": "google-patent-license-fuchsia.LICENSE" + }, + { + "license_key": "google-patent-license-fuschia", + "category": "Patent License", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "google-patent-license-fuschia.json", + "yaml": "google-patent-license-fuschia.yml", + "html": "google-patent-license-fuschia.html", + "license": "google-patent-license-fuschia.LICENSE" + }, + { + "license_key": "google-patent-license-golang", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-golang", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-patent-license-golang.json", + "yaml": "google-patent-license-golang.yml", + "html": "google-patent-license-golang.html", + "license": "google-patent-license-golang.LICENSE" + }, + { + "license_key": "google-patent-license-webm", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-webm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-patent-license-webm.json", + "yaml": "google-patent-license-webm.yml", + "html": "google-patent-license-webm.html", + "license": "google-patent-license-webm.LICENSE" + }, + { + "license_key": "google-patent-license-webrtc", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-google-patent-license-webrtc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-patent-license-webrtc.json", + "yaml": "google-patent-license-webrtc.yml", + "html": "google-patent-license-webrtc.html", + "license": "google-patent-license-webrtc.LICENSE" + }, + { + "license_key": "google-playcore-sdk-tos-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-playcore-sdk-tos-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-playcore-sdk-tos-2020.json", + "yaml": "google-playcore-sdk-tos-2020.yml", + "html": "google-playcore-sdk-tos-2020.html", + "license": "google-playcore-sdk-tos-2020.LICENSE" + }, + { + "license_key": "google-tos-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-tos-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-tos-2013.json", + "yaml": "google-tos-2013.yml", + "html": "google-tos-2013.html", + "license": "google-tos-2013.LICENSE" + }, + { + "license_key": "google-tos-2014", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-tos-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-tos-2014.json", + "yaml": "google-tos-2014.yml", + "html": "google-tos-2014.html", + "license": "google-tos-2014.LICENSE" + }, + { + "license_key": "google-tos-2017", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-tos-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-tos-2017.json", + "yaml": "google-tos-2017.yml", + "html": "google-tos-2017.html", + "license": "google-tos-2017.LICENSE" + }, + { + "license_key": "google-tos-2019", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-tos-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-tos-2019.json", + "yaml": "google-tos-2019.yml", + "html": "google-tos-2019.html", + "license": "google-tos-2019.LICENSE" + }, + { + "license_key": "google-tos-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-google-tos-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "google-tos-2020.json", + "yaml": "google-tos-2020.yml", + "html": "google-tos-2020.html", + "license": "google-tos-2020.LICENSE" + }, + { + "license_key": "gpl-1.0", + "category": "Copyleft", + "spdx_license_key": "GPL-1.0-only", + "other_spdx_license_keys": [ + "GPL-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-1.0.json", + "yaml": "gpl-1.0.yml", + "html": "gpl-1.0.html", + "license": "gpl-1.0.LICENSE" + }, + { + "license_key": "gpl-1.0-plus", + "category": "Copyleft", + "spdx_license_key": "GPL-1.0-or-later", + "other_spdx_license_keys": [ + "GPL-1.0+", + "LicenseRef-GPL" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-1.0-plus.json", + "yaml": "gpl-1.0-plus.yml", + "html": "gpl-1.0-plus.html", + "license": "gpl-1.0-plus.LICENSE" + }, + { + "license_key": "gpl-2.0", + "category": "Copyleft", + "spdx_license_key": "GPL-2.0-only", + "other_spdx_license_keys": [ + "GPL-2.0", + "GPL 2.0", + "LicenseRef-GPL-2.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-2.0.json", + "yaml": "gpl-2.0.yml", + "html": "gpl-2.0.html", + "license": "gpl-2.0.LICENSE" + }, + { + "license_key": "gpl-2.0-adaptec", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gpl-2.0-adaptec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-2.0-adaptec.json", + "yaml": "gpl-2.0-adaptec.yml", + "html": "gpl-2.0-adaptec.html", + "license": "gpl-2.0-adaptec.LICENSE" + }, + { + "license_key": "gpl-2.0-autoconf", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-2.0-with-autoconf-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-autoconf.json", + "yaml": "gpl-2.0-autoconf.yml", + "html": "gpl-2.0-autoconf.html", + "license": "gpl-2.0-autoconf.LICENSE" + }, + { + "license_key": "gpl-2.0-autoopts", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-autoopts.json", + "yaml": "gpl-2.0-autoopts.yml", + "html": "gpl-2.0-autoopts.html", + "license": "gpl-2.0-autoopts.LICENSE" + }, + { + "license_key": "gpl-2.0-bison", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-bison.json", + "yaml": "gpl-2.0-bison.yml", + "html": "gpl-2.0-bison.html", + "license": "gpl-2.0-bison.LICENSE" + }, + { + "license_key": "gpl-2.0-bison-2.2", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-bison-2.2.json", + "yaml": "gpl-2.0-bison-2.2.yml", + "html": "gpl-2.0-bison-2.2.html", + "license": "gpl-2.0-bison-2.2.LICENSE" + }, + { + "license_key": "gpl-2.0-broadcom-linking", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-broadcom-linking.json", + "yaml": "gpl-2.0-broadcom-linking.yml", + "html": "gpl-2.0-broadcom-linking.html", + "license": "gpl-2.0-broadcom-linking.LICENSE" + }, + { + "license_key": "gpl-2.0-classpath", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-2.0-with-classpath-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-classpath.json", + "yaml": "gpl-2.0-classpath.yml", + "html": "gpl-2.0-classpath.html", + "license": "gpl-2.0-classpath.LICENSE" + }, + { + "license_key": "gpl-2.0-cygwin", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-cygwin.json", + "yaml": "gpl-2.0-cygwin.yml", + "html": "gpl-2.0-cygwin.html", + "license": "gpl-2.0-cygwin.LICENSE" + }, + { + "license_key": "gpl-2.0-djvu", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gpl-2.0-djvu", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-2.0-djvu.json", + "yaml": "gpl-2.0-djvu.yml", + "html": "gpl-2.0-djvu.html", + "license": "gpl-2.0-djvu.LICENSE" + }, + { + "license_key": "gpl-2.0-font", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-2.0-with-font-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-font.json", + "yaml": "gpl-2.0-font.yml", + "html": "gpl-2.0-font.html", + "license": "gpl-2.0-font.LICENSE" + }, + { + "license_key": "gpl-2.0-freertos", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-freertos.json", + "yaml": "gpl-2.0-freertos.yml", + "html": "gpl-2.0-freertos.html", + "license": "gpl-2.0-freertos.LICENSE" + }, + { + "license_key": "gpl-2.0-gcc", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-2.0-with-GCC-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-gcc.json", + "yaml": "gpl-2.0-gcc.yml", + "html": "gpl-2.0-gcc.html", + "license": "gpl-2.0-gcc.LICENSE" + }, + { + "license_key": "gpl-2.0-gcc-compiler-exception", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-gcc-compiler-exception.json", + "yaml": "gpl-2.0-gcc-compiler-exception.yml", + "html": "gpl-2.0-gcc-compiler-exception.html", + "license": "gpl-2.0-gcc-compiler-exception.LICENSE" + }, + { + "license_key": "gpl-2.0-glibc", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-glibc.json", + "yaml": "gpl-2.0-glibc.yml", + "html": "gpl-2.0-glibc.html", + "license": "gpl-2.0-glibc.LICENSE" + }, + { + "license_key": "gpl-2.0-guile", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-guile.json", + "yaml": "gpl-2.0-guile.yml", + "html": "gpl-2.0-guile.html", + "license": "gpl-2.0-guile.LICENSE" + }, + { + "license_key": "gpl-2.0-ice", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-ice.json", + "yaml": "gpl-2.0-ice.yml", + "html": "gpl-2.0-ice.html", + "license": "gpl-2.0-ice.LICENSE" + }, + { + "license_key": "gpl-2.0-independent-module-linking", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-independent-module-linking.json", + "yaml": "gpl-2.0-independent-module-linking.yml", + "html": "gpl-2.0-independent-module-linking.html", + "license": "gpl-2.0-independent-module-linking.LICENSE" + }, + { + "license_key": "gpl-2.0-iolib", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-iolib.json", + "yaml": "gpl-2.0-iolib.yml", + "html": "gpl-2.0-iolib.html", + "license": "gpl-2.0-iolib.LICENSE" + }, + { + "license_key": "gpl-2.0-iso-cpp", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-iso-cpp.json", + "yaml": "gpl-2.0-iso-cpp.yml", + "html": "gpl-2.0-iso-cpp.html", + "license": "gpl-2.0-iso-cpp.LICENSE" + }, + { + "license_key": "gpl-2.0-javascript", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-javascript.json", + "yaml": "gpl-2.0-javascript.yml", + "html": "gpl-2.0-javascript.html", + "license": "gpl-2.0-javascript.LICENSE" + }, + { + "license_key": "gpl-2.0-kernel", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-kernel.json", + "yaml": "gpl-2.0-kernel.yml", + "html": "gpl-2.0-kernel.html", + "license": "gpl-2.0-kernel.LICENSE" + }, + { + "license_key": "gpl-2.0-koterov", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gpl-2.0-koterov", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-2.0-koterov.json", + "yaml": "gpl-2.0-koterov.yml", + "html": "gpl-2.0-koterov.html", + "license": "gpl-2.0-koterov.LICENSE" + }, + { + "license_key": "gpl-2.0-libgit2", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-libgit2.json", + "yaml": "gpl-2.0-libgit2.yml", + "html": "gpl-2.0-libgit2.html", + "license": "gpl-2.0-libgit2.LICENSE" + }, + { + "license_key": "gpl-2.0-library", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-library.json", + "yaml": "gpl-2.0-library.yml", + "html": "gpl-2.0-library.html", + "license": "gpl-2.0-library.LICENSE" + }, + { + "license_key": "gpl-2.0-libtool", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-libtool.json", + "yaml": "gpl-2.0-libtool.yml", + "html": "gpl-2.0-libtool.html", + "license": "gpl-2.0-libtool.LICENSE" + }, + { + "license_key": "gpl-2.0-lmbench", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-lmbench.json", + "yaml": "gpl-2.0-lmbench.yml", + "html": "gpl-2.0-lmbench.html", + "license": "gpl-2.0-lmbench.LICENSE" + }, + { + "license_key": "gpl-2.0-mysql-connector-odbc", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-mysql-connector-odbc.json", + "yaml": "gpl-2.0-mysql-connector-odbc.yml", + "html": "gpl-2.0-mysql-connector-odbc.html", + "license": "gpl-2.0-mysql-connector-odbc.LICENSE" + }, + { + "license_key": "gpl-2.0-mysql-floss", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-mysql-floss.json", + "yaml": "gpl-2.0-mysql-floss.yml", + "html": "gpl-2.0-mysql-floss.html", + "license": "gpl-2.0-mysql-floss.LICENSE" + }, + { + "license_key": "gpl-2.0-openjdk", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-openjdk.json", + "yaml": "gpl-2.0-openjdk.yml", + "html": "gpl-2.0-openjdk.html", + "license": "gpl-2.0-openjdk.LICENSE" + }, + { + "license_key": "gpl-2.0-openssl", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-openssl.json", + "yaml": "gpl-2.0-openssl.yml", + "html": "gpl-2.0-openssl.html", + "license": "gpl-2.0-openssl.LICENSE" + }, + { + "license_key": "gpl-2.0-oracle-mysql-foss", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-oracle-mysql-foss.json", + "yaml": "gpl-2.0-oracle-mysql-foss.yml", + "html": "gpl-2.0-oracle-mysql-foss.html", + "license": "gpl-2.0-oracle-mysql-foss.LICENSE" + }, + { + "license_key": "gpl-2.0-oracle-openjdk", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-oracle-openjdk.json", + "yaml": "gpl-2.0-oracle-openjdk.yml", + "html": "gpl-2.0-oracle-openjdk.html", + "license": "gpl-2.0-oracle-openjdk.LICENSE" + }, + { + "license_key": "gpl-2.0-plus", + "category": "Copyleft", + "spdx_license_key": "GPL-2.0-or-later", + "other_spdx_license_keys": [ + "GPL-2.0+", + "GPL 2.0+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-2.0-plus.json", + "yaml": "gpl-2.0-plus.yml", + "html": "gpl-2.0-plus.html", + "license": "gpl-2.0-plus.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-ada", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-ada.json", + "yaml": "gpl-2.0-plus-ada.yml", + "html": "gpl-2.0-plus-ada.html", + "license": "gpl-2.0-plus-ada.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-ekiga", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-ekiga.json", + "yaml": "gpl-2.0-plus-ekiga.yml", + "html": "gpl-2.0-plus-ekiga.html", + "license": "gpl-2.0-plus-ekiga.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-gcc", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-gcc.json", + "yaml": "gpl-2.0-plus-gcc.yml", + "html": "gpl-2.0-plus-gcc.html", + "license": "gpl-2.0-plus-gcc.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-geoserver", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-geoserver.json", + "yaml": "gpl-2.0-plus-geoserver.yml", + "html": "gpl-2.0-plus-geoserver.html", + "license": "gpl-2.0-plus-geoserver.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-linking", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-linking.json", + "yaml": "gpl-2.0-plus-linking.yml", + "html": "gpl-2.0-plus-linking.html", + "license": "gpl-2.0-plus-linking.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-nant", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-nant.json", + "yaml": "gpl-2.0-plus-nant.yml", + "html": "gpl-2.0-plus-nant.html", + "license": "gpl-2.0-plus-nant.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-openmotif", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-openmotif.json", + "yaml": "gpl-2.0-plus-openmotif.yml", + "html": "gpl-2.0-plus-openmotif.html", + "license": "gpl-2.0-plus-openmotif.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-openssl", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-openssl.json", + "yaml": "gpl-2.0-plus-openssl.yml", + "html": "gpl-2.0-plus-openssl.html", + "license": "gpl-2.0-plus-openssl.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-sane", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-sane.json", + "yaml": "gpl-2.0-plus-sane.yml", + "html": "gpl-2.0-plus-sane.html", + "license": "gpl-2.0-plus-sane.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-subcommander", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-subcommander.json", + "yaml": "gpl-2.0-plus-subcommander.yml", + "html": "gpl-2.0-plus-subcommander.html", + "license": "gpl-2.0-plus-subcommander.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-syntext", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-syntext.json", + "yaml": "gpl-2.0-plus-syntext.yml", + "html": "gpl-2.0-plus-syntext.html", + "license": "gpl-2.0-plus-syntext.LICENSE" + }, + { + "license_key": "gpl-2.0-plus-upx", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-plus-upx.json", + "yaml": "gpl-2.0-plus-upx.yml", + "html": "gpl-2.0-plus-upx.html", + "license": "gpl-2.0-plus-upx.LICENSE" + }, + { + "license_key": "gpl-2.0-proguard", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-proguard.json", + "yaml": "gpl-2.0-proguard.yml", + "html": "gpl-2.0-proguard.html", + "license": "gpl-2.0-proguard.LICENSE" + }, + { + "license_key": "gpl-2.0-qt-qca", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-qt-qca.json", + "yaml": "gpl-2.0-qt-qca.yml", + "html": "gpl-2.0-qt-qca.html", + "license": "gpl-2.0-qt-qca.LICENSE" + }, + { + "license_key": "gpl-2.0-redhat", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-redhat.json", + "yaml": "gpl-2.0-redhat.yml", + "html": "gpl-2.0-redhat.html", + "license": "gpl-2.0-redhat.LICENSE" + }, + { + "license_key": "gpl-2.0-rrdtool-floss", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-rrdtool-floss.json", + "yaml": "gpl-2.0-rrdtool-floss.yml", + "html": "gpl-2.0-rrdtool-floss.html", + "license": "gpl-2.0-rrdtool-floss.LICENSE" + }, + { + "license_key": "gpl-2.0-uboot", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-2.0-uboot.json", + "yaml": "gpl-2.0-uboot.yml", + "html": "gpl-2.0-uboot.html", + "license": "gpl-2.0-uboot.LICENSE" + }, + { + "license_key": "gpl-3.0", + "category": "Copyleft", + "spdx_license_key": "GPL-3.0-only", + "other_spdx_license_keys": [ + "GPL-3.0", + "LicenseRef-gpl-3.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-3.0.json", + "yaml": "gpl-3.0.yml", + "html": "gpl-3.0.html", + "license": "gpl-3.0.LICENSE" + }, + { + "license_key": "gpl-3.0-aptana", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-aptana.json", + "yaml": "gpl-3.0-aptana.yml", + "html": "gpl-3.0-aptana.html", + "license": "gpl-3.0-aptana.LICENSE" + }, + { + "license_key": "gpl-3.0-autoconf", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-3.0-with-autoconf-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-autoconf.json", + "yaml": "gpl-3.0-autoconf.yml", + "html": "gpl-3.0-autoconf.html", + "license": "gpl-3.0-autoconf.LICENSE" + }, + { + "license_key": "gpl-3.0-bison", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-bison.json", + "yaml": "gpl-3.0-bison.yml", + "html": "gpl-3.0-bison.html", + "license": "gpl-3.0-bison.LICENSE" + }, + { + "license_key": "gpl-3.0-cygwin", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-cygwin.json", + "yaml": "gpl-3.0-cygwin.yml", + "html": "gpl-3.0-cygwin.html", + "license": "gpl-3.0-cygwin.LICENSE" + }, + { + "license_key": "gpl-3.0-font", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-font.json", + "yaml": "gpl-3.0-font.yml", + "html": "gpl-3.0-font.html", + "license": "gpl-3.0-font.LICENSE" + }, + { + "license_key": "gpl-3.0-gcc", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-3.0-with-GCC-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-gcc.json", + "yaml": "gpl-3.0-gcc.yml", + "html": "gpl-3.0-gcc.html", + "license": "gpl-3.0-gcc.LICENSE" + }, + { + "license_key": "gpl-3.0-interface-exception", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-3.0-interface-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gpl-3.0-interface-exception.json", + "yaml": "gpl-3.0-interface-exception.yml", + "html": "gpl-3.0-interface-exception.html", + "license": "gpl-3.0-interface-exception.LICENSE" + }, + { + "license_key": "gpl-3.0-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-3.0-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gpl-3.0-linking-exception.json", + "yaml": "gpl-3.0-linking-exception.yml", + "html": "gpl-3.0-linking-exception.html", + "license": "gpl-3.0-linking-exception.LICENSE" + }, + { + "license_key": "gpl-3.0-linking-source-exception", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-3.0-linking-source-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gpl-3.0-linking-source-exception.json", + "yaml": "gpl-3.0-linking-source-exception.yml", + "html": "gpl-3.0-linking-source-exception.html", + "license": "gpl-3.0-linking-source-exception.LICENSE" + }, + { + "license_key": "gpl-3.0-openbd", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-openbd.json", + "yaml": "gpl-3.0-openbd.yml", + "html": "gpl-3.0-openbd.html", + "license": "gpl-3.0-openbd.LICENSE" + }, + { + "license_key": "gpl-3.0-plus", + "category": "Copyleft", + "spdx_license_key": "GPL-3.0-or-later", + "other_spdx_license_keys": [ + "GPL-3.0+", + "LicenseRef-GPL-3.0-or-later" + ], + "is_exception": false, + "is_deprecated": false, + "json": "gpl-3.0-plus.json", + "yaml": "gpl-3.0-plus.yml", + "html": "gpl-3.0-plus.html", + "license": "gpl-3.0-plus.LICENSE" + }, + { + "license_key": "gpl-3.0-plus-openssl", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "gpl-3.0-plus-openssl.json", + "yaml": "gpl-3.0-plus-openssl.yml", + "html": "gpl-3.0-plus-openssl.html", + "license": "gpl-3.0-plus-openssl.LICENSE" + }, + { + "license_key": "gpl-generic-additional-terms", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gpl-generic-additional-terms", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gpl-generic-additional-terms.json", + "yaml": "gpl-generic-additional-terms.yml", + "html": "gpl-generic-additional-terms.html", + "license": "gpl-generic-additional-terms.LICENSE" + }, + { + "license_key": "gplcc-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "GPL-CC-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gplcc-1.0.json", + "yaml": "gplcc-1.0.yml", + "html": "gplcc-1.0.html", + "license": "gplcc-1.0.LICENSE" + }, + { + "license_key": "gradle-enterprise-sla-2022-11-08", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-gradle-enterprise-sla-2022-11-", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gradle-enterprise-sla-2022-11-08.json", + "yaml": "gradle-enterprise-sla-2022-11-08.yml", + "html": "gradle-enterprise-sla-2022-11-08.html", + "license": "gradle-enterprise-sla-2022-11-08.LICENSE" + }, + { + "license_key": "gradle-tou-2022-01-13", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-gradle-tou-2022-01-13", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gradle-tou-2022-01-13.json", + "yaml": "gradle-tou-2022-01-13.yml", + "html": "gradle-tou-2022-01-13.html", + "license": "gradle-tou-2022-01-13.LICENSE" + }, + { + "license_key": "graphics-gems", + "category": "Permissive", + "spdx_license_key": "Graphics-Gems", + "other_spdx_license_keys": [ + "LicenseRef-scancode-graphics-gems" + ], + "is_exception": false, + "is_deprecated": false, + "json": "graphics-gems.json", + "yaml": "graphics-gems.yml", + "html": "graphics-gems.html", + "license": "graphics-gems.LICENSE" + }, + { + "license_key": "greg-roelofs", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-greg-roelofs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "greg-roelofs.json", + "yaml": "greg-roelofs.yml", + "html": "greg-roelofs.html", + "license": "greg-roelofs.LICENSE" + }, + { + "license_key": "gregory-pietsch", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gregory-pietsch", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gregory-pietsch.json", + "yaml": "gregory-pietsch.yml", + "html": "gregory-pietsch.html", + "license": "gregory-pietsch.LICENSE" + }, + { + "license_key": "gsoap-1.3a", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-gsoap-1.3a", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gsoap-1.3a.json", + "yaml": "gsoap-1.3a.yml", + "html": "gsoap-1.3a.html", + "license": "gsoap-1.3a.LICENSE" + }, + { + "license_key": "gsoap-1.3b", + "category": "Copyleft Limited", + "spdx_license_key": "gSOAP-1.3b", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gsoap-1.3b.json", + "yaml": "gsoap-1.3b.yml", + "html": "gsoap-1.3b.html", + "license": "gsoap-1.3b.LICENSE" + }, + { + "license_key": "gstreamer-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-gstreamer-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gstreamer-exception-2.0.json", + "yaml": "gstreamer-exception-2.0.yml", + "html": "gstreamer-exception-2.0.html", + "license": "gstreamer-exception-2.0.LICENSE" + }, + { + "license_key": "gstreamer-exception-2005", + "category": "Permissive", + "spdx_license_key": "GStreamer-exception-2005", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gstreamer-exception-2005.json", + "yaml": "gstreamer-exception-2005.yml", + "html": "gstreamer-exception-2005.html", + "license": "gstreamer-exception-2005.LICENSE" + }, + { + "license_key": "gstreamer-exception-2008", + "category": "Permissive", + "spdx_license_key": "GStreamer-exception-2008", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "gstreamer-exception-2008.json", + "yaml": "gstreamer-exception-2008.yml", + "html": "gstreamer-exception-2008.html", + "license": "gstreamer-exception-2008.LICENSE" + }, + { + "license_key": "gtkbook", + "category": "Permissive", + "spdx_license_key": "gtkbook", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gtkbook.json", + "yaml": "gtkbook.yml", + "html": "gtkbook.html", + "license": "gtkbook.LICENSE" + }, + { + "license_key": "gtpl-v1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gtpl-v1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gtpl-v1.json", + "yaml": "gtpl-v1.yml", + "html": "gtpl-v1.html", + "license": "gtpl-v1.LICENSE" + }, + { + "license_key": "gtpl-v2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gtpl-v2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gtpl-v2.json", + "yaml": "gtpl-v2.yml", + "html": "gtpl-v2.html", + "license": "gtpl-v2.LICENSE" + }, + { + "license_key": "gtpl-v3", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-gtpl-v3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gtpl-v3.json", + "yaml": "gtpl-v3.yml", + "html": "gtpl-v3.html", + "license": "gtpl-v3.LICENSE" + }, + { + "license_key": "guile-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-guile-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "guile-exception-2.0.json", + "yaml": "guile-exception-2.0.yml", + "html": "guile-exception-2.0.html", + "license": "guile-exception-2.0.LICENSE" + }, + { + "license_key": "gust-font-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gust-font-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gust-font-1.0.json", + "yaml": "gust-font-1.0.yml", + "html": "gust-font-1.0.html", + "license": "gust-font-1.0.LICENSE" + }, + { + "license_key": "gust-font-2006-09-30", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-gust-font-2006-09-30", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gust-font-2006-09-30.json", + "yaml": "gust-font-2006-09-30.yml", + "html": "gust-font-2006-09-30.html", + "license": "gust-font-2006-09-30.LICENSE" + }, + { + "license_key": "gutenberg-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-gutenberg-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "gutenberg-2020.json", + "yaml": "gutenberg-2020.yml", + "html": "gutenberg-2020.html", + "license": "gutenberg-2020.LICENSE" + }, + { + "license_key": "h2-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-h2-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "h2-1.0.json", + "yaml": "h2-1.0.yml", + "html": "h2-1.0.html", + "license": "h2-1.0.LICENSE" + }, + { + "license_key": "hacking-license", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-hacking-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hacking-license.json", + "yaml": "hacking-license.yml", + "html": "hacking-license.html", + "license": "hacking-license.LICENSE" + }, + { + "license_key": "hacos-1.2", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-hacos-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hacos-1.2.json", + "yaml": "hacos-1.2.yml", + "html": "hacos-1.2.html", + "license": "hacos-1.2.LICENSE" + }, + { + "license_key": "happy-bunny", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-happy-bunny", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "happy-bunny.json", + "yaml": "happy-bunny.yml", + "html": "happy-bunny.html", + "license": "happy-bunny.LICENSE" + }, + { + "license_key": "haskell-report", + "category": "Permissive", + "spdx_license_key": "HaskellReport", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "haskell-report.json", + "yaml": "haskell-report.yml", + "html": "haskell-report.html", + "license": "haskell-report.LICENSE" + }, + { + "license_key": "hauppauge-firmware-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hauppauge-firmware-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hauppauge-firmware-eula.json", + "yaml": "hauppauge-firmware-eula.yml", + "html": "hauppauge-firmware-eula.html", + "license": "hauppauge-firmware-eula.LICENSE" + }, + { + "license_key": "hauppauge-firmware-oem", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hauppauge-firmware-oem", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hauppauge-firmware-oem.json", + "yaml": "hauppauge-firmware-oem.yml", + "html": "hauppauge-firmware-oem.html", + "license": "hauppauge-firmware-oem.LICENSE" + }, + { + "license_key": "hazelcast-community-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-hazelcast-community-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hazelcast-community-1.0.json", + "yaml": "hazelcast-community-1.0.yml", + "html": "hazelcast-community-1.0.html", + "license": "hazelcast-community-1.0.LICENSE" + }, + { + "license_key": "hdf4", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-hdf4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hdf4.json", + "yaml": "hdf4.yml", + "html": "hdf4.html", + "license": "hdf4.LICENSE" + }, + { + "license_key": "hdf5", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-hdf5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hdf5.json", + "yaml": "hdf5.yml", + "html": "hdf5.html", + "license": "hdf5.LICENSE" + }, + { + "license_key": "hdparm", + "category": "Permissive", + "spdx_license_key": "hdparm", + "other_spdx_license_keys": [ + "LicenseRef-scancode-hdparm" + ], + "is_exception": false, + "is_deprecated": false, + "json": "hdparm.json", + "yaml": "hdparm.yml", + "html": "hdparm.html", + "license": "hdparm.LICENSE" + }, + { + "license_key": "helios-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-helios-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "helios-eula.json", + "yaml": "helios-eula.yml", + "html": "helios-eula.html", + "license": "helios-eula.LICENSE" + }, + { + "license_key": "helix", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-helix", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "helix.json", + "yaml": "helix.yml", + "html": "helix.html", + "license": "helix.LICENSE" + }, + { + "license_key": "henry-spencer-1999", + "category": "Permissive", + "spdx_license_key": "Spencer-99", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "henry-spencer-1999.json", + "yaml": "henry-spencer-1999.yml", + "html": "henry-spencer-1999.html", + "license": "henry-spencer-1999.LICENSE" + }, + { + "license_key": "here-disclaimer", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-here-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "here-disclaimer.json", + "yaml": "here-disclaimer.yml", + "html": "here-disclaimer.html", + "license": "here-disclaimer.LICENSE" + }, + { + "license_key": "here-proprietary", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-here-proprietary", + "other_spdx_license_keys": [ + "LicenseRef-Proprietary-HERE" + ], + "is_exception": false, + "is_deprecated": false, + "json": "here-proprietary.json", + "yaml": "here-proprietary.yml", + "html": "here-proprietary.html", + "license": "here-proprietary.LICENSE" + }, + { + "license_key": "hessla", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hessla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hessla.json", + "yaml": "hessla.yml", + "html": "hessla.html", + "license": "hessla.LICENSE" + }, + { + "license_key": "hfoil-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-hfoil-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hfoil-1.0.json", + "yaml": "hfoil-1.0.yml", + "html": "hfoil-1.0.html", + "license": "hfoil-1.0.LICENSE" + }, + { + "license_key": "hidapi", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-hidapi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hidapi.json", + "yaml": "hidapi.yml", + "html": "hidapi.html", + "license": "hidapi.LICENSE" + }, + { + "license_key": "hippocratic-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-hippocratic-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hippocratic-1.0.json", + "yaml": "hippocratic-1.0.yml", + "html": "hippocratic-1.0.html", + "license": "hippocratic-1.0.LICENSE" + }, + { + "license_key": "hippocratic-1.1", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-hippocratic-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hippocratic-1.1.json", + "yaml": "hippocratic-1.1.yml", + "html": "hippocratic-1.1.html", + "license": "hippocratic-1.1.LICENSE" + }, + { + "license_key": "hippocratic-1.2", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-hippocratic-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hippocratic-1.2.json", + "yaml": "hippocratic-1.2.yml", + "html": "hippocratic-1.2.html", + "license": "hippocratic-1.2.LICENSE" + }, + { + "license_key": "hippocratic-2.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-hippocratic-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hippocratic-2.0.json", + "yaml": "hippocratic-2.0.yml", + "html": "hippocratic-2.0.html", + "license": "hippocratic-2.0.LICENSE" + }, + { + "license_key": "hippocratic-2.1", + "category": "Free Restricted", + "spdx_license_key": "Hippocratic-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hippocratic-2.1.json", + "yaml": "hippocratic-2.1.yml", + "html": "hippocratic-2.1.html", + "license": "hippocratic-2.1.LICENSE" + }, + { + "license_key": "hippocratic-3.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-Hippocratic-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hippocratic-3.0.json", + "yaml": "hippocratic-3.0.yml", + "html": "hippocratic-3.0.html", + "license": "hippocratic-3.0.LICENSE" + }, + { + "license_key": "historical", + "category": "Permissive", + "spdx_license_key": "HPND", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "historical.json", + "yaml": "historical.yml", + "html": "historical.html", + "license": "historical.LICENSE" + }, + { + "license_key": "historical-ntp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-historical-ntp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "historical-ntp.json", + "yaml": "historical-ntp.yml", + "html": "historical-ntp.html", + "license": "historical-ntp.LICENSE" + }, + { + "license_key": "historical-sell-variant", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "historical-sell-variant.json", + "yaml": "historical-sell-variant.yml", + "html": "historical-sell-variant.html", + "license": "historical-sell-variant.LICENSE" + }, + { + "license_key": "homebrewed", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-homebrewed", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "homebrewed.json", + "yaml": "homebrewed.yml", + "html": "homebrewed.html", + "license": "homebrewed.LICENSE" + }, + { + "license_key": "hot-potato", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-hot-potato", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "hot-potato.json", + "yaml": "hot-potato.yml", + "html": "hot-potato.html", + "license": "hot-potato.LICENSE" + }, + { + "license_key": "houdini-project", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-houdini", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "houdini-project.json", + "yaml": "houdini-project.yml", + "html": "houdini-project.html", + "license": "houdini-project.LICENSE" + }, + { + "license_key": "hp", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp.json", + "yaml": "hp.yml", + "html": "hp.html", + "license": "hp.LICENSE" + }, + { + "license_key": "hp-1986", + "category": "Permissive", + "spdx_license_key": "HP-1986", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-1986.json", + "yaml": "hp-1986.yml", + "html": "hp-1986.html", + "license": "hp-1986.LICENSE" + }, + { + "license_key": "hp-enterprise-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hp-enterprise-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-enterprise-eula.json", + "yaml": "hp-enterprise-eula.yml", + "html": "hp-enterprise-eula.html", + "license": "hp-enterprise-eula.LICENSE" + }, + { + "license_key": "hp-netperf", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-hp-netperf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-netperf.json", + "yaml": "hp-netperf.yml", + "html": "hp-netperf.html", + "license": "hp-netperf.LICENSE" + }, + { + "license_key": "hp-proliant-essentials", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-hp-proliant-essentials", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-proliant-essentials.json", + "yaml": "hp-proliant-essentials.yml", + "html": "hp-proliant-essentials.html", + "license": "hp-proliant-essentials.LICENSE" + }, + { + "license_key": "hp-snmp-pp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-hp-snmp-pp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-snmp-pp.json", + "yaml": "hp-snmp-pp.yml", + "html": "hp-snmp-pp.html", + "license": "hp-snmp-pp.LICENSE" + }, + { + "license_key": "hp-software-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hp-software-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-software-eula.json", + "yaml": "hp-software-eula.yml", + "html": "hp-software-eula.html", + "license": "hp-software-eula.LICENSE" + }, + { + "license_key": "hp-ux-java", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hp-ux-java", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-ux-java.json", + "yaml": "hp-ux-java.yml", + "html": "hp-ux-java.html", + "license": "hp-ux-java.LICENSE" + }, + { + "license_key": "hp-ux-jre", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hp-ux-jre", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hp-ux-jre.json", + "yaml": "hp-ux-jre.yml", + "html": "hp-ux-jre.html", + "license": "hp-ux-jre.LICENSE" + }, + { + "license_key": "hpnd-doc", + "category": "Permissive", + "spdx_license_key": "HPND-doc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-doc.json", + "yaml": "hpnd-doc.yml", + "html": "hpnd-doc.html", + "license": "hpnd-doc.LICENSE" + }, + { + "license_key": "hpnd-doc-sell", + "category": "Permissive", + "spdx_license_key": "HPND-doc-sell", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-doc-sell.json", + "yaml": "hpnd-doc-sell.yml", + "html": "hpnd-doc-sell.html", + "license": "hpnd-doc-sell.LICENSE" + }, + { + "license_key": "hpnd-export-us", + "category": "Free Restricted", + "spdx_license_key": "HPND-export-US", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-export-us.json", + "yaml": "hpnd-export-us.yml", + "html": "hpnd-export-us.html", + "license": "hpnd-export-us.LICENSE" + }, + { + "license_key": "hpnd-fenneberg-livingston", + "category": "Permissive", + "spdx_license_key": "HPND-Fenneberg-Livingston", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-fenneberg-livingston.json", + "yaml": "hpnd-fenneberg-livingston.yml", + "html": "hpnd-fenneberg-livingston.html", + "license": "hpnd-fenneberg-livingston.LICENSE" + }, + { + "license_key": "hpnd-inria-imag", + "category": "Permissive", + "spdx_license_key": "HPND-INRIA-IMAG", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-inria-imag.json", + "yaml": "hpnd-inria-imag.yml", + "html": "hpnd-inria-imag.html", + "license": "hpnd-inria-imag.LICENSE" + }, + { + "license_key": "hpnd-mit-disclaimer", + "category": "Permissive", + "spdx_license_key": "HPND-MIT-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-mit-disclaimer.json", + "yaml": "hpnd-mit-disclaimer.yml", + "html": "hpnd-mit-disclaimer.html", + "license": "hpnd-mit-disclaimer.LICENSE" + }, + { + "license_key": "hpnd-pbmplus", + "category": "Permissive", + "spdx_license_key": "HPND-Pbmplus", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-pbmplus.json", + "yaml": "hpnd-pbmplus.yml", + "html": "hpnd-pbmplus.html", + "license": "hpnd-pbmplus.LICENSE" + }, + { + "license_key": "hpnd-sell-mit-disclaimer-xserver", + "category": "Permissive", + "spdx_license_key": "HPND-sell-MIT-disclaimer-xserver", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-sell-mit-disclaimer-xserver.json", + "yaml": "hpnd-sell-mit-disclaimer-xserver.yml", + "html": "hpnd-sell-mit-disclaimer-xserver.html", + "license": "hpnd-sell-mit-disclaimer-xserver.LICENSE" + }, + { + "license_key": "hpnd-sell-regexpr", + "category": "Permissive", + "spdx_license_key": "HPND-sell-regexpr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-sell-regexpr.json", + "yaml": "hpnd-sell-regexpr.yml", + "html": "hpnd-sell-regexpr.html", + "license": "hpnd-sell-regexpr.LICENSE" + }, + { + "license_key": "hpnd-sell-variant-mit-disclaimer", + "category": "Permissive", + "spdx_license_key": "HPND-sell-variant-MIT-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-sell-variant-mit-disclaimer.json", + "yaml": "hpnd-sell-variant-mit-disclaimer.yml", + "html": "hpnd-sell-variant-mit-disclaimer.html", + "license": "hpnd-sell-variant-mit-disclaimer.LICENSE" + }, + { + "license_key": "hpnd-uc", + "category": "Permissive", + "spdx_license_key": "HPND-UC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hpnd-uc.json", + "yaml": "hpnd-uc.yml", + "html": "hpnd-uc.html", + "license": "hpnd-uc.LICENSE" + }, + { + "license_key": "hs-regexp", + "category": "Permissive", + "spdx_license_key": "Spencer-94", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hs-regexp.json", + "yaml": "hs-regexp.yml", + "html": "hs-regexp.html", + "license": "hs-regexp.LICENSE" + }, + { + "license_key": "hs-regexp-orig", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "hs-regexp-orig.json", + "yaml": "hs-regexp-orig.yml", + "html": "hs-regexp-orig.html", + "license": "hs-regexp-orig.LICENSE" + }, + { + "license_key": "html5", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-html5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "html5.json", + "yaml": "html5.yml", + "html": "html5.html", + "license": "html5.LICENSE" + }, + { + "license_key": "httpget", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-httpget", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "httpget.json", + "yaml": "httpget.yml", + "html": "httpget.html", + "license": "httpget.LICENSE" + }, + { + "license_key": "huggingface-tos-20220915", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-huggingface-tos-20220915", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "huggingface-tos-20220915.json", + "yaml": "huggingface-tos-20220915.yml", + "html": "huggingface-tos-20220915.html", + "license": "huggingface-tos-20220915.LICENSE" + }, + { + "license_key": "hugo", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-hugo", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hugo.json", + "yaml": "hugo.yml", + "html": "hugo.html", + "license": "hugo.LICENSE" + }, + { + "license_key": "hxd", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-hxd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "hxd.json", + "yaml": "hxd.yml", + "html": "hxd.html", + "license": "hxd.LICENSE" + }, + { + "license_key": "i2p-gpl-java-exception", + "category": "Copyleft Limited", + "spdx_license_key": "i2p-gpl-java-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "i2p-gpl-java-exception.json", + "yaml": "i2p-gpl-java-exception.yml", + "html": "i2p-gpl-java-exception.html", + "license": "i2p-gpl-java-exception.LICENSE" + }, + { + "license_key": "ian-kaplan", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ian-kaplan", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ian-kaplan.json", + "yaml": "ian-kaplan.yml", + "html": "ian-kaplan.html", + "license": "ian-kaplan.LICENSE" + }, + { + "license_key": "ian-piumarta", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ian-piumarta", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ian-piumarta.json", + "yaml": "ian-piumarta.yml", + "html": "ian-piumarta.html", + "license": "ian-piumarta.LICENSE" + }, + { + "license_key": "ibm-as-is", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-as-is", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-as-is.json", + "yaml": "ibm-as-is.yml", + "html": "ibm-as-is.html", + "license": "ibm-as-is.LICENSE" + }, + { + "license_key": "ibm-data-server-2011", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ibm-data-server-2011", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-data-server-2011.json", + "yaml": "ibm-data-server-2011.yml", + "html": "ibm-data-server-2011.html", + "license": "ibm-data-server-2011.LICENSE" + }, + { + "license_key": "ibm-developerworks-community-download", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ibm-developerworks-community", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ibm-developerworks-community-download" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-developerworks-community-download.json", + "yaml": "ibm-developerworks-community-download.yml", + "html": "ibm-developerworks-community-download.html", + "license": "ibm-developerworks-community-download.LICENSE" + }, + { + "license_key": "ibm-dhcp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-dhcp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-dhcp.json", + "yaml": "ibm-dhcp.yml", + "html": "ibm-dhcp.html", + "license": "ibm-dhcp.LICENSE" + }, + { + "license_key": "ibm-employee-written", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ibm-employee-written", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-employee-written.json", + "yaml": "ibm-employee-written.yml", + "html": "ibm-employee-written.html", + "license": "ibm-employee-written.LICENSE" + }, + { + "license_key": "ibm-glextrusion", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-glextrusion", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-glextrusion.json", + "yaml": "ibm-glextrusion.yml", + "html": "ibm-glextrusion.html", + "license": "ibm-glextrusion.LICENSE" + }, + { + "license_key": "ibm-icu", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-icu", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-icu.json", + "yaml": "ibm-icu.yml", + "html": "ibm-icu.html", + "license": "ibm-icu.LICENSE" + }, + { + "license_key": "ibm-java-portlet-spec-2.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-java-portlet-spec-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-java-portlet-spec-2.0.json", + "yaml": "ibm-java-portlet-spec-2.0.yml", + "html": "ibm-java-portlet-spec-2.0.html", + "license": "ibm-java-portlet-spec-2.0.LICENSE" + }, + { + "license_key": "ibm-jre", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ibm-jre", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-jre.json", + "yaml": "ibm-jre.yml", + "html": "ibm-jre.html", + "license": "ibm-jre.LICENSE" + }, + { + "license_key": "ibm-nwsc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-nwsc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-nwsc.json", + "yaml": "ibm-nwsc.yml", + "html": "ibm-nwsc.html", + "license": "ibm-nwsc.LICENSE" + }, + { + "license_key": "ibm-pibs", + "category": "Permissive", + "spdx_license_key": "IBM-pibs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-pibs.json", + "yaml": "ibm-pibs.yml", + "html": "ibm-pibs.html", + "license": "ibm-pibs.LICENSE" + }, + { + "license_key": "ibm-sample", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibm-sample", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibm-sample.json", + "yaml": "ibm-sample.yml", + "html": "ibm-sample.html", + "license": "ibm-sample.LICENSE" + }, + { + "license_key": "ibmpl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "IPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibmpl-1.0.json", + "yaml": "ibmpl-1.0.yml", + "html": "ibmpl-1.0.html", + "license": "ibmpl-1.0.LICENSE" + }, + { + "license_key": "ibpp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ibpp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ibpp.json", + "yaml": "ibpp.yml", + "html": "ibpp.html", + "license": "ibpp.LICENSE" + }, + { + "license_key": "ic-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-ic-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ic-1.0.json", + "yaml": "ic-1.0.yml", + "html": "ic-1.0.html", + "license": "ic-1.0.LICENSE" + }, + { + "license_key": "ic-shared-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-ic-shared-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ic-shared-1.0.json", + "yaml": "ic-shared-1.0.yml", + "html": "ic-shared-1.0.html", + "license": "ic-shared-1.0.LICENSE" + }, + { + "license_key": "icann-public", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-icann-public", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "icann-public.json", + "yaml": "icann-public.yml", + "html": "icann-public.html", + "license": "icann-public.LICENSE" + }, + { + "license_key": "ice-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-ice-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ice-exception-2.0.json", + "yaml": "ice-exception-2.0.yml", + "html": "ice-exception-2.0.html", + "license": "ice-exception-2.0.LICENSE" + }, + { + "license_key": "icot-free", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-icot-free", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "icot-free.json", + "yaml": "icot-free.yml", + "html": "icot-free.html", + "license": "icot-free.LICENSE" + }, + { + "license_key": "idt-notice", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-idt-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "idt-notice.json", + "yaml": "idt-notice.yml", + "html": "idt-notice.html", + "license": "idt-notice.LICENSE" + }, + { + "license_key": "iec-code-components-eula", + "category": "Permissive", + "spdx_license_key": "IEC-Code-Components-EULA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "iec-code-components-eula.json", + "yaml": "iec-code-components-eula.yml", + "html": "iec-code-components-eula.html", + "license": "iec-code-components-eula.LICENSE" + }, + { + "license_key": "ietf", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ietf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ietf.json", + "yaml": "ietf.yml", + "html": "ietf.html", + "license": "ietf.LICENSE" + }, + { + "license_key": "ietf-trust", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ietf-trust", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ietf-trust.json", + "yaml": "ietf-trust.yml", + "html": "ietf-trust.html", + "license": "ietf-trust.LICENSE" + }, + { + "license_key": "ijg", + "category": "Permissive", + "spdx_license_key": "IJG", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ijg.json", + "yaml": "ijg.yml", + "html": "ijg.html", + "license": "ijg.LICENSE" + }, + { + "license_key": "ijg-short", + "category": "Permissive", + "spdx_license_key": "IJG-short", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ijg-short.json", + "yaml": "ijg-short.yml", + "html": "ijg-short.html", + "license": "ijg-short.LICENSE" + }, + { + "license_key": "ilmid", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ilmid", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ilmid.json", + "yaml": "ilmid.yml", + "html": "ilmid.html", + "license": "ilmid.LICENSE" + }, + { + "license_key": "imagemagick", + "category": "Permissive", + "spdx_license_key": "ImageMagick", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "imagemagick.json", + "yaml": "imagemagick.yml", + "html": "imagemagick.html", + "license": "imagemagick.LICENSE" + }, + { + "license_key": "imagen", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-imagen", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "imagen.json", + "yaml": "imagen.yml", + "html": "imagen.html", + "license": "imagen.LICENSE" + }, + { + "license_key": "imlib2", + "category": "Copyleft Limited", + "spdx_license_key": "Imlib2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "imlib2.json", + "yaml": "imlib2.yml", + "html": "imlib2.html", + "license": "imlib2.LICENSE" + }, + { + "license_key": "independent-module-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-indie-module-linking-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-independent-module-linking-exception" + ], + "is_exception": true, + "is_deprecated": false, + "json": "independent-module-linking-exception.json", + "yaml": "independent-module-linking-exception.yml", + "html": "independent-module-linking-exception.html", + "license": "independent-module-linking-exception.LICENSE" + }, + { + "license_key": "indiana-extreme", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-indiana-extreme", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "indiana-extreme.json", + "yaml": "indiana-extreme.yml", + "html": "indiana-extreme.html", + "license": "indiana-extreme.LICENSE" + }, + { + "license_key": "indiana-extreme-1.2", + "category": "Permissive", + "spdx_license_key": "xpp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "indiana-extreme-1.2.json", + "yaml": "indiana-extreme-1.2.yml", + "html": "indiana-extreme-1.2.html", + "license": "indiana-extreme-1.2.LICENSE" + }, + { + "license_key": "infineon-free", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-infineon-free", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "infineon-free.json", + "yaml": "infineon-free.yml", + "html": "infineon-free.html", + "license": "infineon-free.LICENSE" + }, + { + "license_key": "info-zip", + "category": "Permissive", + "spdx_license_key": "Info-ZIP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip.json", + "yaml": "info-zip.yml", + "html": "info-zip.html", + "license": "info-zip.LICENSE" + }, + { + "license_key": "info-zip-1997-10", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-1997-10", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-1997-10.json", + "yaml": "info-zip-1997-10.yml", + "html": "info-zip-1997-10.html", + "license": "info-zip-1997-10.LICENSE" + }, + { + "license_key": "info-zip-2001-01", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2001-01", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2001-01.json", + "yaml": "info-zip-2001-01.yml", + "html": "info-zip-2001-01.html", + "license": "info-zip-2001-01.LICENSE" + }, + { + "license_key": "info-zip-2002-02", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2002-02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2002-02.json", + "yaml": "info-zip-2002-02.yml", + "html": "info-zip-2002-02.html", + "license": "info-zip-2002-02.LICENSE" + }, + { + "license_key": "info-zip-2003-05", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2003-05", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2003-05.json", + "yaml": "info-zip-2003-05.yml", + "html": "info-zip-2003-05.html", + "license": "info-zip-2003-05.LICENSE" + }, + { + "license_key": "info-zip-2004-05", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2004-05", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2004-05.json", + "yaml": "info-zip-2004-05.yml", + "html": "info-zip-2004-05.html", + "license": "info-zip-2004-05.LICENSE" + }, + { + "license_key": "info-zip-2005-02", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2005-02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2005-02.json", + "yaml": "info-zip-2005-02.yml", + "html": "info-zip-2005-02.html", + "license": "info-zip-2005-02.LICENSE" + }, + { + "license_key": "info-zip-2007-03", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2007-03", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2007-03.json", + "yaml": "info-zip-2007-03.yml", + "html": "info-zip-2007-03.html", + "license": "info-zip-2007-03.LICENSE" + }, + { + "license_key": "info-zip-2009-01", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-info-zip-2009-01", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "info-zip-2009-01.json", + "yaml": "info-zip-2009-01.yml", + "html": "info-zip-2009-01.html", + "license": "info-zip-2009-01.LICENSE" + }, + { + "license_key": "infonode-1.1", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-infonode-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "infonode-1.1.json", + "yaml": "infonode-1.1.yml", + "html": "infonode-1.1.html", + "license": "infonode-1.1.LICENSE" + }, + { + "license_key": "initial-developer-public", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-initial-developer-public", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "initial-developer-public.json", + "yaml": "initial-developer-public.yml", + "html": "initial-developer-public.html", + "license": "initial-developer-public.LICENSE" + }, + { + "license_key": "inner-net-2.0", + "category": "Permissive", + "spdx_license_key": "Inner-Net-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-inner-net-2.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "inner-net-2.0.json", + "yaml": "inner-net-2.0.yml", + "html": "inner-net-2.0.html", + "license": "inner-net-2.0.LICENSE" + }, + { + "license_key": "inno-setup", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-inno-setup", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "inno-setup.json", + "yaml": "inno-setup.yml", + "html": "inno-setup.html", + "license": "inno-setup.LICENSE" + }, + { + "license_key": "inria-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "QPL-1.0-INRIA-2004-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-inria-linking-exception" + ], + "is_exception": true, + "is_deprecated": false, + "json": "inria-linking-exception.json", + "yaml": "inria-linking-exception.yml", + "html": "inria-linking-exception.html", + "license": "inria-linking-exception.LICENSE" + }, + { + "license_key": "installsite", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-installsite", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "installsite.json", + "yaml": "installsite.yml", + "html": "installsite.html", + "license": "installsite.LICENSE" + }, + { + "license_key": "intel", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel.json", + "yaml": "intel.yml", + "html": "intel.html", + "license": "intel.LICENSE" + }, + { + "license_key": "intel-acpi", + "category": "Permissive", + "spdx_license_key": "Intel-ACPI", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-acpi.json", + "yaml": "intel-acpi.yml", + "html": "intel-acpi.html", + "license": "intel-acpi.LICENSE" + }, + { + "license_key": "intel-bcl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-bcl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-bcl.json", + "yaml": "intel-bcl.yml", + "html": "intel-bcl.html", + "license": "intel-bcl.LICENSE" + }, + { + "license_key": "intel-bsd", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-acpica", + "other_spdx_license_keys": [ + "LicenseRef-scancode-intel-bsd" + ], + "is_exception": false, + "is_deprecated": false, + "json": "intel-bsd.json", + "yaml": "intel-bsd.yml", + "html": "intel-bsd.html", + "license": "intel-bsd.LICENSE" + }, + { + "license_key": "intel-bsd-2-clause", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-intel-bsd-2-clause", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-bsd-2-clause.json", + "yaml": "intel-bsd-2-clause.yml", + "html": "intel-bsd-2-clause.html", + "license": "intel-bsd-2-clause.LICENSE" + }, + { + "license_key": "intel-bsd-export-control", + "category": "Permissive", + "spdx_license_key": "Intel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-bsd-export-control.json", + "yaml": "intel-bsd-export-control.yml", + "html": "intel-bsd-export-control.html", + "license": "intel-bsd-export-control.LICENSE" + }, + { + "license_key": "intel-code-samples", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-code-samples", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-code-samples.json", + "yaml": "intel-code-samples.yml", + "html": "intel-code-samples.html", + "license": "intel-code-samples.LICENSE" + }, + { + "license_key": "intel-confidential", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-intel-confidential", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-confidential.json", + "yaml": "intel-confidential.yml", + "html": "intel-confidential.html", + "license": "intel-confidential.LICENSE" + }, + { + "license_key": "intel-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-firmware.json", + "yaml": "intel-firmware.yml", + "html": "intel-firmware.html", + "license": "intel-firmware.LICENSE" + }, + { + "license_key": "intel-master-eula-sw-dev-2016", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-master-eula-sw-dev-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-master-eula-sw-dev-2016.json", + "yaml": "intel-master-eula-sw-dev-2016.yml", + "html": "intel-master-eula-sw-dev-2016.html", + "license": "intel-master-eula-sw-dev-2016.LICENSE" + }, + { + "license_key": "intel-material", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-intel-material", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-material.json", + "yaml": "intel-material.yml", + "html": "intel-material.html", + "license": "intel-material.LICENSE" + }, + { + "license_key": "intel-mcu-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-mcu-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-mcu-2018.json", + "yaml": "intel-mcu-2018.yml", + "html": "intel-mcu-2018.html", + "license": "intel-mcu-2018.LICENSE" + }, + { + "license_key": "intel-microcode", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-microcode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-microcode.json", + "yaml": "intel-microcode.yml", + "html": "intel-microcode.html", + "license": "intel-microcode.LICENSE" + }, + { + "license_key": "intel-osl-1989", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-intel-osl-1989", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-osl-1989.json", + "yaml": "intel-osl-1989.yml", + "html": "intel-osl-1989.html", + "license": "intel-osl-1989.LICENSE" + }, + { + "license_key": "intel-osl-1993", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-intel-osl-1993", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-osl-1993.json", + "yaml": "intel-osl-1993.yml", + "html": "intel-osl-1993.html", + "license": "intel-osl-1993.LICENSE" + }, + { + "license_key": "intel-royalty-free", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-intel-royalty-free", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-royalty-free.json", + "yaml": "intel-royalty-free.yml", + "html": "intel-royalty-free.html", + "license": "intel-royalty-free.LICENSE" + }, + { + "license_key": "intel-sample-source-code-2015", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-sample-source-code-2015", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-sample-source-code-2015.json", + "yaml": "intel-sample-source-code-2015.yml", + "html": "intel-sample-source-code-2015.html", + "license": "intel-sample-source-code-2015.LICENSE" + }, + { + "license_key": "intel-scl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-intel-scl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "intel-scl.json", + "yaml": "intel-scl.yml", + "html": "intel-scl.html", + "license": "intel-scl.LICENSE" + }, + { + "license_key": "interbase-1.0", + "category": "Copyleft", + "spdx_license_key": "Interbase-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "interbase-1.0.json", + "yaml": "interbase-1.0.yml", + "html": "interbase-1.0.html", + "license": "interbase-1.0.LICENSE" + }, + { + "license_key": "iolib-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "GNU-compiler-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-iolib-exception-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "iolib-exception-2.0.json", + "yaml": "iolib-exception-2.0.yml", + "html": "iolib-exception-2.0.html", + "license": "iolib-exception-2.0.LICENSE" + }, + { + "license_key": "iozone", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-iozone", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "iozone.json", + "yaml": "iozone.yml", + "html": "iozone.html", + "license": "iozone.LICENSE" + }, + { + "license_key": "ipa-font", + "category": "Copyleft Limited", + "spdx_license_key": "IPA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ipa-font.json", + "yaml": "ipa-font.yml", + "html": "ipa-font.html", + "license": "ipa-font.LICENSE" + }, + { + "license_key": "ipca", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-ipca", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ipca.json", + "yaml": "ipca.yml", + "html": "ipca.html", + "license": "ipca.LICENSE" + }, + { + "license_key": "iptc-2006", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-iptc-2006", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "iptc-2006.json", + "yaml": "iptc-2006.yml", + "html": "iptc-2006.html", + "license": "iptc-2006.LICENSE" + }, + { + "license_key": "irfanview-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-irfanview-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "irfanview-eula.json", + "yaml": "irfanview-eula.yml", + "html": "irfanview-eula.html", + "license": "irfanview-eula.LICENSE" + }, + { + "license_key": "isc", + "category": "Permissive", + "spdx_license_key": "ISC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "isc.json", + "yaml": "isc.yml", + "html": "isc.html", + "license": "isc.LICENSE" + }, + { + "license_key": "iso-14496-10", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-iso-14496-10", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "iso-14496-10.json", + "yaml": "iso-14496-10.yml", + "html": "iso-14496-10.html", + "license": "iso-14496-10.LICENSE" + }, + { + "license_key": "iso-8879", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-iso-8879", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "iso-8879.json", + "yaml": "iso-8879.yml", + "html": "iso-8879.html", + "license": "iso-8879.LICENSE" + }, + { + "license_key": "iso-recorder", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-iso-recorder", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "iso-recorder.json", + "yaml": "iso-recorder.yml", + "html": "iso-recorder.html", + "license": "iso-recorder.LICENSE" + }, + { + "license_key": "isotope-cla", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-isotope-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "isotope-cla.json", + "yaml": "isotope-cla.yml", + "html": "isotope-cla.html", + "license": "isotope-cla.LICENSE" + }, + { + "license_key": "issl-2018", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-issl-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "issl-2018.json", + "yaml": "issl-2018.yml", + "html": "issl-2018.html", + "license": "issl-2018.LICENSE" + }, + { + "license_key": "issl-2022", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-issl-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "issl-2022.json", + "yaml": "issl-2022.yml", + "html": "issl-2022.html", + "license": "issl-2022.LICENSE" + }, + { + "license_key": "itc-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-itc-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "itc-eula.json", + "yaml": "itc-eula.yml", + "html": "itc-eula.html", + "license": "itc-eula.LICENSE" + }, + { + "license_key": "itu", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-itu", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "itu.json", + "yaml": "itu.yml", + "html": "itu.html", + "license": "itu.LICENSE" + }, + { + "license_key": "itu-t", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-itu-t", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "itu-t.json", + "yaml": "itu-t.yml", + "html": "itu-t.html", + "license": "itu-t.LICENSE" + }, + { + "license_key": "itu-t-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-itu-t-gpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "itu-t-gpl.json", + "yaml": "itu-t-gpl.yml", + "html": "itu-t-gpl.html", + "license": "itu-t-gpl.LICENSE" + }, + { + "license_key": "itunes", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-itunes", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "itunes.json", + "yaml": "itunes.yml", + "html": "itunes.html", + "license": "itunes.LICENSE" + }, + { + "license_key": "ja-sig", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ja-sig", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ja-sig.json", + "yaml": "ja-sig.yml", + "html": "ja-sig.html", + "license": "ja-sig.LICENSE" + }, + { + "license_key": "jahia-1.3.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-jahia-1.3.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jahia-1.3.1.json", + "yaml": "jahia-1.3.1.yml", + "html": "jahia-1.3.1.html", + "license": "jahia-1.3.1.LICENSE" + }, + { + "license_key": "jam", + "category": "Permissive", + "spdx_license_key": "Jam", + "other_spdx_license_keys": [ + "LicenseRef-scancode-jam" + ], + "is_exception": false, + "is_deprecated": false, + "json": "jam.json", + "yaml": "jam.yml", + "html": "jam.html", + "license": "jam.LICENSE" + }, + { + "license_key": "jam-stapl", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-jam-stapl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jam-stapl.json", + "yaml": "jam-stapl.yml", + "html": "jam-stapl.html", + "license": "jam-stapl.LICENSE" + }, + { + "license_key": "jamon", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-jamon", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jamon.json", + "yaml": "jamon.yml", + "html": "jamon.html", + "license": "jamon.LICENSE" + }, + { + "license_key": "jason-mayes", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jason-mayes", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jason-mayes.json", + "yaml": "jason-mayes.yml", + "html": "jason-mayes.html", + "license": "jason-mayes.LICENSE" + }, + { + "license_key": "jasper-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jasper-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jasper-1.0.json", + "yaml": "jasper-1.0.yml", + "html": "jasper-1.0.html", + "license": "jasper-1.0.LICENSE" + }, + { + "license_key": "jasper-2.0", + "category": "Permissive", + "spdx_license_key": "JasPer-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jasper-2.0.json", + "yaml": "jasper-2.0.yml", + "html": "jasper-2.0.html", + "license": "jasper-2.0.LICENSE" + }, + { + "license_key": "java-app-stub", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-java-app-stub", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "java-app-stub.json", + "yaml": "java-app-stub.yml", + "html": "java-app-stub.html", + "license": "java-app-stub.LICENSE" + }, + { + "license_key": "java-research-1.5", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-java-research-1.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "java-research-1.5.json", + "yaml": "java-research-1.5.yml", + "html": "java-research-1.5.html", + "license": "java-research-1.5.LICENSE" + }, + { + "license_key": "java-research-1.6", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-java-research-1.6", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "java-research-1.6.json", + "yaml": "java-research-1.6.yml", + "html": "java-research-1.6.html", + "license": "java-research-1.6.LICENSE" + }, + { + "license_key": "javascript-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-javascript-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "javascript-exception-2.0.json", + "yaml": "javascript-exception-2.0.yml", + "html": "javascript-exception-2.0.html", + "license": "javascript-exception-2.0.LICENSE" + }, + { + "license_key": "jboss-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jboss-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jboss-eula.json", + "yaml": "jboss-eula.yml", + "html": "jboss-eula.html", + "license": "jboss-eula.LICENSE" + }, + { + "license_key": "jdbm-1.00", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jdbm-1.00", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jdbm-1.00.json", + "yaml": "jdbm-1.00.yml", + "html": "jdbm-1.00.html", + "license": "jdbm-1.00.LICENSE" + }, + { + "license_key": "jdom", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jdom", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jdom.json", + "yaml": "jdom.yml", + "html": "jdom.html", + "license": "jdom.LICENSE" + }, + { + "license_key": "jelurida-public-1.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-jelurida-public-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jelurida-public-1.1.json", + "yaml": "jelurida-public-1.1.yml", + "html": "jelurida-public-1.1.html", + "license": "jelurida-public-1.1.LICENSE" + }, + { + "license_key": "jetbrains-purchase-terms", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-jetbrains-purchase-terms", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jetbrains-purchase-terms.json", + "yaml": "jetbrains-purchase-terms.yml", + "html": "jetbrains-purchase-terms.html", + "license": "jetbrains-purchase-terms.LICENSE" + }, + { + "license_key": "jetbrains-toolbox-open-source-3", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jetbrains-toolbox-oss-3", + "other_spdx_license_keys": [ + "LicenseRef-scancode-jetbrains-toolbox-open-source-3" + ], + "is_exception": false, + "is_deprecated": false, + "json": "jetbrains-toolbox-open-source-3.json", + "yaml": "jetbrains-toolbox-open-source-3.yml", + "html": "jetbrains-toolbox-open-source-3.html", + "license": "jetbrains-toolbox-open-source-3.LICENSE" + }, + { + "license_key": "jetty", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jetty", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jetty.json", + "yaml": "jetty.yml", + "html": "jetty.html", + "license": "jetty.LICENSE" + }, + { + "license_key": "jetty-ccla-1.1", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-jetty-ccla-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jetty-ccla-1.1.json", + "yaml": "jetty-ccla-1.1.yml", + "html": "jetty-ccla-1.1.html", + "license": "jetty-ccla-1.1.LICENSE" + }, + { + "license_key": "jgraph", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jgraph", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jgraph.json", + "yaml": "jgraph.yml", + "html": "jgraph.html", + "license": "jgraph.LICENSE" + }, + { + "license_key": "jgraph-general", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jgraph-general", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jgraph-general.json", + "yaml": "jgraph-general.yml", + "html": "jgraph-general.html", + "license": "jgraph-general.LICENSE" + }, + { + "license_key": "jide-sla", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-jide-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jide-sla.json", + "yaml": "jide-sla.yml", + "html": "jide-sla.html", + "license": "jide-sla.LICENSE" + }, + { + "license_key": "jj2000", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-jj2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jj2000.json", + "yaml": "jj2000.yml", + "html": "jj2000.html", + "license": "jj2000.LICENSE" + }, + { + "license_key": "jmagnetic", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jmagnetic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jmagnetic.json", + "yaml": "jmagnetic.yml", + "html": "jmagnetic.html", + "license": "jmagnetic.LICENSE" + }, + { + "license_key": "josl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-josl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "josl-1.0.json", + "yaml": "josl-1.0.yml", + "html": "josl-1.0.html", + "license": "josl-1.0.LICENSE" + }, + { + "license_key": "jpegxr", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-jpegxr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jpegxr.json", + "yaml": "jpegxr.yml", + "html": "jpegxr.html", + "license": "jpegxr.LICENSE" + }, + { + "license_key": "jpl-image", + "category": "Source-available", + "spdx_license_key": "JPL-image", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jpl-image.json", + "yaml": "jpl-image.yml", + "html": "jpl-image.html", + "license": "jpl-image.LICENSE" + }, + { + "license_key": "jpnic-idnkit", + "category": "Permissive", + "spdx_license_key": "JPNIC", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jpnic-idnkit.json", + "yaml": "jpnic-idnkit.yml", + "html": "jpnic-idnkit.html", + "license": "jpnic-idnkit.LICENSE" + }, + { + "license_key": "jpnic-mdnkit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jpnic-mdnkit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jpnic-mdnkit.json", + "yaml": "jpnic-mdnkit.yml", + "html": "jpnic-mdnkit.html", + "license": "jpnic-mdnkit.LICENSE" + }, + { + "license_key": "jprs-oscl-1.1", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-jprs-oscl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jprs-oscl-1.1.json", + "yaml": "jprs-oscl-1.1.yml", + "html": "jprs-oscl-1.1.html", + "license": "jprs-oscl-1.1.LICENSE" + }, + { + "license_key": "jpython-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jpython-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jpython-1.1.json", + "yaml": "jpython-1.1.yml", + "html": "jpython-1.1.html", + "license": "jpython-1.1.LICENSE" + }, + { + "license_key": "jquery-pd", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-jquery-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jquery-pd.json", + "yaml": "jquery-pd.yml", + "html": "jquery-pd.html", + "license": "jquery-pd.LICENSE" + }, + { + "license_key": "jrunner", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jrunner", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jrunner.json", + "yaml": "jrunner.yml", + "html": "jrunner.html", + "license": "jrunner.LICENSE" + }, + { + "license_key": "jscheme", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jscheme", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jscheme.json", + "yaml": "jscheme.yml", + "html": "jscheme.html", + "license": "jscheme.LICENSE" + }, + { + "license_key": "jsel-2.0", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-jsel-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jsel-2.0.json", + "yaml": "jsel-2.0.yml", + "html": "jsel-2.0.html", + "license": "jsel-2.0.LICENSE" + }, + { + "license_key": "jsfromhell", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jsfromhell", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jsfromhell.json", + "yaml": "jsfromhell.yml", + "html": "jsfromhell.html", + "license": "jsfromhell.LICENSE" + }, + { + "license_key": "json", + "category": "Permissive", + "spdx_license_key": "JSON", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "json.json", + "yaml": "json.yml", + "html": "json.html", + "license": "json.LICENSE" + }, + { + "license_key": "json-js-pd", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-json-js-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "json-js-pd.json", + "yaml": "json-js-pd.yml", + "html": "json-js-pd.html", + "license": "json-js-pd.LICENSE" + }, + { + "license_key": "json-pd", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-json-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "json-pd.json", + "yaml": "json-pd.yml", + "html": "json-pd.html", + "license": "json-pd.LICENSE" + }, + { + "license_key": "jsr-107-jcache-spec", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jsr-107-jcache-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jsr-107-jcache-spec.json", + "yaml": "jsr-107-jcache-spec.yml", + "html": "jsr-107-jcache-spec.html", + "license": "jsr-107-jcache-spec.LICENSE" + }, + { + "license_key": "jsr-107-jcache-spec-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-jsr-107-jcache-spec-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jsr-107-jcache-spec-2013.json", + "yaml": "jsr-107-jcache-spec-2013.yml", + "html": "jsr-107-jcache-spec-2013.html", + "license": "jsr-107-jcache-spec-2013.LICENSE" + }, + { + "license_key": "jython", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-jython", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "jython.json", + "yaml": "jython.yml", + "html": "jython.html", + "license": "jython.LICENSE" + }, + { + "license_key": "kalle-kaukonen", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-kalle-kaukonen", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kalle-kaukonen.json", + "yaml": "kalle-kaukonen.yml", + "html": "kalle-kaukonen.html", + "license": "kalle-kaukonen.LICENSE" + }, + { + "license_key": "karl-peterson", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-karl-peterson", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "karl-peterson.json", + "yaml": "karl-peterson.yml", + "html": "karl-peterson.html", + "license": "karl-peterson.LICENSE" + }, + { + "license_key": "kastrup", + "category": "Permissive", + "spdx_license_key": "Kastrup", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kastrup.json", + "yaml": "kastrup.yml", + "html": "kastrup.html", + "license": "kastrup.LICENSE" + }, + { + "license_key": "katharos-0.1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-katharos-0.1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "katharos-0.1.0.json", + "yaml": "katharos-0.1.0.yml", + "html": "katharos-0.1.0.html", + "license": "katharos-0.1.0.LICENSE" + }, + { + "license_key": "katharos-0.2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-katharos-0.2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "katharos-0.2.0.json", + "yaml": "katharos-0.2.0.yml", + "html": "katharos-0.2.0.html", + "license": "katharos-0.2.0.LICENSE" + }, + { + "license_key": "kazlib", + "category": "Permissive", + "spdx_license_key": "Kazlib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kazlib.json", + "yaml": "kazlib.yml", + "html": "kazlib.html", + "license": "kazlib.LICENSE" + }, + { + "license_key": "kde-accepted-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-kde-accepted-gpl", + "other_spdx_license_keys": [ + "LicenseRef-KDE-Accepted-GPL" + ], + "is_exception": false, + "is_deprecated": false, + "json": "kde-accepted-gpl.json", + "yaml": "kde-accepted-gpl.yml", + "html": "kde-accepted-gpl.html", + "license": "kde-accepted-gpl.LICENSE" + }, + { + "license_key": "kde-accepted-lgpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-kde-accepted-lgpl", + "other_spdx_license_keys": [ + "LicenseRef-KDE-Accepted-LGPL" + ], + "is_exception": false, + "is_deprecated": false, + "json": "kde-accepted-lgpl.json", + "yaml": "kde-accepted-lgpl.yml", + "html": "kde-accepted-lgpl.html", + "license": "kde-accepted-lgpl.LICENSE" + }, + { + "license_key": "keith-rule", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-keith-rule", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "keith-rule.json", + "yaml": "keith-rule.yml", + "html": "keith-rule.html", + "license": "keith-rule.LICENSE" + }, + { + "license_key": "kerberos", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-kerberos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kerberos.json", + "yaml": "kerberos.yml", + "html": "kerberos.html", + "license": "kerberos.LICENSE" + }, + { + "license_key": "kevan-stannard", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-kevan-stannard", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kevan-stannard.json", + "yaml": "kevan-stannard.yml", + "html": "kevan-stannard.html", + "license": "kevan-stannard.LICENSE" + }, + { + "license_key": "kevlin-henney", + "category": "Permissive", + "spdx_license_key": "HPND-Kevlin-Henney", + "other_spdx_license_keys": [ + "LicenseRef-scancode-kevlin-henney" + ], + "is_exception": false, + "is_deprecated": false, + "json": "kevlin-henney.json", + "yaml": "kevlin-henney.yml", + "html": "kevlin-henney.html", + "license": "kevlin-henney.LICENSE" + }, + { + "license_key": "keypirinha", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-keypirinha", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "keypirinha.json", + "yaml": "keypirinha.yml", + "html": "keypirinha.html", + "license": "keypirinha.LICENSE" + }, + { + "license_key": "kfgqpc-uthmanic-script-hafs", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-kfgqpc-uthmanic-script-hafs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kfgqpc-uthmanic-script-hafs.json", + "yaml": "kfgqpc-uthmanic-script-hafs.yml", + "html": "kfgqpc-uthmanic-script-hafs.html", + "license": "kfgqpc-uthmanic-script-hafs.LICENSE" + }, + { + "license_key": "kfqf-accepted-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-kfqf-accepted-gpl", + "other_spdx_license_keys": [ + "LicenseRef-KFQF-Accepted-GPL" + ], + "is_exception": true, + "is_deprecated": false, + "json": "kfqf-accepted-gpl.json", + "yaml": "kfqf-accepted-gpl.yml", + "html": "kfqf-accepted-gpl.html", + "license": "kfqf-accepted-gpl.LICENSE" + }, + { + "license_key": "khronos", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-khronos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "khronos.json", + "yaml": "khronos.yml", + "html": "khronos.html", + "license": "khronos.LICENSE" + }, + { + "license_key": "kicad-libraries-exception", + "category": "Copyleft Limited", + "spdx_license_key": "KiCad-libraries-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "kicad-libraries-exception.json", + "yaml": "kicad-libraries-exception.yml", + "html": "kicad-libraries-exception.html", + "license": "kicad-libraries-exception.LICENSE" + }, + { + "license_key": "knuth-ctan", + "category": "Permissive", + "spdx_license_key": "Knuth-CTAN", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "knuth-ctan.json", + "yaml": "knuth-ctan.yml", + "html": "knuth-ctan.html", + "license": "knuth-ctan.LICENSE" + }, + { + "license_key": "ko-man-page", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ko-man-page", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ko-man-page.json", + "yaml": "ko-man-page.yml", + "html": "ko-man-page.html", + "license": "ko-man-page.LICENSE" + }, + { + "license_key": "kreative-relay-fonts-free-use-1.2f", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-kreative-relay-fonts-free-1.2f", + "other_spdx_license_keys": [ + "LicenseRef-scancode-kreative-relay-fonts-free-use-1.2f" + ], + "is_exception": false, + "is_deprecated": false, + "json": "kreative-relay-fonts-free-use-1.2f.json", + "yaml": "kreative-relay-fonts-free-use-1.2f.yml", + "html": "kreative-relay-fonts-free-use-1.2f.html", + "license": "kreative-relay-fonts-free-use-1.2f.LICENSE" + }, + { + "license_key": "kumar-robotics", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-kumar-robotics", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "kumar-robotics.json", + "yaml": "kumar-robotics.yml", + "html": "kumar-robotics.html", + "license": "kumar-robotics.LICENSE" + }, + { + "license_key": "lal-1.2", + "category": "Copyleft", + "spdx_license_key": "LAL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lal-1.2.json", + "yaml": "lal-1.2.yml", + "html": "lal-1.2.html", + "license": "lal-1.2.LICENSE" + }, + { + "license_key": "lal-1.3", + "category": "Copyleft", + "spdx_license_key": "LAL-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lal-1.3.json", + "yaml": "lal-1.3.yml", + "html": "lal-1.3.html", + "license": "lal-1.3.LICENSE" + }, + { + "license_key": "lance-norskog-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-lance-norskog-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lance-norskog-license.json", + "yaml": "lance-norskog-license.yml", + "html": "lance-norskog-license.html", + "license": "lance-norskog-license.LICENSE" + }, + { + "license_key": "larabie", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-larabie", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "larabie.json", + "yaml": "larabie.yml", + "html": "larabie.html", + "license": "larabie.LICENSE" + }, + { + "license_key": "latex2e", + "category": "Permissive", + "spdx_license_key": "Latex2e", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "latex2e.json", + "yaml": "latex2e.yml", + "html": "latex2e.html", + "license": "latex2e.LICENSE" + }, + { + "license_key": "latex2e-translated-notice", + "category": "Permissive", + "spdx_license_key": "Latex2e-translated-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "latex2e-translated-notice.json", + "yaml": "latex2e-translated-notice.yml", + "html": "latex2e-translated-notice.html", + "license": "latex2e-translated-notice.LICENSE" + }, + { + "license_key": "lattice-osl-2017", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-lattice-osl-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lattice-osl-2017.json", + "yaml": "lattice-osl-2017.yml", + "html": "lattice-osl-2017.html", + "license": "lattice-osl-2017.LICENSE" + }, + { + "license_key": "lavantech", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-lavantech", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lavantech.json", + "yaml": "lavantech.yml", + "html": "lavantech.html", + "license": "lavantech.LICENSE" + }, + { + "license_key": "lbnl-bsd", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-LBNL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lbnl-bsd.json", + "yaml": "lbnl-bsd.yml", + "html": "lbnl-bsd.html", + "license": "lbnl-bsd.LICENSE" + }, + { + "license_key": "lcs-telegraphics", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-lcs-telegraphics", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lcs-telegraphics.json", + "yaml": "lcs-telegraphics.yml", + "html": "lcs-telegraphics.html", + "license": "lcs-telegraphics.LICENSE" + }, + { + "license_key": "ldap-sdk-free-use", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ldap-sdk-free-use", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldap-sdk-free-use.json", + "yaml": "ldap-sdk-free-use.yml", + "html": "ldap-sdk-free-use.html", + "license": "ldap-sdk-free-use.LICENSE" + }, + { + "license_key": "ldpc-1994", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpc-1994", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpc-1994.json", + "yaml": "ldpc-1994.yml", + "html": "ldpc-1994.html", + "license": "ldpc-1994.LICENSE" + }, + { + "license_key": "ldpc-1997", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpc-1997", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpc-1997.json", + "yaml": "ldpc-1997.yml", + "html": "ldpc-1997.html", + "license": "ldpc-1997.LICENSE" + }, + { + "license_key": "ldpc-1999", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpc-1999", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpc-1999.json", + "yaml": "ldpc-1999.yml", + "html": "ldpc-1999.html", + "license": "ldpc-1999.LICENSE" + }, + { + "license_key": "ldpgpl-1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpgpl-1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpgpl-1.json", + "yaml": "ldpgpl-1.yml", + "html": "ldpgpl-1.html", + "license": "ldpgpl-1.LICENSE" + }, + { + "license_key": "ldpgpl-1a", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpgpl-1a", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpgpl-1a.json", + "yaml": "ldpgpl-1a.yml", + "html": "ldpgpl-1a.html", + "license": "ldpgpl-1a.LICENSE" + }, + { + "license_key": "ldpl-2.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpl-2.0.json", + "yaml": "ldpl-2.0.yml", + "html": "ldpl-2.0.html", + "license": "ldpl-2.0.LICENSE" + }, + { + "license_key": "ldpm-1998", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-ldpm-1998", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ldpm-1998.json", + "yaml": "ldpm-1998.yml", + "html": "ldpm-1998.html", + "license": "ldpm-1998.LICENSE" + }, + { + "license_key": "leap-motion-sdk-2019", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-leap-motion-sdk-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "leap-motion-sdk-2019.json", + "yaml": "leap-motion-sdk-2019.yml", + "html": "leap-motion-sdk-2019.html", + "license": "leap-motion-sdk-2019.LICENSE" + }, + { + "license_key": "leptonica", + "category": "Permissive", + "spdx_license_key": "Leptonica", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "leptonica.json", + "yaml": "leptonica.yml", + "html": "leptonica.html", + "license": "leptonica.LICENSE" + }, + { + "license_key": "lgpl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-2.0-only", + "other_spdx_license_keys": [ + "LGPL-2.0", + "LicenseRef-LGPL-2", + "LicenseRef-LGPL-2.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "lgpl-2.0.json", + "yaml": "lgpl-2.0.yml", + "html": "lgpl-2.0.html", + "license": "lgpl-2.0.LICENSE" + }, + { + "license_key": "lgpl-2.0-fltk", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.0-fltk.json", + "yaml": "lgpl-2.0-fltk.yml", + "html": "lgpl-2.0-fltk.html", + "license": "lgpl-2.0-fltk.LICENSE" + }, + { + "license_key": "lgpl-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-2.0-or-later", + "other_spdx_license_keys": [ + "LGPL-2.0+", + "LicenseRef-LGPL" + ], + "is_exception": false, + "is_deprecated": false, + "json": "lgpl-2.0-plus.json", + "yaml": "lgpl-2.0-plus.yml", + "html": "lgpl-2.0-plus.html", + "license": "lgpl-2.0-plus.LICENSE" + }, + { + "license_key": "lgpl-2.0-plus-gcc", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.0-plus-gcc.json", + "yaml": "lgpl-2.0-plus-gcc.yml", + "html": "lgpl-2.0-plus-gcc.html", + "license": "lgpl-2.0-plus-gcc.LICENSE" + }, + { + "license_key": "lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-2.1-only", + "other_spdx_license_keys": [ + "LGPL-2.1", + "LicenseRef-LGPL-2.1" + ], + "is_exception": false, + "is_deprecated": false, + "json": "lgpl-2.1.json", + "yaml": "lgpl-2.1.yml", + "html": "lgpl-2.1.html", + "license": "lgpl-2.1.LICENSE" + }, + { + "license_key": "lgpl-2.1-digia-qt", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-digia-qt.json", + "yaml": "lgpl-2.1-digia-qt.yml", + "html": "lgpl-2.1-digia-qt.html", + "license": "lgpl-2.1-digia-qt.LICENSE" + }, + { + "license_key": "lgpl-2.1-nokia-qt", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-nokia-qt.json", + "yaml": "lgpl-2.1-nokia-qt.yml", + "html": "lgpl-2.1-nokia-qt.html", + "license": "lgpl-2.1-nokia-qt.LICENSE" + }, + { + "license_key": "lgpl-2.1-nokia-qt-1.0", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-nokia-qt-1.0.json", + "yaml": "lgpl-2.1-nokia-qt-1.0.yml", + "html": "lgpl-2.1-nokia-qt-1.0.html", + "license": "lgpl-2.1-nokia-qt-1.0.LICENSE" + }, + { + "license_key": "lgpl-2.1-nokia-qt-1.1", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-nokia-qt-1.1.json", + "yaml": "lgpl-2.1-nokia-qt-1.1.yml", + "html": "lgpl-2.1-nokia-qt-1.1.html", + "license": "lgpl-2.1-nokia-qt-1.1.LICENSE" + }, + { + "license_key": "lgpl-2.1-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-2.1-or-later", + "other_spdx_license_keys": [ + "LGPL-2.1+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "lgpl-2.1-plus.json", + "yaml": "lgpl-2.1-plus.yml", + "html": "lgpl-2.1-plus.html", + "license": "lgpl-2.1-plus.LICENSE" + }, + { + "license_key": "lgpl-2.1-plus-linking", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-plus-linking.json", + "yaml": "lgpl-2.1-plus-linking.yml", + "html": "lgpl-2.1-plus-linking.html", + "license": "lgpl-2.1-plus-linking.LICENSE" + }, + { + "license_key": "lgpl-2.1-plus-unlimited-linking", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-plus-unlimited-linking.json", + "yaml": "lgpl-2.1-plus-unlimited-linking.yml", + "html": "lgpl-2.1-plus-unlimited-linking.html", + "license": "lgpl-2.1-plus-unlimited-linking.LICENSE" + }, + { + "license_key": "lgpl-2.1-qt-company", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-qt-company.json", + "yaml": "lgpl-2.1-qt-company.yml", + "html": "lgpl-2.1-qt-company.html", + "license": "lgpl-2.1-qt-company.LICENSE" + }, + { + "license_key": "lgpl-2.1-qt-company-2017", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-qt-company-2017.json", + "yaml": "lgpl-2.1-qt-company-2017.yml", + "html": "lgpl-2.1-qt-company-2017.html", + "license": "lgpl-2.1-qt-company-2017.LICENSE" + }, + { + "license_key": "lgpl-2.1-rxtx", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-rxtx.json", + "yaml": "lgpl-2.1-rxtx.yml", + "html": "lgpl-2.1-rxtx.html", + "license": "lgpl-2.1-rxtx.LICENSE" + }, + { + "license_key": "lgpl-2.1-spell-checker", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-2.1-spell-checker.json", + "yaml": "lgpl-2.1-spell-checker.yml", + "html": "lgpl-2.1-spell-checker.html", + "license": "lgpl-2.1-spell-checker.LICENSE" + }, + { + "license_key": "lgpl-3-plus-linking", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-3-plus-linking.json", + "yaml": "lgpl-3-plus-linking.yml", + "html": "lgpl-3-plus-linking.html", + "license": "lgpl-3-plus-linking.LICENSE" + }, + { + "license_key": "lgpl-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-3.0-only", + "other_spdx_license_keys": [ + "LGPL-3.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "lgpl-3.0.json", + "yaml": "lgpl-3.0.yml", + "html": "lgpl-3.0.html", + "license": "lgpl-3.0.LICENSE" + }, + { + "license_key": "lgpl-3.0-cygwin", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-3.0-cygwin.json", + "yaml": "lgpl-3.0-cygwin.yml", + "html": "lgpl-3.0-cygwin.html", + "license": "lgpl-3.0-cygwin.LICENSE" + }, + { + "license_key": "lgpl-3.0-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-3.0-linking-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-lgpl-3-plus-linking", + "LicenseRef-scancode-linking-exception-lgpl-3.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "lgpl-3.0-linking-exception.json", + "yaml": "lgpl-3.0-linking-exception.yml", + "html": "lgpl-3.0-linking-exception.html", + "license": "lgpl-3.0-linking-exception.LICENSE" + }, + { + "license_key": "lgpl-3.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LGPL-3.0-or-later", + "other_spdx_license_keys": [ + "LGPL-3.0+" + ], + "is_exception": false, + "is_deprecated": false, + "json": "lgpl-3.0-plus.json", + "yaml": "lgpl-3.0-plus.yml", + "html": "lgpl-3.0-plus.html", + "license": "lgpl-3.0-plus.LICENSE" + }, + { + "license_key": "lgpl-3.0-plus-openssl", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-3.0-plus-openssl.json", + "yaml": "lgpl-3.0-plus-openssl.yml", + "html": "lgpl-3.0-plus-openssl.html", + "license": "lgpl-3.0-plus-openssl.LICENSE" + }, + { + "license_key": "lgpl-3.0-zeromq", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "lgpl-3.0-zeromq.json", + "yaml": "lgpl-3.0-zeromq.yml", + "html": "lgpl-3.0-zeromq.html", + "license": "lgpl-3.0-zeromq.LICENSE" + }, + { + "license_key": "lgpllr", + "category": "Copyleft Limited", + "spdx_license_key": "LGPLLR", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lgpllr.json", + "yaml": "lgpllr.yml", + "html": "lgpllr.html", + "license": "lgpllr.LICENSE" + }, + { + "license_key": "lha", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-lha", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lha.json", + "yaml": "lha.yml", + "html": "lha.html", + "license": "lha.LICENSE" + }, + { + "license_key": "libcap", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "libcap.json", + "yaml": "libcap.yml", + "html": "libcap.html", + "license": "libcap.LICENSE" + }, + { + "license_key": "liberation-font-exception", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-liberation-font-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "liberation-font-exception.json", + "yaml": "liberation-font-exception.yml", + "html": "liberation-font-exception.html", + "license": "liberation-font-exception.LICENSE" + }, + { + "license_key": "libgd-2018", + "category": "Permissive", + "spdx_license_key": "GD", + "other_spdx_license_keys": [ + "LicenseRef-scancode-libgd-2018" + ], + "is_exception": false, + "is_deprecated": false, + "json": "libgd-2018.json", + "yaml": "libgd-2018.yml", + "html": "libgd-2018.html", + "license": "libgd-2018.LICENSE" + }, + { + "license_key": "libgeotiff", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-libgeotiff", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libgeotiff.json", + "yaml": "libgeotiff.yml", + "html": "libgeotiff.html", + "license": "libgeotiff.LICENSE" + }, + { + "license_key": "libmib", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-libmib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libmib.json", + "yaml": "libmib.yml", + "html": "libmib.html", + "license": "libmib.LICENSE" + }, + { + "license_key": "libmng-2007", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-libmng-2007", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libmng-2007.json", + "yaml": "libmng-2007.yml", + "html": "libmng-2007.html", + "license": "libmng-2007.LICENSE" + }, + { + "license_key": "libpbm", + "category": "Permissive", + "spdx_license_key": "xlock", + "other_spdx_license_keys": [ + "LicenseRef-scancode-libpbm" + ], + "is_exception": false, + "is_deprecated": false, + "json": "libpbm.json", + "yaml": "libpbm.yml", + "html": "libpbm.html", + "license": "libpbm.LICENSE" + }, + { + "license_key": "libpng", + "category": "Permissive", + "spdx_license_key": "Libpng", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libpng.json", + "yaml": "libpng.yml", + "html": "libpng.html", + "license": "libpng.LICENSE" + }, + { + "license_key": "libpng-v2", + "category": "Permissive", + "spdx_license_key": "libpng-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libpng-v2.json", + "yaml": "libpng-v2.yml", + "html": "libpng-v2.html", + "license": "libpng-v2.LICENSE" + }, + { + "license_key": "libpri-openh323-exception", + "category": "Copyleft", + "spdx_license_key": "libpri-OpenH323-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "libpri-openh323-exception.json", + "yaml": "libpri-openh323-exception.yml", + "html": "libpri-openh323-exception.html", + "license": "libpri-openh323-exception.LICENSE" + }, + { + "license_key": "librato-exception", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-librato-exception", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "librato-exception.json", + "yaml": "librato-exception.yml", + "html": "librato-exception.html", + "license": "librato-exception.LICENSE" + }, + { + "license_key": "libselinux-pd", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-libselinux-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libselinux-pd.json", + "yaml": "libselinux-pd.yml", + "html": "libselinux-pd.html", + "license": "libselinux-pd.LICENSE" + }, + { + "license_key": "libsrv-1.0.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-libsrv-1.0.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libsrv-1.0.2.json", + "yaml": "libsrv-1.0.2.yml", + "html": "libsrv-1.0.2.html", + "license": "libsrv-1.0.2.LICENSE" + }, + { + "license_key": "libtool-exception", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "libtool-exception.json", + "yaml": "libtool-exception.yml", + "html": "libtool-exception.html", + "license": "libtool-exception.LICENSE" + }, + { + "license_key": "libtool-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "Libtool-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "libtool-exception-2.0.json", + "yaml": "libtool-exception-2.0.yml", + "html": "libtool-exception-2.0.html", + "license": "libtool-exception-2.0.LICENSE" + }, + { + "license_key": "libtool-exception-lgpl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-libtool-exception-lgpl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "libtool-exception-lgpl.json", + "yaml": "libtool-exception-lgpl.yml", + "html": "libtool-exception-lgpl.html", + "license": "libtool-exception-lgpl.LICENSE" + }, + { + "license_key": "libutil-david-nugent", + "category": "Permissive", + "spdx_license_key": "libutil-David-Nugent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "libutil-david-nugent.json", + "yaml": "libutil-david-nugent.yml", + "html": "libutil-david-nugent.html", + "license": "libutil-david-nugent.LICENSE" + }, + { + "license_key": "libwebsockets-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-libwebsockets-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "libwebsockets-exception.json", + "yaml": "libwebsockets-exception.yml", + "html": "libwebsockets-exception.html", + "license": "libwebsockets-exception.LICENSE" + }, + { + "license_key": "libzip", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "libzip.json", + "yaml": "libzip.yml", + "html": "libzip.html", + "license": "libzip.LICENSE" + }, + { + "license_key": "license-file-reference", + "category": "Unstated License", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "license-file-reference.json", + "yaml": "license-file-reference.yml", + "html": "license-file-reference.html", + "license": "license-file-reference.LICENSE" + }, + { + "license_key": "liferay-dxp-eula-2.0.0-2023-06", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "liferay-dxp-eula-2.0.0-2023-06.json", + "yaml": "liferay-dxp-eula-2.0.0-2023-06.yml", + "html": "liferay-dxp-eula-2.0.0-2023-06.html", + "license": "liferay-dxp-eula-2.0.0-2023-06.LICENSE" + }, + { + "license_key": "liferay-ee", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-liferay-ee", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "liferay-ee.json", + "yaml": "liferay-ee.yml", + "html": "liferay-ee.html", + "license": "liferay-ee.LICENSE" + }, + { + "license_key": "liferay-marketplace-tos", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-liferay-marketplace-tos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "liferay-marketplace-tos.json", + "yaml": "liferay-marketplace-tos.yml", + "html": "liferay-marketplace-tos.html", + "license": "liferay-marketplace-tos.LICENSE" + }, + { + "license_key": "lil-1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-lil-1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lil-1.json", + "yaml": "lil-1.yml", + "html": "lil-1.html", + "license": "lil-1.LICENSE" + }, + { + "license_key": "liliq-p-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LiLiQ-P-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "liliq-p-1.1.json", + "yaml": "liliq-p-1.1.yml", + "html": "liliq-p-1.1.html", + "license": "liliq-p-1.1.LICENSE" + }, + { + "license_key": "liliq-r-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LiLiQ-R-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "liliq-r-1.1.json", + "yaml": "liliq-r-1.1.yml", + "html": "liliq-r-1.1.html", + "license": "liliq-r-1.1.LICENSE" + }, + { + "license_key": "liliq-rplus-1.1", + "category": "Copyleft", + "spdx_license_key": "LiLiQ-Rplus-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "liliq-rplus-1.1.json", + "yaml": "liliq-rplus-1.1.yml", + "html": "liliq-rplus-1.1.html", + "license": "liliq-rplus-1.1.LICENSE" + }, + { + "license_key": "lilo", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-lilo", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lilo.json", + "yaml": "lilo.yml", + "html": "lilo.html", + "license": "lilo.LICENSE" + }, + { + "license_key": "linking-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-linking-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "linking-exception-2.0-plus.json", + "yaml": "linking-exception-2.0-plus.yml", + "html": "linking-exception-2.0-plus.html", + "license": "linking-exception-2.0-plus.LICENSE" + }, + { + "license_key": "linking-exception-2.1-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-linking-exception-2.1-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "linking-exception-2.1-plus.json", + "yaml": "linking-exception-2.1-plus.yml", + "html": "linking-exception-2.1-plus.html", + "license": "linking-exception-2.1-plus.LICENSE" + }, + { + "license_key": "linking-exception-agpl-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-linking-exception-agpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "linking-exception-agpl-3.0.json", + "yaml": "linking-exception-agpl-3.0.yml", + "html": "linking-exception-agpl-3.0.html", + "license": "linking-exception-agpl-3.0.LICENSE" + }, + { + "license_key": "linking-exception-lgpl-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-linking-exception-lgpl-2.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-linking-exception-lgpl-2.0-plus" + ], + "is_exception": true, + "is_deprecated": false, + "json": "linking-exception-lgpl-2.0-plus.json", + "yaml": "linking-exception-lgpl-2.0-plus.yml", + "html": "linking-exception-lgpl-2.0-plus.html", + "license": "linking-exception-lgpl-2.0-plus.LICENSE" + }, + { + "license_key": "linking-exception-lgpl-3.0", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "linking-exception-lgpl-3.0.json", + "yaml": "linking-exception-lgpl-3.0.yml", + "html": "linking-exception-lgpl-3.0.html", + "license": "linking-exception-lgpl-3.0.LICENSE" + }, + { + "license_key": "linotype-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-linotype-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linotype-eula.json", + "yaml": "linotype-eula.yml", + "html": "linotype-eula.html", + "license": "linotype-eula.LICENSE" + }, + { + "license_key": "linum", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "linum.json", + "yaml": "linum.yml", + "html": "linum.html", + "license": "linum.LICENSE" + }, + { + "license_key": "linux-device-drivers", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-linux-device-drivers", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linux-device-drivers.json", + "yaml": "linux-device-drivers.yml", + "html": "linux-device-drivers.html", + "license": "linux-device-drivers.LICENSE" + }, + { + "license_key": "linux-man-pages-1-para", + "category": "Copyleft Limited", + "spdx_license_key": "Linux-man-pages-1-para", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linux-man-pages-1-para.json", + "yaml": "linux-man-pages-1-para.yml", + "html": "linux-man-pages-1-para.html", + "license": "linux-man-pages-1-para.LICENSE" + }, + { + "license_key": "linux-man-pages-2-para", + "category": "Copyleft Limited", + "spdx_license_key": "Linux-man-pages-copyleft-2-para", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linux-man-pages-2-para.json", + "yaml": "linux-man-pages-2-para.yml", + "html": "linux-man-pages-2-para.html", + "license": "linux-man-pages-2-para.LICENSE" + }, + { + "license_key": "linux-man-pages-copyleft-var", + "category": "Copyleft Limited", + "spdx_license_key": "Linux-man-pages-copyleft-var", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linux-man-pages-copyleft-var.json", + "yaml": "linux-man-pages-copyleft-var.yml", + "html": "linux-man-pages-copyleft-var.html", + "license": "linux-man-pages-copyleft-var.LICENSE" + }, + { + "license_key": "linux-openib", + "category": "Permissive", + "spdx_license_key": "Linux-OpenIB", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linux-openib.json", + "yaml": "linux-openib.yml", + "html": "linux-openib.html", + "license": "linux-openib.LICENSE" + }, + { + "license_key": "linux-syscall-exception-gpl", + "category": "Copyleft Limited", + "spdx_license_key": "Linux-syscall-note", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "linux-syscall-exception-gpl.json", + "yaml": "linux-syscall-exception-gpl.yml", + "html": "linux-syscall-exception-gpl.html", + "license": "linux-syscall-exception-gpl.LICENSE" + }, + { + "license_key": "linuxbios", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-linuxbios", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linuxbios.json", + "yaml": "linuxbios.yml", + "html": "linuxbios.html", + "license": "linuxbios.LICENSE" + }, + { + "license_key": "linuxhowtos", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-linuxhowtos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "linuxhowtos.json", + "yaml": "linuxhowtos.yml", + "html": "linuxhowtos.html", + "license": "linuxhowtos.LICENSE" + }, + { + "license_key": "llama-2-license-2023", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-llama-2-license-2023", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "llama-2-license-2023.json", + "yaml": "llama-2-license-2023.yml", + "html": "llama-2-license-2023.html", + "license": "llama-2-license-2023.LICENSE" + }, + { + "license_key": "llama-license-2023", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-llama-license-2023", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "llama-license-2023.json", + "yaml": "llama-license-2023.yml", + "html": "llama-license-2023.html", + "license": "llama-license-2023.LICENSE" + }, + { + "license_key": "llgpl", + "category": "Copyleft Limited", + "spdx_license_key": "LLGPL", + "other_spdx_license_keys": [ + "LicenseRef-scancode-llgpl" + ], + "is_exception": true, + "is_deprecated": false, + "json": "llgpl.json", + "yaml": "llgpl.yml", + "html": "llgpl.html", + "license": "llgpl.LICENSE" + }, + { + "license_key": "llnl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-llnl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "llnl.json", + "yaml": "llnl.yml", + "html": "llnl.html", + "license": "llnl.LICENSE" + }, + { + "license_key": "llvm-exception", + "category": "Permissive", + "spdx_license_key": "LLVM-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "llvm-exception.json", + "yaml": "llvm-exception.yml", + "html": "llvm-exception.html", + "license": "llvm-exception.LICENSE" + }, + { + "license_key": "lmbench-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-lmbench-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "lmbench-exception-2.0.json", + "yaml": "lmbench-exception-2.0.yml", + "html": "lmbench-exception-2.0.html", + "license": "lmbench-exception-2.0.LICENSE" + }, + { + "license_key": "logica-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-logica-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "logica-1.0.json", + "yaml": "logica-1.0.yml", + "html": "logica-1.0.html", + "license": "logica-1.0.LICENSE" + }, + { + "license_key": "lontium-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-lontium-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lontium-linux-firmware.json", + "yaml": "lontium-linux-firmware.yml", + "html": "lontium-linux-firmware.html", + "license": "lontium-linux-firmware.LICENSE" + }, + { + "license_key": "loop", + "category": "Permissive", + "spdx_license_key": "LOOP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "loop.json", + "yaml": "loop.yml", + "html": "loop.html", + "license": "loop.LICENSE" + }, + { + "license_key": "losla", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-losla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "losla.json", + "yaml": "losla.yml", + "html": "losla.html", + "license": "losla.LICENSE" + }, + { + "license_key": "lppl-1.0", + "category": "Copyleft", + "spdx_license_key": "LPPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lppl-1.0.json", + "yaml": "lppl-1.0.yml", + "html": "lppl-1.0.html", + "license": "lppl-1.0.LICENSE" + }, + { + "license_key": "lppl-1.1", + "category": "Copyleft", + "spdx_license_key": "LPPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lppl-1.1.json", + "yaml": "lppl-1.1.yml", + "html": "lppl-1.1.html", + "license": "lppl-1.1.LICENSE" + }, + { + "license_key": "lppl-1.2", + "category": "Copyleft", + "spdx_license_key": "LPPL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lppl-1.2.json", + "yaml": "lppl-1.2.yml", + "html": "lppl-1.2.html", + "license": "lppl-1.2.LICENSE" + }, + { + "license_key": "lppl-1.3a", + "category": "Copyleft", + "spdx_license_key": "LPPL-1.3a", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lppl-1.3a.json", + "yaml": "lppl-1.3a.yml", + "html": "lppl-1.3a.html", + "license": "lppl-1.3a.LICENSE" + }, + { + "license_key": "lppl-1.3c", + "category": "Copyleft", + "spdx_license_key": "LPPL-1.3c", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lppl-1.3c.json", + "yaml": "lppl-1.3c.yml", + "html": "lppl-1.3c.html", + "license": "lppl-1.3c.LICENSE" + }, + { + "license_key": "lsi-proprietary-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-lsi-proprietary-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lsi-proprietary-eula.json", + "yaml": "lsi-proprietary-eula.yml", + "html": "lsi-proprietary-eula.html", + "license": "lsi-proprietary-eula.LICENSE" + }, + { + "license_key": "lucent-pl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lucent-pl-1.0.json", + "yaml": "lucent-pl-1.0.yml", + "html": "lucent-pl-1.0.html", + "license": "lucent-pl-1.0.LICENSE" + }, + { + "license_key": "lucent-pl-1.02", + "category": "Copyleft Limited", + "spdx_license_key": "LPL-1.02", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lucent-pl-1.02.json", + "yaml": "lucent-pl-1.02.yml", + "html": "lucent-pl-1.02.html", + "license": "lucent-pl-1.02.LICENSE" + }, + { + "license_key": "lucre", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-lucre", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lucre.json", + "yaml": "lucre.yml", + "html": "lucre.html", + "license": "lucre.LICENSE" + }, + { + "license_key": "lumisoft-mail-server", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-lumisoft-mail-server", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lumisoft-mail-server.json", + "yaml": "lumisoft-mail-server.yml", + "html": "lumisoft-mail-server.html", + "license": "lumisoft-mail-server.LICENSE" + }, + { + "license_key": "luxi", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-luxi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "luxi.json", + "yaml": "luxi.yml", + "html": "luxi.html", + "license": "luxi.LICENSE" + }, + { + "license_key": "lyubinskiy-dropdown", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-lyubinskiy-dropdown", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lyubinskiy-dropdown.json", + "yaml": "lyubinskiy-dropdown.yml", + "html": "lyubinskiy-dropdown.html", + "license": "lyubinskiy-dropdown.LICENSE" + }, + { + "license_key": "lyubinskiy-popup-window", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-lyubinskiy-popup-window", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lyubinskiy-popup-window.json", + "yaml": "lyubinskiy-popup-window.yml", + "html": "lyubinskiy-popup-window.html", + "license": "lyubinskiy-popup-window.LICENSE" + }, + { + "license_key": "lzma-cpl-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LZMA-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "lzma-cpl-exception.json", + "yaml": "lzma-cpl-exception.yml", + "html": "lzma-cpl-exception.html", + "license": "lzma-cpl-exception.LICENSE" + }, + { + "license_key": "lzma-sdk-2006", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2006", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lzma-sdk-2006.json", + "yaml": "lzma-sdk-2006.yml", + "html": "lzma-sdk-2006.html", + "license": "lzma-sdk-2006.LICENSE" + }, + { + "license_key": "lzma-sdk-2006-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2006-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "lzma-sdk-2006-exception.json", + "yaml": "lzma-sdk-2006-exception.yml", + "html": "lzma-sdk-2006-exception.html", + "license": "lzma-sdk-2006-exception.LICENSE" + }, + { + "license_key": "lzma-sdk-2008", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-2008", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lzma-sdk-2008.json", + "yaml": "lzma-sdk-2008.yml", + "html": "lzma-sdk-2008.html", + "license": "lzma-sdk-2008.LICENSE" + }, + { + "license_key": "lzma-sdk-9.11-to-9.20", + "category": "Public Domain", + "spdx_license_key": "LZMA-SDK-9.11-to-9.20", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lzma-sdk-9.11-to-9.20.json", + "yaml": "lzma-sdk-9.11-to-9.20.yml", + "html": "lzma-sdk-9.11-to-9.20.html", + "license": "lzma-sdk-9.11-to-9.20.LICENSE" + }, + { + "license_key": "lzma-sdk-9.22", + "category": "Public Domain", + "spdx_license_key": "LZMA-SDK-9.22", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lzma-sdk-9.22.json", + "yaml": "lzma-sdk-9.22.yml", + "html": "lzma-sdk-9.22.html", + "license": "lzma-sdk-9.22.LICENSE" + }, + { + "license_key": "lzma-sdk-original", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-original", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lzma-sdk-original.json", + "yaml": "lzma-sdk-original.yml", + "html": "lzma-sdk-original.html", + "license": "lzma-sdk-original.LICENSE" + }, + { + "license_key": "lzma-sdk-pd", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-lzma-sdk-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "lzma-sdk-pd.json", + "yaml": "lzma-sdk-pd.yml", + "html": "lzma-sdk-pd.html", + "license": "lzma-sdk-pd.LICENSE" + }, + { + "license_key": "m-plus", + "category": "Permissive", + "spdx_license_key": "mplus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-m-plus" + ], + "is_exception": false, + "is_deprecated": false, + "json": "m-plus.json", + "yaml": "m-plus.yml", + "html": "m-plus.html", + "license": "m-plus.LICENSE" + }, + { + "license_key": "madwifi-dual", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "madwifi-dual.json", + "yaml": "madwifi-dual.yml", + "html": "madwifi-dual.html", + "license": "madwifi-dual.LICENSE" + }, + { + "license_key": "magaz", + "category": "Permissive", + "spdx_license_key": "magaz", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "magaz.json", + "yaml": "magaz.yml", + "html": "magaz.html", + "license": "magaz.LICENSE" + }, + { + "license_key": "magpie-exception-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-magpie-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "magpie-exception-1.0.json", + "yaml": "magpie-exception-1.0.yml", + "html": "magpie-exception-1.0.html", + "license": "magpie-exception-1.0.LICENSE" + }, + { + "license_key": "mailprio", + "category": "Permissive", + "spdx_license_key": "mailprio", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mailprio.json", + "yaml": "mailprio.yml", + "html": "mailprio.html", + "license": "mailprio.LICENSE" + }, + { + "license_key": "make-human-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-make-human-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "make-human-exception.json", + "yaml": "make-human-exception.yml", + "html": "make-human-exception.html", + "license": "make-human-exception.LICENSE" + }, + { + "license_key": "makeindex", + "category": "Copyleft", + "spdx_license_key": "MakeIndex", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "makeindex.json", + "yaml": "makeindex.yml", + "html": "makeindex.html", + "license": "makeindex.LICENSE" + }, + { + "license_key": "mame", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-mame", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mame.json", + "yaml": "mame.yml", + "html": "mame.html", + "license": "mame.LICENSE" + }, + { + "license_key": "manfred-klein-fonts-tos", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-manfred-klein-fonts-tos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "manfred-klein-fonts-tos.json", + "yaml": "manfred-klein-fonts-tos.yml", + "html": "manfred-klein-fonts-tos.html", + "license": "manfred-klein-fonts-tos.LICENSE" + }, + { + "license_key": "mapbox-tos-2021", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-mapbox-tos-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mapbox-tos-2021.json", + "yaml": "mapbox-tos-2021.yml", + "html": "mapbox-tos-2021.html", + "license": "mapbox-tos-2021.LICENSE" + }, + { + "license_key": "markus-kuhn-license", + "category": "Permissive", + "spdx_license_key": "HPND-Markus-Kuhn", + "other_spdx_license_keys": [ + "LicenseRef-scancode-markus-kuhn-license" + ], + "is_exception": false, + "is_deprecated": false, + "json": "markus-kuhn-license.json", + "yaml": "markus-kuhn-license.yml", + "html": "markus-kuhn-license.html", + "license": "markus-kuhn-license.LICENSE" + }, + { + "license_key": "markus-mummert-permissive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-markus-mummert-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "markus-mummert-permissive.json", + "yaml": "markus-mummert-permissive.yml", + "html": "markus-mummert-permissive.html", + "license": "markus-mummert-permissive.LICENSE" + }, + { + "license_key": "martin-birgmeier", + "category": "Permissive", + "spdx_license_key": "Martin-Birgmeier", + "other_spdx_license_keys": [ + "LicenseRef-scancode-martin-birgmeier" + ], + "is_exception": false, + "is_deprecated": false, + "json": "martin-birgmeier.json", + "yaml": "martin-birgmeier.yml", + "html": "martin-birgmeier.html", + "license": "martin-birgmeier.LICENSE" + }, + { + "license_key": "marvell-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-marvell-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "marvell-firmware.json", + "yaml": "marvell-firmware.yml", + "html": "marvell-firmware.html", + "license": "marvell-firmware.LICENSE" + }, + { + "license_key": "marvell-firmware-2019", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-marvell-firmware-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "marvell-firmware-2019.json", + "yaml": "marvell-firmware-2019.yml", + "html": "marvell-firmware-2019.html", + "license": "marvell-firmware-2019.LICENSE" + }, + { + "license_key": "matt-gallagher-attribution", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-matt-gallagher-attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "matt-gallagher-attribution.json", + "yaml": "matt-gallagher-attribution.yml", + "html": "matt-gallagher-attribution.html", + "license": "matt-gallagher-attribution.LICENSE" + }, + { + "license_key": "matthew-kwan", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-matthew-kwan", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "matthew-kwan.json", + "yaml": "matthew-kwan.yml", + "html": "matthew-kwan.html", + "license": "matthew-kwan.LICENSE" + }, + { + "license_key": "matthew-welch-font-license", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-matthew-welch-font-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "matthew-welch-font-license.json", + "yaml": "matthew-welch-font-license.yml", + "html": "matthew-welch-font-license.html", + "license": "matthew-welch-font-license.LICENSE" + }, + { + "license_key": "mattkruse", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mattkruse", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mattkruse.json", + "yaml": "mattkruse.yml", + "html": "mattkruse.html", + "license": "mattkruse.LICENSE" + }, + { + "license_key": "maxmind-geolite2-eula-2019", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-maxmind-geolite2-eula-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "maxmind-geolite2-eula-2019.json", + "yaml": "maxmind-geolite2-eula-2019.yml", + "html": "maxmind-geolite2-eula-2019.html", + "license": "maxmind-geolite2-eula-2019.LICENSE" + }, + { + "license_key": "maxmind-odl", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-maxmind-odl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "maxmind-odl.json", + "yaml": "maxmind-odl.yml", + "html": "maxmind-odl.html", + "license": "maxmind-odl.LICENSE" + }, + { + "license_key": "mcafee-tou", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mcafee-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mcafee-tou.json", + "yaml": "mcafee-tou.yml", + "html": "mcafee-tou.html", + "license": "mcafee-tou.LICENSE" + }, + { + "license_key": "mcphee-slideshow", + "category": "Permissive", + "spdx_license_key": "McPhee-slideshow", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mcphee-slideshow.json", + "yaml": "mcphee-slideshow.yml", + "html": "mcphee-slideshow.html", + "license": "mcphee-slideshow.LICENSE" + }, + { + "license_key": "mcrae-pl-4-r53", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mcrae-pl-4-r53", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mcrae-pl-4-r53.json", + "yaml": "mcrae-pl-4-r53.yml", + "html": "mcrae-pl-4-r53.html", + "license": "mcrae-pl-4-r53.LICENSE" + }, + { + "license_key": "mediainfo-lib", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mediainfo-lib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mediainfo-lib.json", + "yaml": "mediainfo-lib.yml", + "html": "mediainfo-lib.html", + "license": "mediainfo-lib.LICENSE" + }, + { + "license_key": "mediatek-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mediatek-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mediatek-firmware.json", + "yaml": "mediatek-firmware.yml", + "html": "mediatek-firmware.html", + "license": "mediatek-firmware.LICENSE" + }, + { + "license_key": "mediatek-no-warranty", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mediatek-no-warranty", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mediatek-no-warranty.json", + "yaml": "mediatek-no-warranty.yml", + "html": "mediatek-no-warranty.html", + "license": "mediatek-no-warranty.LICENSE" + }, + { + "license_key": "mediatek-proprietary-2008", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mediatek-proprietary-2008", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mediatek-proprietary-2008.json", + "yaml": "mediatek-proprietary-2008.yml", + "html": "mediatek-proprietary-2008.html", + "license": "mediatek-proprietary-2008.LICENSE" + }, + { + "license_key": "melange", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-melange", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "melange.json", + "yaml": "melange.yml", + "html": "melange.html", + "license": "melange.LICENSE" + }, + { + "license_key": "mentalis", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "mentalis.json", + "yaml": "mentalis.yml", + "html": "mentalis.html", + "license": "mentalis.LICENSE" + }, + { + "license_key": "merit-network-derivative", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-merit-network-derivative", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "merit-network-derivative.json", + "yaml": "merit-network-derivative.yml", + "html": "merit-network-derivative.html", + "license": "merit-network-derivative.LICENSE" + }, + { + "license_key": "metageek-inssider-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-metageek-inssider-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "metageek-inssider-eula.json", + "yaml": "metageek-inssider-eula.yml", + "html": "metageek-inssider-eula.html", + "license": "metageek-inssider-eula.LICENSE" + }, + { + "license_key": "metamail", + "category": "Permissive", + "spdx_license_key": "metamail", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "metamail.json", + "yaml": "metamail.yml", + "html": "metamail.html", + "license": "metamail.LICENSE" + }, + { + "license_key": "metrolink-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-metrolink-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "metrolink-1.0.json", + "yaml": "metrolink-1.0.yml", + "html": "metrolink-1.0.html", + "license": "metrolink-1.0.LICENSE" + }, + { + "license_key": "mgopen-font-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mgopen-font-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mgopen-font-license.json", + "yaml": "mgopen-font-license.yml", + "html": "mgopen-font-license.html", + "license": "mgopen-font-license.LICENSE" + }, + { + "license_key": "michael-barr", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-michael-barr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "michael-barr.json", + "yaml": "michael-barr.yml", + "html": "michael-barr.html", + "license": "michael-barr.LICENSE" + }, + { + "license_key": "michigan-disclaimer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-michigan-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "michigan-disclaimer.json", + "yaml": "michigan-disclaimer.yml", + "html": "michigan-disclaimer.html", + "license": "michigan-disclaimer.LICENSE" + }, + { + "license_key": "microchip-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-microchip-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "microchip-linux-firmware.json", + "yaml": "microchip-linux-firmware.yml", + "html": "microchip-linux-firmware.html", + "license": "microchip-linux-firmware.LICENSE" + }, + { + "license_key": "microchip-products-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-microchip-products-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "microchip-products-2018.json", + "yaml": "microchip-products-2018.yml", + "html": "microchip-products-2018.html", + "license": "microchip-products-2018.LICENSE" + }, + { + "license_key": "microsoft-enterprise-library-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-enterprise-library-eula", + "other_spdx_license_keys": [ + "LicenseRef-scancode-microsoft-enterprise-library-eula" + ], + "is_exception": false, + "is_deprecated": false, + "json": "microsoft-enterprise-library-eula.json", + "yaml": "microsoft-enterprise-library-eula.yml", + "html": "microsoft-enterprise-library-eula.html", + "license": "microsoft-enterprise-library-eula.LICENSE" + }, + { + "license_key": "microsoft-windows-rally-devkit", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-microsoft-windows-rally-devkit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "microsoft-windows-rally-devkit.json", + "yaml": "microsoft-windows-rally-devkit.yml", + "html": "microsoft-windows-rally-devkit.html", + "license": "microsoft-windows-rally-devkit.LICENSE" + }, + { + "license_key": "mif-exception", + "category": "Copyleft Limited", + "spdx_license_key": "mif-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "mif-exception.json", + "yaml": "mif-exception.yml", + "html": "mif-exception.html", + "license": "mif-exception.LICENSE" + }, + { + "license_key": "mike95", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-mike95", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mike95.json", + "yaml": "mike95.yml", + "html": "mike95.html", + "license": "mike95.LICENSE" + }, + { + "license_key": "minecraft-mod", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-minecraft-mod", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "minecraft-mod.json", + "yaml": "minecraft-mod.yml", + "html": "minecraft-mod.html", + "license": "minecraft-mod.LICENSE" + }, + { + "license_key": "mini-xml", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "mini-xml.json", + "yaml": "mini-xml.yml", + "html": "mini-xml.html", + "license": "mini-xml.LICENSE" + }, + { + "license_key": "mini-xml-exception-lgpl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-mini-xml-exception-lgpl-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "mini-xml-exception-lgpl-2.0.json", + "yaml": "mini-xml-exception-lgpl-2.0.yml", + "html": "mini-xml-exception-lgpl-2.0.html", + "license": "mini-xml-exception-lgpl-2.0.LICENSE" + }, + { + "license_key": "minpack", + "category": "Permissive", + "spdx_license_key": "Minpack", + "other_spdx_license_keys": [ + "LicenseRef-scancode-minpack" + ], + "is_exception": false, + "is_deprecated": false, + "json": "minpack.json", + "yaml": "minpack.yml", + "html": "minpack.html", + "license": "minpack.LICENSE" + }, + { + "license_key": "mir-os", + "category": "Permissive", + "spdx_license_key": "MirOS", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mir-os.json", + "yaml": "mir-os.yml", + "html": "mir-os.html", + "license": "mir-os.LICENSE" + }, + { + "license_key": "mit", + "category": "Permissive", + "spdx_license_key": "MIT", + "other_spdx_license_keys": [ + "LicenseRef-MIT-Bootstrap", + "LicenseRef-MIT-Discord", + "LicenseRef-MIT-TC", + "LicenseRef-MIT-Diehl" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mit.json", + "yaml": "mit.yml", + "html": "mit.html", + "license": "mit.LICENSE" + }, + { + "license_key": "mit-0", + "category": "Permissive", + "spdx_license_key": "MIT-0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ekioh" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mit-0.json", + "yaml": "mit-0.yml", + "html": "mit-0.html", + "license": "mit-0.LICENSE" + }, + { + "license_key": "mit-1995", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-1995", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-1995.json", + "yaml": "mit-1995.yml", + "html": "mit-1995.html", + "license": "mit-1995.LICENSE" + }, + { + "license_key": "mit-ack", + "category": "Permissive", + "spdx_license_key": "MIT-feh", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-ack.json", + "yaml": "mit-ack.yml", + "html": "mit-ack.html", + "license": "mit-ack.LICENSE" + }, + { + "license_key": "mit-addition", + "category": "Permissive", + "spdx_license_key": "MIT-Wu", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mit-addition" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mit-addition.json", + "yaml": "mit-addition.yml", + "html": "mit-addition.html", + "license": "mit-addition.LICENSE" + }, + { + "license_key": "mit-export-control", + "category": "Permissive", + "spdx_license_key": "Xerox", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-export-control.json", + "yaml": "mit-export-control.yml", + "html": "mit-export-control.html", + "license": "mit-export-control.LICENSE" + }, + { + "license_key": "mit-kyle-restrictions", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mit-kyle-restrictions", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-kyle-restrictions.json", + "yaml": "mit-kyle-restrictions.yml", + "html": "mit-kyle-restrictions.html", + "license": "mit-kyle-restrictions.LICENSE" + }, + { + "license_key": "mit-license-1998", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-license-1998", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-license-1998.json", + "yaml": "mit-license-1998.yml", + "html": "mit-license-1998.html", + "license": "mit-license-1998.LICENSE" + }, + { + "license_key": "mit-modern", + "category": "Permissive", + "spdx_license_key": "MIT-Modern-Variant", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mit-modern" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mit-modern.json", + "yaml": "mit-modern.yml", + "html": "mit-modern.html", + "license": "mit-modern.LICENSE" + }, + { + "license_key": "mit-nagy", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-nagy", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-nagy.json", + "yaml": "mit-nagy.yml", + "html": "mit-nagy.html", + "license": "mit-nagy.LICENSE" + }, + { + "license_key": "mit-no-advert-export-control", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-no-advert-export-control", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-no-advert-export-control.json", + "yaml": "mit-no-advert-export-control.yml", + "html": "mit-no-advert-export-control.html", + "license": "mit-no-advert-export-control.LICENSE" + }, + { + "license_key": "mit-no-false-attribs", + "category": "Permissive", + "spdx_license_key": "MITNFA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-no-false-attribs.json", + "yaml": "mit-no-false-attribs.yml", + "html": "mit-no-false-attribs.html", + "license": "mit-no-false-attribs.LICENSE" + }, + { + "license_key": "mit-no-trademarks", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-no-trademarks", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-no-trademarks.json", + "yaml": "mit-no-trademarks.yml", + "html": "mit-no-trademarks.html", + "license": "mit-no-trademarks.LICENSE" + }, + { + "license_key": "mit-old-style", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-old-style", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-old-style.json", + "yaml": "mit-old-style.yml", + "html": "mit-old-style.html", + "license": "mit-old-style.LICENSE" + }, + { + "license_key": "mit-old-style-no-advert", + "category": "Permissive", + "spdx_license_key": "NTP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-old-style-no-advert.json", + "yaml": "mit-old-style-no-advert.yml", + "html": "mit-old-style-no-advert.html", + "license": "mit-old-style-no-advert.LICENSE" + }, + { + "license_key": "mit-old-style-sparse", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-old-style-sparse", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-old-style-sparse.json", + "yaml": "mit-old-style-sparse.yml", + "html": "mit-old-style-sparse.html", + "license": "mit-old-style-sparse.LICENSE" + }, + { + "license_key": "mit-readme", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-readme", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-readme.json", + "yaml": "mit-readme.yml", + "html": "mit-readme.html", + "license": "mit-readme.LICENSE" + }, + { + "license_key": "mit-specification-disclaimer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-specification-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-specification-disclaimer.json", + "yaml": "mit-specification-disclaimer.yml", + "html": "mit-specification-disclaimer.html", + "license": "mit-specification-disclaimer.LICENSE" + }, + { + "license_key": "mit-synopsys", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-synopsys", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-synopsys.json", + "yaml": "mit-synopsys.yml", + "html": "mit-synopsys.html", + "license": "mit-synopsys.LICENSE" + }, + { + "license_key": "mit-taylor-variant", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mit-taylor-variant", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-taylor-variant.json", + "yaml": "mit-taylor-variant.yml", + "html": "mit-taylor-variant.html", + "license": "mit-taylor-variant.LICENSE" + }, + { + "license_key": "mit-testregex", + "category": "Permissive", + "spdx_license_key": "MIT-testregex", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mit-testregex.json", + "yaml": "mit-testregex.yml", + "html": "mit-testregex.html", + "license": "mit-testregex.LICENSE" + }, + { + "license_key": "mit-veillard-variant", + "category": "Permissive", + "spdx_license_key": "ISC-Veillard", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mit-veillard-variant" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mit-veillard-variant.json", + "yaml": "mit-veillard-variant.yml", + "html": "mit-veillard-variant.html", + "license": "mit-veillard-variant.LICENSE" + }, + { + "license_key": "mit-with-modification-obligations", + "category": "Permissive", + "spdx_license_key": "HPND-export-US-modify", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mit-with-modification-obligations", + "LicenseRef-scancode-mit-modification-obligations" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mit-with-modification-obligations.json", + "yaml": "mit-with-modification-obligations.yml", + "html": "mit-with-modification-obligations.html", + "license": "mit-with-modification-obligations.LICENSE" + }, + { + "license_key": "mit-xfig", + "category": "Permissive", + "spdx_license_key": "Xfig", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mit-xfig" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mit-xfig.json", + "yaml": "mit-xfig.yml", + "html": "mit-xfig.html", + "license": "mit-xfig.LICENSE" + }, + { + "license_key": "mmixware", + "category": "Permissive", + "spdx_license_key": "MMIXware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mmixware.json", + "yaml": "mmixware.yml", + "html": "mmixware.html", + "license": "mmixware.LICENSE" + }, + { + "license_key": "mod-dav-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mod-dav-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mod-dav-1.0.json", + "yaml": "mod-dav-1.0.yml", + "html": "mod-dav-1.0.html", + "license": "mod-dav-1.0.LICENSE" + }, + { + "license_key": "monetdb-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-monetdb-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "monetdb-1.1.json", + "yaml": "monetdb-1.1.yml", + "html": "monetdb-1.1.html", + "license": "monetdb-1.1.LICENSE" + }, + { + "license_key": "mongodb-sspl-1.0", + "category": "Source-available", + "spdx_license_key": "SSPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mongodb-sspl-1.0.json", + "yaml": "mongodb-sspl-1.0.yml", + "html": "mongodb-sspl-1.0.html", + "license": "mongodb-sspl-1.0.LICENSE" + }, + { + "license_key": "monkeysaudio", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-monkeysaudio", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "monkeysaudio.json", + "yaml": "monkeysaudio.yml", + "html": "monkeysaudio.html", + "license": "monkeysaudio.LICENSE" + }, + { + "license_key": "morbig-ieee-std-usage", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-morbig-ieee-std-usage", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "morbig-ieee-std-usage.json", + "yaml": "morbig-ieee-std-usage.yml", + "html": "morbig-ieee-std-usage.html", + "license": "morbig-ieee-std-usage.LICENSE" + }, + { + "license_key": "motorola", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-motorola", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "motorola.json", + "yaml": "motorola.yml", + "html": "motorola.html", + "license": "motorola.LICENSE" + }, + { + "license_key": "motosoto-0.9.1", + "category": "Copyleft", + "spdx_license_key": "Motosoto", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "motosoto-0.9.1.json", + "yaml": "motosoto-0.9.1.yml", + "html": "motosoto-0.9.1.html", + "license": "motosoto-0.9.1.LICENSE" + }, + { + "license_key": "moxa-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-moxa-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "moxa-linux-firmware.json", + "yaml": "moxa-linux-firmware.yml", + "html": "moxa-linux-firmware.html", + "license": "moxa-linux-firmware.LICENSE" + }, + { + "license_key": "mozilla-gc", + "category": "Permissive", + "spdx_license_key": "Boehm-GC", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mozilla-gc" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mozilla-gc.json", + "yaml": "mozilla-gc.yml", + "html": "mozilla-gc.html", + "license": "mozilla-gc.LICENSE" + }, + { + "license_key": "mozilla-ospl-1.0", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-mozilla-ospl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mozilla-ospl-1.0.json", + "yaml": "mozilla-ospl-1.0.yml", + "html": "mozilla-ospl-1.0.html", + "license": "mozilla-ospl-1.0.LICENSE" + }, + { + "license_key": "mpeg-7", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mpeg-7", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpeg-7.json", + "yaml": "mpeg-7.yml", + "html": "mpeg-7.html", + "license": "mpeg-7.LICENSE" + }, + { + "license_key": "mpeg-iso", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mpeg-iso", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpeg-iso.json", + "yaml": "mpeg-iso.yml", + "html": "mpeg-iso.html", + "license": "mpeg-iso.LICENSE" + }, + { + "license_key": "mpeg-ssg", + "category": "Permissive", + "spdx_license_key": "MPEG-SSG", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mpeg-ssg" + ], + "is_exception": false, + "is_deprecated": false, + "json": "mpeg-ssg.json", + "yaml": "mpeg-ssg.yml", + "html": "mpeg-ssg.html", + "license": "mpeg-ssg.LICENSE" + }, + { + "license_key": "mpi-permissive", + "category": "Permissive", + "spdx_license_key": "mpi-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpi-permissive.json", + "yaml": "mpi-permissive.yml", + "html": "mpi-permissive.html", + "license": "mpi-permissive.LICENSE" + }, + { + "license_key": "mpich", + "category": "Permissive", + "spdx_license_key": "mpich2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpich.json", + "yaml": "mpich.yml", + "html": "mpich.html", + "license": "mpich.LICENSE" + }, + { + "license_key": "mpl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "MPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpl-1.0.json", + "yaml": "mpl-1.0.yml", + "html": "mpl-1.0.html", + "license": "mpl-1.0.LICENSE" + }, + { + "license_key": "mpl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "MPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpl-1.1.json", + "yaml": "mpl-1.1.yml", + "html": "mpl-1.1.html", + "license": "mpl-1.1.LICENSE" + }, + { + "license_key": "mpl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "MPL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mpl-2.0.json", + "yaml": "mpl-2.0.yml", + "html": "mpl-2.0.html", + "license": "mpl-2.0.LICENSE" + }, + { + "license_key": "mpl-2.0-no-copyleft-exception", + "category": "Copyleft Limited", + "spdx_license_key": "MPL-2.0-no-copyleft-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "mpl-2.0-no-copyleft-exception.json", + "yaml": "mpl-2.0-no-copyleft-exception.yml", + "html": "mpl-2.0-no-copyleft-exception.html", + "license": "mpl-2.0-no-copyleft-exception.LICENSE" + }, + { + "license_key": "ms-api-code-pack-net", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-api-code-pack-net", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-api-code-pack-net.json", + "yaml": "ms-api-code-pack-net.yml", + "html": "ms-api-code-pack-net.html", + "license": "ms-api-code-pack-net.LICENSE" + }, + { + "license_key": "ms-asp-net-ajax-supplemental-terms", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-ajax-supp-terms", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-asp-net-ajax-supplemental-terms" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-ajax-supplemental-terms.json", + "yaml": "ms-asp-net-ajax-supplemental-terms.yml", + "html": "ms-asp-net-ajax-supplemental-terms.html", + "license": "ms-asp-net-ajax-supplemental-terms.LICENSE" + }, + { + "license_key": "ms-asp-net-mvc3", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-mvc3.json", + "yaml": "ms-asp-net-mvc3.yml", + "html": "ms-asp-net-mvc3.html", + "license": "ms-asp-net-mvc3.LICENSE" + }, + { + "license_key": "ms-asp-net-mvc4", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-mvc4.json", + "yaml": "ms-asp-net-mvc4.yml", + "html": "ms-asp-net-mvc4.html", + "license": "ms-asp-net-mvc4.LICENSE" + }, + { + "license_key": "ms-asp-net-mvc4-extensions", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-mvc4-extensions", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-mvc4-extensions.json", + "yaml": "ms-asp-net-mvc4-extensions.yml", + "html": "ms-asp-net-mvc4-extensions.html", + "license": "ms-asp-net-mvc4-extensions.LICENSE" + }, + { + "license_key": "ms-asp-net-software", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-software", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-software.json", + "yaml": "ms-asp-net-software.yml", + "html": "ms-asp-net-software.html", + "license": "ms-asp-net-software.LICENSE" + }, + { + "license_key": "ms-asp-net-tools-pre-release", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-tools-pre-release", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-tools-pre-release.json", + "yaml": "ms-asp-net-tools-pre-release.yml", + "html": "ms-asp-net-tools-pre-release.html", + "license": "ms-asp-net-tools-pre-release.LICENSE" + }, + { + "license_key": "ms-asp-net-web-optimization-framework", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-optimization", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-asp-net-web-optimization-framework" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-web-optimization-framework.json", + "yaml": "ms-asp-net-web-optimization-framework.yml", + "html": "ms-asp-net-web-optimization-framework.html", + "license": "ms-asp-net-web-optimization-framework.LICENSE" + }, + { + "license_key": "ms-asp-net-web-pages-2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-pages-2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-web-pages-2.json", + "yaml": "ms-asp-net-web-pages-2.yml", + "html": "ms-asp-net-web-pages-2.html", + "license": "ms-asp-net-web-pages-2.LICENSE" + }, + { + "license_key": "ms-asp-net-web-pages-templates", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-asp-net-web-pages-templates", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-asp-net-web-pages-templates.json", + "yaml": "ms-asp-net-web-pages-templates.yml", + "html": "ms-asp-net-web-pages-templates.html", + "license": "ms-asp-net-web-pages-templates.LICENSE" + }, + { + "license_key": "ms-azure-data-studio", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-azure-data-studio", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-azure-data-studio.json", + "yaml": "ms-azure-data-studio.yml", + "html": "ms-azure-data-studio.html", + "license": "ms-azure-data-studio.LICENSE" + }, + { + "license_key": "ms-azure-spatialanchors-2.9.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-azure-spatialanchors-2.9.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-azure-spatialanchors-2.9.0.json", + "yaml": "ms-azure-spatialanchors-2.9.0.yml", + "html": "ms-azure-spatialanchors-2.9.0.html", + "license": "ms-azure-spatialanchors-2.9.0.LICENSE" + }, + { + "license_key": "ms-capicom", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-capicom", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-capicom.json", + "yaml": "ms-capicom.yml", + "html": "ms-capicom.html", + "license": "ms-capicom.LICENSE" + }, + { + "license_key": "ms-cl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-ms-cl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-cl.json", + "yaml": "ms-cl.yml", + "html": "ms-cl.html", + "license": "ms-cl.LICENSE" + }, + { + "license_key": "ms-cla", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-ms-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-cla.json", + "yaml": "ms-cla.yml", + "html": "ms-cla.html", + "license": "ms-cla.LICENSE" + }, + { + "license_key": "ms-control-spy-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-control-spy-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-control-spy-2.0.json", + "yaml": "ms-control-spy-2.0.yml", + "html": "ms-control-spy-2.0.html", + "license": "ms-control-spy-2.0.LICENSE" + }, + { + "license_key": "ms-data-tier-af-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-data-tier-af-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-data-tier-af-2022.json", + "yaml": "ms-data-tier-af-2022.yml", + "html": "ms-data-tier-af-2022.html", + "license": "ms-data-tier-af-2022.LICENSE" + }, + { + "license_key": "ms-developer-services-agreement", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-dev-services-agreement", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-developer-services-agreement" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-developer-services-agreement.json", + "yaml": "ms-developer-services-agreement.yml", + "html": "ms-developer-services-agreement.html", + "license": "ms-developer-services-agreement.LICENSE" + }, + { + "license_key": "ms-developer-services-agreement-2018-06", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-dev-services-2018-06", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-developer-services-agreement-2018-06" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-developer-services-agreement-2018-06.json", + "yaml": "ms-developer-services-agreement-2018-06.yml", + "html": "ms-developer-services-agreement-2018-06.html", + "license": "ms-developer-services-agreement-2018-06.LICENSE" + }, + { + "license_key": "ms-device-emulator-3.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-device-emulator-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-device-emulator-3.0.json", + "yaml": "ms-device-emulator-3.0.yml", + "html": "ms-device-emulator-3.0.html", + "license": "ms-device-emulator-3.0.LICENSE" + }, + { + "license_key": "ms-direct3d-d3d120n7-1.1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-direct3d-d3d120n7-1.1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-direct3d-d3d120n7-1.1.0.json", + "yaml": "ms-direct3d-d3d120n7-1.1.0.yml", + "html": "ms-direct3d-d3d120n7-1.1.0.html", + "license": "ms-direct3d-d3d120n7-1.1.0.LICENSE" + }, + { + "license_key": "ms-directx-sdk-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-directx-sdk-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-directx-sdk-eula.json", + "yaml": "ms-directx-sdk-eula.yml", + "html": "ms-directx-sdk-eula.html", + "license": "ms-directx-sdk-eula.LICENSE" + }, + { + "license_key": "ms-directx-sdk-eula-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-directx-sdk-eula-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-directx-sdk-eula-2020.json", + "yaml": "ms-directx-sdk-eula-2020.yml", + "html": "ms-directx-sdk-eula-2020.html", + "license": "ms-directx-sdk-eula-2020.LICENSE" + }, + { + "license_key": "ms-dxsdk-d3dx-9.29.952.3", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-dxsdk-d3dx-9.29.952.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-dxsdk-d3dx-9.29.952.3.json", + "yaml": "ms-dxsdk-d3dx-9.29.952.3.yml", + "html": "ms-dxsdk-d3dx-9.29.952.3.html", + "license": "ms-dxsdk-d3dx-9.29.952.3.LICENSE" + }, + { + "license_key": "ms-edge-devtools-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-edge-devtools-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-edge-devtools-2022.json", + "yaml": "ms-edge-devtools-2022.yml", + "html": "ms-edge-devtools-2022.html", + "license": "ms-edge-devtools-2022.LICENSE" + }, + { + "license_key": "ms-edge-webview2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-edge-webview2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-edge-webview2.json", + "yaml": "ms-edge-webview2.yml", + "html": "ms-edge-webview2.html", + "license": "ms-edge-webview2.LICENSE" + }, + { + "license_key": "ms-edge-webview2-fixed", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-edge-webview2-fixed", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-edge-webview2-fixed.json", + "yaml": "ms-edge-webview2-fixed.yml", + "html": "ms-edge-webview2-fixed.html", + "license": "ms-edge-webview2-fixed.LICENSE" + }, + { + "license_key": "ms-entity-framework-4.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-entity-framework-4.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-entity-framework-4.1.json", + "yaml": "ms-entity-framework-4.1.yml", + "html": "ms-entity-framework-4.1.html", + "license": "ms-entity-framework-4.1.LICENSE" + }, + { + "license_key": "ms-entity-framework-5", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-entity-framework-5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-entity-framework-5.json", + "yaml": "ms-entity-framework-5.yml", + "html": "ms-entity-framework-5.html", + "license": "ms-entity-framework-5.LICENSE" + }, + { + "license_key": "ms-eula-win-script-host", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-eula-win-script-host", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-eula-win-script-host.json", + "yaml": "ms-eula-win-script-host.yml", + "html": "ms-eula-win-script-host.html", + "license": "ms-eula-win-script-host.LICENSE" + }, + { + "license_key": "ms-exchange-server-2010-sp2-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-exchange-srv-2010-sp2-sdk", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-exchange-server-2010-sp2-sdk" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-exchange-server-2010-sp2-sdk.json", + "yaml": "ms-exchange-server-2010-sp2-sdk.yml", + "html": "ms-exchange-server-2010-sp2-sdk.html", + "license": "ms-exchange-server-2010-sp2-sdk.LICENSE" + }, + { + "license_key": "ms-iis-container-images-eula-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-iis-container-eula-2020", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-iis-container-images-eula-2020" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-iis-container-images-eula-2020.json", + "yaml": "ms-iis-container-images-eula-2020.yml", + "html": "ms-iis-container-images-eula-2020.html", + "license": "ms-iis-container-images-eula-2020.LICENSE" + }, + { + "license_key": "ms-ilmerge", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-ilmerge", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-ilmerge.json", + "yaml": "ms-ilmerge.yml", + "html": "ms-ilmerge.html", + "license": "ms-ilmerge.LICENSE" + }, + { + "license_key": "ms-invisible-eula-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-invisible-eula-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-invisible-eula-1.0.json", + "yaml": "ms-invisible-eula-1.0.yml", + "html": "ms-invisible-eula-1.0.html", + "license": "ms-invisible-eula-1.0.LICENSE" + }, + { + "license_key": "ms-jdbc-driver-40-sql-server", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-40-sql-server", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-jdbc-driver-40-sql-server.json", + "yaml": "ms-jdbc-driver-40-sql-server.yml", + "html": "ms-jdbc-driver-40-sql-server.html", + "license": "ms-jdbc-driver-40-sql-server.LICENSE" + }, + { + "license_key": "ms-jdbc-driver-41-sql-server", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-41-sql-server", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-jdbc-driver-41-sql-server.json", + "yaml": "ms-jdbc-driver-41-sql-server.yml", + "html": "ms-jdbc-driver-41-sql-server.html", + "license": "ms-jdbc-driver-41-sql-server.LICENSE" + }, + { + "license_key": "ms-jdbc-driver-60-sql-server", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-jdbc-driver-60-sql-server", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-jdbc-driver-60-sql-server.json", + "yaml": "ms-jdbc-driver-60-sql-server.yml", + "html": "ms-jdbc-driver-60-sql-server.html", + "license": "ms-jdbc-driver-60-sql-server.LICENSE" + }, + { + "license_key": "ms-kinext-win-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-kinext-win-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-kinext-win-sdk.json", + "yaml": "ms-kinext-win-sdk.yml", + "html": "ms-kinext-win-sdk.html", + "license": "ms-kinext-win-sdk.LICENSE" + }, + { + "license_key": "ms-limited-community", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-limited-community", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-limited-community.json", + "yaml": "ms-limited-community.yml", + "html": "ms-limited-community.html", + "license": "ms-limited-community.LICENSE" + }, + { + "license_key": "ms-limited-public", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ms-limited-public.json", + "yaml": "ms-limited-public.yml", + "html": "ms-limited-public.html", + "license": "ms-limited-public.LICENSE" + }, + { + "license_key": "ms-lpl", + "category": "Permissive", + "spdx_license_key": "MS-LPL", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-lpl" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-lpl.json", + "yaml": "ms-lpl.yml", + "html": "ms-lpl.html", + "license": "ms-lpl.LICENSE" + }, + { + "license_key": "ms-msn-webgrease", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-msn-webgrease", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-msn-webgrease.json", + "yaml": "ms-msn-webgrease.yml", + "html": "ms-msn-webgrease.html", + "license": "ms-msn-webgrease.LICENSE" + }, + { + "license_key": "ms-net-framework-4-supplemental-terms", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-net-framework-4-supp-terms", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-net-framework-4-supplemental-terms" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-framework-4-supplemental-terms.json", + "yaml": "ms-net-framework-4-supplemental-terms.yml", + "html": "ms-net-framework-4-supplemental-terms.html", + "license": "ms-net-framework-4-supplemental-terms.LICENSE" + }, + { + "license_key": "ms-net-framework-deployment", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-net-framework-deployment", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-framework-deployment.json", + "yaml": "ms-net-framework-deployment.yml", + "html": "ms-net-framework-deployment.html", + "license": "ms-net-framework-deployment.LICENSE" + }, + { + "license_key": "ms-net-library", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-net-library", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-library.json", + "yaml": "ms-net-library.yml", + "html": "ms-net-library.html", + "license": "ms-net-library.LICENSE" + }, + { + "license_key": "ms-net-library-2016-05", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-net-library-2016-05", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-library-2016-05.json", + "yaml": "ms-net-library-2016-05.yml", + "html": "ms-net-library-2016-05.html", + "license": "ms-net-library-2016-05.LICENSE" + }, + { + "license_key": "ms-net-library-2018-11", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-net-library-2018-11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-library-2018-11.json", + "yaml": "ms-net-library-2018-11.yml", + "html": "ms-net-library-2018-11.html", + "license": "ms-net-library-2018-11.LICENSE" + }, + { + "license_key": "ms-net-library-2019-06", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-net-library-2019-06", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-library-2019-06.json", + "yaml": "ms-net-library-2019-06.yml", + "html": "ms-net-library-2019-06.html", + "license": "ms-net-library-2019-06.LICENSE" + }, + { + "license_key": "ms-net-library-2020-09", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-net-library-2020-09", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-net-library-2020-09.json", + "yaml": "ms-net-library-2020-09.yml", + "html": "ms-net-library-2020-09.html", + "license": "ms-net-library-2020-09.LICENSE" + }, + { + "license_key": "ms-nt-resource-kit", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-nt-resource-kit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-nt-resource-kit.json", + "yaml": "ms-nt-resource-kit.yml", + "html": "ms-nt-resource-kit.html", + "license": "ms-nt-resource-kit.LICENSE" + }, + { + "license_key": "ms-nuget", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-nuget", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-nuget.json", + "yaml": "ms-nuget.yml", + "html": "ms-nuget.html", + "license": "ms-nuget.LICENSE" + }, + { + "license_key": "ms-nuget-package-manager", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-nuget-package-manager", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-nuget-package-manager.json", + "yaml": "ms-nuget-package-manager.yml", + "html": "ms-nuget-package-manager.html", + "license": "ms-nuget-package-manager.LICENSE" + }, + { + "license_key": "ms-office-extensible-file", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-office-extensible-file", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-office-extensible-file.json", + "yaml": "ms-office-extensible-file.yml", + "html": "ms-office-extensible-file.html", + "license": "ms-office-extensible-file.LICENSE" + }, + { + "license_key": "ms-office-system-programs-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-office-system-programs-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-office-system-programs-eula.json", + "yaml": "ms-office-system-programs-eula.yml", + "html": "ms-office-system-programs-eula.html", + "license": "ms-office-system-programs-eula.LICENSE" + }, + { + "license_key": "ms-opus-patent-2012", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-ms-opus-patent-2012", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-opus-patent-2012.json", + "yaml": "ms-opus-patent-2012.yml", + "html": "ms-opus-patent-2012.html", + "license": "ms-opus-patent-2012.LICENSE" + }, + { + "license_key": "ms-patent-promise", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-ms-patent-promise", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-patent-promise.json", + "yaml": "ms-patent-promise.yml", + "html": "ms-patent-promise.html", + "license": "ms-patent-promise.LICENSE" + }, + { + "license_key": "ms-patent-promise-mono", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-ms-patent-promise-mono", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-patent-promise-mono.json", + "yaml": "ms-patent-promise-mono.yml", + "html": "ms-patent-promise-mono.html", + "license": "ms-patent-promise-mono.LICENSE" + }, + { + "license_key": "ms-permissive-1.1", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ms-permissive-1.1.json", + "yaml": "ms-permissive-1.1.yml", + "html": "ms-permissive-1.1.html", + "license": "ms-permissive-1.1.LICENSE" + }, + { + "license_key": "ms-pl", + "category": "Permissive", + "spdx_license_key": "MS-PL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-pl.json", + "yaml": "ms-pl.yml", + "html": "ms-pl.html", + "license": "ms-pl.LICENSE" + }, + { + "license_key": "ms-platform-sdk", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-platform-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-platform-sdk.json", + "yaml": "ms-platform-sdk.yml", + "html": "ms-platform-sdk.html", + "license": "ms-platform-sdk.LICENSE" + }, + { + "license_key": "ms-pre-release-sla-2023", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-pre-release-sla-2023", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-pre-release-sla-2023.json", + "yaml": "ms-pre-release-sla-2023.yml", + "html": "ms-pre-release-sla-2023.html", + "license": "ms-pre-release-sla-2023.LICENSE" + }, + { + "license_key": "ms-programsynthesis-7.22.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-programsynthesis-7.22.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-programsynthesis-7.22.0.json", + "yaml": "ms-programsynthesis-7.22.0.yml", + "html": "ms-programsynthesis-7.22.0.html", + "license": "ms-programsynthesis-7.22.0.LICENSE" + }, + { + "license_key": "ms-python-vscode-pylance-2021", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-python-vscode-pylance-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-python-vscode-pylance-2021.json", + "yaml": "ms-python-vscode-pylance-2021.yml", + "html": "ms-python-vscode-pylance-2021.html", + "license": "ms-python-vscode-pylance-2021.LICENSE" + }, + { + "license_key": "ms-reactive-extensions-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-reactive-extensions-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-reactive-extensions-eula.json", + "yaml": "ms-reactive-extensions-eula.yml", + "html": "ms-reactive-extensions-eula.html", + "license": "ms-reactive-extensions-eula.LICENSE" + }, + { + "license_key": "ms-refl", + "category": "Proprietary Free", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ms-refl.json", + "yaml": "ms-refl.yml", + "html": "ms-refl.html", + "license": "ms-refl.LICENSE" + }, + { + "license_key": "ms-remote-ndis-usb-kit", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-remote-ndis-usb-kit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-remote-ndis-usb-kit.json", + "yaml": "ms-remote-ndis-usb-kit.yml", + "html": "ms-remote-ndis-usb-kit.html", + "license": "ms-remote-ndis-usb-kit.LICENSE" + }, + { + "license_key": "ms-research-shared-source", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-research-shared-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-research-shared-source.json", + "yaml": "ms-research-shared-source.yml", + "html": "ms-research-shared-source.html", + "license": "ms-research-shared-source.LICENSE" + }, + { + "license_key": "ms-rl", + "category": "Copyleft Limited", + "spdx_license_key": "MS-RL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-rl.json", + "yaml": "ms-rl.yml", + "html": "ms-rl.html", + "license": "ms-rl.LICENSE" + }, + { + "license_key": "ms-rsl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-rsl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-rsl.json", + "yaml": "ms-rsl.yml", + "html": "ms-rsl.html", + "license": "ms-rsl.LICENSE" + }, + { + "license_key": "ms-silverlight-3", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-silverlight-3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-silverlight-3.json", + "yaml": "ms-silverlight-3.yml", + "html": "ms-silverlight-3.html", + "license": "ms-silverlight-3.LICENSE" + }, + { + "license_key": "ms-specification", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-ms-specification", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-specification.json", + "yaml": "ms-specification.yml", + "html": "ms-specification.html", + "license": "ms-specification.LICENSE" + }, + { + "license_key": "ms-sql-server-compact-4.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-sql-server-compact-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-sql-server-compact-4.0.json", + "yaml": "ms-sql-server-compact-4.0.yml", + "html": "ms-sql-server-compact-4.0.html", + "license": "ms-sql-server-compact-4.0.LICENSE" + }, + { + "license_key": "ms-sql-server-data-tools", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-sql-server-data-tools", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-sql-server-data-tools.json", + "yaml": "ms-sql-server-data-tools.yml", + "html": "ms-sql-server-data-tools.html", + "license": "ms-sql-server-data-tools.LICENSE" + }, + { + "license_key": "ms-sspl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ms-sspl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-sspl.json", + "yaml": "ms-sspl.yml", + "html": "ms-sspl.html", + "license": "ms-sspl.LICENSE" + }, + { + "license_key": "ms-sysinternals-sla", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-sysinternals-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-sysinternals-sla.json", + "yaml": "ms-sysinternals-sla.yml", + "html": "ms-sysinternals-sla.html", + "license": "ms-sysinternals-sla.LICENSE" + }, + { + "license_key": "ms-testplatform-17.0.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-testplatform-17.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-testplatform-17.0.0.json", + "yaml": "ms-testplatform-17.0.0.yml", + "html": "ms-testplatform-17.0.0.html", + "license": "ms-testplatform-17.0.0.LICENSE" + }, + { + "license_key": "ms-ttf-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-ttf-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-ttf-eula.json", + "yaml": "ms-ttf-eula.yml", + "html": "ms-ttf-eula.html", + "license": "ms-ttf-eula.LICENSE" + }, + { + "license_key": "ms-typescript-msbuild-4.1.4", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-typescript-msbuild-4.1.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-typescript-msbuild-4.1.4.json", + "yaml": "ms-typescript-msbuild-4.1.4.yml", + "html": "ms-typescript-msbuild-4.1.4.html", + "license": "ms-typescript-msbuild-4.1.4.LICENSE" + }, + { + "license_key": "ms-visual-2008-runtime", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-2008-runtime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-2008-runtime.json", + "yaml": "ms-visual-2008-runtime.yml", + "html": "ms-visual-2008-runtime.html", + "license": "ms-visual-2008-runtime.LICENSE" + }, + { + "license_key": "ms-visual-2010-runtime", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-2010-runtime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-2010-runtime.json", + "yaml": "ms-visual-2010-runtime.yml", + "html": "ms-visual-2010-runtime.html", + "license": "ms-visual-2010-runtime.LICENSE" + }, + { + "license_key": "ms-visual-2015-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-2015-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-2015-sdk.json", + "yaml": "ms-visual-2015-sdk.yml", + "html": "ms-visual-2015-sdk.html", + "license": "ms-visual-2015-sdk.LICENSE" + }, + { + "license_key": "ms-visual-cpp-2015-runtime", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-cpp-2015-runtime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-cpp-2015-runtime.json", + "yaml": "ms-visual-cpp-2015-runtime.yml", + "html": "ms-visual-cpp-2015-runtime.html", + "license": "ms-visual-cpp-2015-runtime.LICENSE" + }, + { + "license_key": "ms-visual-studio-2017", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-studio-2017.json", + "yaml": "ms-visual-studio-2017.yml", + "html": "ms-visual-studio-2017.html", + "license": "ms-visual-studio-2017.LICENSE" + }, + { + "license_key": "ms-visual-studio-2017-tools", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-2017-tools", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-studio-2017-tools.json", + "yaml": "ms-visual-studio-2017-tools.yml", + "html": "ms-visual-studio-2017-tools.html", + "license": "ms-visual-studio-2017-tools.LICENSE" + }, + { + "license_key": "ms-visual-studio-code", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-code", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-studio-code.json", + "yaml": "ms-visual-studio-code.yml", + "html": "ms-visual-studio-code.html", + "license": "ms-visual-studio-code.LICENSE" + }, + { + "license_key": "ms-visual-studio-code-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-code-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-studio-code-2018.json", + "yaml": "ms-visual-studio-code-2018.yml", + "html": "ms-visual-studio-code-2018.html", + "license": "ms-visual-studio-code-2018.LICENSE" + }, + { + "license_key": "ms-visual-studio-code-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-visual-studio-code-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-visual-studio-code-2022.json", + "yaml": "ms-visual-studio-code-2022.yml", + "html": "ms-visual-studio-code-2022.html", + "license": "ms-visual-studio-code-2022.LICENSE" + }, + { + "license_key": "ms-vs-addons-ext-17.2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-vs-addons-ext-17.2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-vs-addons-ext-17.2.0.json", + "yaml": "ms-vs-addons-ext-17.2.0.yml", + "html": "ms-vs-addons-ext-17.2.0.html", + "license": "ms-vs-addons-ext-17.2.0.LICENSE" + }, + { + "license_key": "ms-web-developer-tools-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-web-developer-tools-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-web-developer-tools-1.0.json", + "yaml": "ms-web-developer-tools-1.0.yml", + "html": "ms-web-developer-tools-1.0.html", + "license": "ms-web-developer-tools-1.0.LICENSE" + }, + { + "license_key": "ms-windows-container-base-image-eula-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-win-container-eula-2020", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-windows-container-base-image-eula-2020" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-container-base-image-eula-2020.json", + "yaml": "ms-windows-container-base-image-eula-2020.yml", + "html": "ms-windows-container-base-image-eula-2020.html", + "license": "ms-windows-container-base-image-eula-2020.LICENSE" + }, + { + "license_key": "ms-windows-driver-kit", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-windows-driver-kit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-driver-kit.json", + "yaml": "ms-windows-driver-kit.yml", + "html": "ms-windows-driver-kit.html", + "license": "ms-windows-driver-kit.LICENSE" + }, + { + "license_key": "ms-windows-identity-foundation", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-windows-identity-foundation", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-identity-foundation.json", + "yaml": "ms-windows-identity-foundation.yml", + "html": "ms-windows-identity-foundation.html", + "license": "ms-windows-identity-foundation.LICENSE" + }, + { + "license_key": "ms-windows-os-2018", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-windows-os-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-os-2018.json", + "yaml": "ms-windows-os-2018.yml", + "html": "ms-windows-os-2018.html", + "license": "ms-windows-os-2018.LICENSE" + }, + { + "license_key": "ms-windows-sdk-server-2008-net-3.5", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-win-sdk-server-2008-net-3.5", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ms-windows-sdk-server-2008-net-3.5" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-sdk-server-2008-net-3.5.json", + "yaml": "ms-windows-sdk-server-2008-net-3.5.yml", + "html": "ms-windows-sdk-server-2008-net-3.5.html", + "license": "ms-windows-sdk-server-2008-net-3.5.LICENSE" + }, + { + "license_key": "ms-windows-sdk-win10", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ms-windows-sdk-win10", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-sdk-win10.json", + "yaml": "ms-windows-sdk-win10.yml", + "html": "ms-windows-sdk-win10.html", + "license": "ms-windows-sdk-win10.LICENSE" + }, + { + "license_key": "ms-windows-sdk-win10-net-6", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-windows-sdk-win10-net-6", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-sdk-win10-net-6.json", + "yaml": "ms-windows-sdk-win10-net-6.yml", + "html": "ms-windows-sdk-win10-net-6.html", + "license": "ms-windows-sdk-win10-net-6.LICENSE" + }, + { + "license_key": "ms-windows-sdk-win7-net-4", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-windows-sdk-win7-net-4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-sdk-win7-net-4.json", + "yaml": "ms-windows-sdk-win7-net-4.yml", + "html": "ms-windows-sdk-win7-net-4.html", + "license": "ms-windows-sdk-win7-net-4.LICENSE" + }, + { + "license_key": "ms-windows-server-2003-ddk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-windows-server-2003-ddk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-server-2003-ddk.json", + "yaml": "ms-windows-server-2003-ddk.yml", + "html": "ms-windows-server-2003-ddk.html", + "license": "ms-windows-server-2003-ddk.LICENSE" + }, + { + "license_key": "ms-windows-server-2003-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-windows-server-2003-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-windows-server-2003-sdk.json", + "yaml": "ms-windows-server-2003-sdk.yml", + "html": "ms-windows-server-2003-sdk.html", + "license": "ms-windows-server-2003-sdk.LICENSE" + }, + { + "license_key": "ms-ws-routing-spec", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ms-ws-routing-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-ws-routing-spec.json", + "yaml": "ms-ws-routing-spec.yml", + "html": "ms-ws-routing-spec.html", + "license": "ms-ws-routing-spec.LICENSE" + }, + { + "license_key": "ms-xamarin-uitest3.2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-xamarin-uitest3.2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-xamarin-uitest3.2.0.json", + "yaml": "ms-xamarin-uitest3.2.0.yml", + "html": "ms-xamarin-uitest3.2.0.html", + "license": "ms-xamarin-uitest3.2.0.LICENSE" + }, + { + "license_key": "ms-xml-core-4.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ms-xml-core-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ms-xml-core-4.0.json", + "yaml": "ms-xml-core-4.0.yml", + "html": "ms-xml-core-4.0.html", + "license": "ms-xml-core-4.0.LICENSE" + }, + { + "license_key": "msdn-magazine-sample-code-2007", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-msdn-magazine-sample-code-2007", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "msdn-magazine-sample-code-2007.json", + "yaml": "msdn-magazine-sample-code-2007.yml", + "html": "msdn-magazine-sample-code-2007.html", + "license": "msdn-magazine-sample-code-2007.LICENSE" + }, + { + "license_key": "msj-sample-code", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-msj-sample-code", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "msj-sample-code.json", + "yaml": "msj-sample-code.yml", + "html": "msj-sample-code.html", + "license": "msj-sample-code.LICENSE" + }, + { + "license_key": "msntp", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-msntp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "msntp.json", + "yaml": "msntp.yml", + "html": "msntp.html", + "license": "msntp.LICENSE" + }, + { + "license_key": "msppl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-msppl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "msppl.json", + "yaml": "msppl.yml", + "html": "msppl.html", + "license": "msppl.LICENSE" + }, + { + "license_key": "mtll", + "category": "Permissive", + "spdx_license_key": "MTLL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mtll.json", + "yaml": "mtll.yml", + "html": "mtll.html", + "license": "mtll.LICENSE" + }, + { + "license_key": "mtx-licensing-statement", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mtx-licensing-statement", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mtx-licensing-statement.json", + "yaml": "mtx-licensing-statement.yml", + "html": "mtx-licensing-statement.html", + "license": "mtx-licensing-statement.LICENSE" + }, + { + "license_key": "mulanpsl-1.0", + "category": "Permissive", + "spdx_license_key": "MulanPSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mulanpsl-1.0.json", + "yaml": "mulanpsl-1.0.yml", + "html": "mulanpsl-1.0.html", + "license": "mulanpsl-1.0.LICENSE" + }, + { + "license_key": "mulanpsl-1.0-en", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mulanpsl-1.0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mulanpsl-1.0-en.json", + "yaml": "mulanpsl-1.0-en.yml", + "html": "mulanpsl-1.0-en.html", + "license": "mulanpsl-1.0-en.LICENSE" + }, + { + "license_key": "mulanpsl-2.0", + "category": "Permissive", + "spdx_license_key": "MulanPSL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mulanpsl-2.0.json", + "yaml": "mulanpsl-2.0.yml", + "html": "mulanpsl-2.0.html", + "license": "mulanpsl-2.0.LICENSE" + }, + { + "license_key": "mulanpsl-2.0-en", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mulanpsl-2.0-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mulanpsl-2.0-en.json", + "yaml": "mulanpsl-2.0-en.yml", + "html": "mulanpsl-2.0-en.html", + "license": "mulanpsl-2.0-en.LICENSE" + }, + { + "license_key": "mulanpubl-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-mulanpubl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mulanpubl-1.0.json", + "yaml": "mulanpubl-1.0.yml", + "html": "mulanpubl-1.0.html", + "license": "mulanpubl-1.0.LICENSE" + }, + { + "license_key": "mulanpubl-2.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-mulanpubl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mulanpubl-2.0.json", + "yaml": "mulanpubl-2.0.yml", + "html": "mulanpubl-2.0.html", + "license": "mulanpubl-2.0.LICENSE" + }, + { + "license_key": "mule-source-1.1.3", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-mule-source-1.1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mule-source-1.1.3.json", + "yaml": "mule-source-1.1.3.yml", + "html": "mule-source-1.1.3.html", + "license": "mule-source-1.1.3.LICENSE" + }, + { + "license_key": "mule-source-1.1.4", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-mule-source-1.1.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mule-source-1.1.4.json", + "yaml": "mule-source-1.1.4.yml", + "html": "mule-source-1.1.4.html", + "license": "mule-source-1.1.4.LICENSE" + }, + { + "license_key": "mulle-kybernetik", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mulle-kybernetik", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mulle-kybernetik.json", + "yaml": "mulle-kybernetik.yml", + "html": "mulle-kybernetik.html", + "license": "mulle-kybernetik.LICENSE" + }, + { + "license_key": "multics", + "category": "Permissive", + "spdx_license_key": "Multics", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "multics.json", + "yaml": "multics.yml", + "html": "multics.html", + "license": "multics.LICENSE" + }, + { + "license_key": "mup", + "category": "Permissive", + "spdx_license_key": "Mup", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mup.json", + "yaml": "mup.yml", + "html": "mup.html", + "license": "mup.LICENSE" + }, + { + "license_key": "musl-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-musl-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "musl-exception.json", + "yaml": "musl-exception.yml", + "html": "musl-exception.html", + "license": "musl-exception.LICENSE" + }, + { + "license_key": "mut-license", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-mut-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mut-license.json", + "yaml": "mut-license.yml", + "html": "mut-license.html", + "license": "mut-license.LICENSE" + }, + { + "license_key": "mvt-1.1", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-mvt-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mvt-1.1.json", + "yaml": "mvt-1.1.yml", + "html": "mvt-1.1.html", + "license": "mvt-1.1.LICENSE" + }, + { + "license_key": "mx4j", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-mx4j", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "mx4j.json", + "yaml": "mx4j.yml", + "html": "mx4j.html", + "license": "mx4j.LICENSE" + }, + { + "license_key": "mysql-connector-odbc-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-mysql-con-odbc-exception-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-mysql-connector-odbc-exception-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "mysql-connector-odbc-exception-2.0.json", + "yaml": "mysql-connector-odbc-exception-2.0.yml", + "html": "mysql-connector-odbc-exception-2.0.html", + "license": "mysql-connector-odbc-exception-2.0.LICENSE" + }, + { + "license_key": "mysql-floss-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-mysql-floss-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "mysql-floss-exception-2.0.json", + "yaml": "mysql-floss-exception-2.0.yml", + "html": "mysql-floss-exception-2.0.html", + "license": "mysql-floss-exception-2.0.LICENSE" + }, + { + "license_key": "mysql-linking-exception-2018", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-mysql-linking-exception-2018", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "mysql-linking-exception-2018.json", + "yaml": "mysql-linking-exception-2018.yml", + "html": "mysql-linking-exception-2018.html", + "license": "mysql-linking-exception-2018.LICENSE" + }, + { + "license_key": "n8n-ee-2022", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-n8n-ee-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "n8n-ee-2022.json", + "yaml": "n8n-ee-2022.yml", + "html": "n8n-ee-2022.html", + "license": "n8n-ee-2022.LICENSE" + }, + { + "license_key": "naist-2003", + "category": "Permissive", + "spdx_license_key": "NAIST-2003", + "other_spdx_license_keys": [ + "LicenseRef-scancode-naist-2003" + ], + "is_exception": false, + "is_deprecated": false, + "json": "naist-2003.json", + "yaml": "naist-2003.yml", + "html": "naist-2003.html", + "license": "naist-2003.LICENSE" + }, + { + "license_key": "nant-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-nant-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "nant-exception-2.0-plus.json", + "yaml": "nant-exception-2.0-plus.yml", + "html": "nant-exception-2.0-plus.html", + "license": "nant-exception-2.0-plus.LICENSE" + }, + { + "license_key": "nasa-1.3", + "category": "Copyleft Limited", + "spdx_license_key": "NASA-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nasa-1.3.json", + "yaml": "nasa-1.3.yml", + "html": "nasa-1.3.html", + "license": "nasa-1.3.LICENSE" + }, + { + "license_key": "naughter", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-naughter", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "naughter.json", + "yaml": "naughter.yml", + "html": "naughter.html", + "license": "naughter.LICENSE" + }, + { + "license_key": "naumen", + "category": "Permissive", + "spdx_license_key": "Naumen", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "naumen.json", + "yaml": "naumen.yml", + "html": "naumen.html", + "license": "naumen.LICENSE" + }, + { + "license_key": "nbpl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "NBPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nbpl-1.0.json", + "yaml": "nbpl-1.0.yml", + "html": "nbpl-1.0.html", + "license": "nbpl-1.0.LICENSE" + }, + { + "license_key": "ncbi", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-ncbi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ncbi.json", + "yaml": "ncbi.yml", + "html": "ncbi.html", + "license": "ncbi.LICENSE" + }, + { + "license_key": "ncgl-uk-2.0", + "category": "Free Restricted", + "spdx_license_key": "NCGL-UK-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ncgl-uk-2.0.json", + "yaml": "ncgl-uk-2.0.yml", + "html": "ncgl-uk-2.0.html", + "license": "ncgl-uk-2.0.LICENSE" + }, + { + "license_key": "ncsa-httpd-1995", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ncsa-httpd-1995", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ncsa-httpd-1995.json", + "yaml": "ncsa-httpd-1995.yml", + "html": "ncsa-httpd-1995.html", + "license": "ncsa-httpd-1995.LICENSE" + }, + { + "license_key": "nero-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-nero-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nero-eula.json", + "yaml": "nero-eula.yml", + "html": "nero-eula.html", + "license": "nero-eula.LICENSE" + }, + { + "license_key": "net-snmp", + "category": "Permissive", + "spdx_license_key": "Net-SNMP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "net-snmp.json", + "yaml": "net-snmp.yml", + "html": "net-snmp.html", + "license": "net-snmp.LICENSE" + }, + { + "license_key": "netapp-sdk-aug2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-netapp-sdk-aug2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netapp-sdk-aug2020.json", + "yaml": "netapp-sdk-aug2020.yml", + "html": "netapp-sdk-aug2020.html", + "license": "netapp-sdk-aug2020.LICENSE" + }, + { + "license_key": "netcat", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-netcat", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netcat.json", + "yaml": "netcat.yml", + "html": "netcat.html", + "license": "netcat.LICENSE" + }, + { + "license_key": "netcdf", + "category": "Permissive", + "spdx_license_key": "NetCDF", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netcdf.json", + "yaml": "netcdf.yml", + "html": "netcdf.html", + "license": "netcdf.LICENSE" + }, + { + "license_key": "netcomponents", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-netcomponents", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netcomponents.json", + "yaml": "netcomponents.yml", + "html": "netcomponents.html", + "license": "netcomponents.LICENSE" + }, + { + "license_key": "netdata-ncul1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-netdata-ncul1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netdata-ncul1.json", + "yaml": "netdata-ncul1.yml", + "html": "netdata-ncul1.html", + "license": "netdata-ncul1.LICENSE" + }, + { + "license_key": "netron", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-netron", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netron.json", + "yaml": "netron.yml", + "html": "netron.html", + "license": "netron.LICENSE" + }, + { + "license_key": "netronome-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-netronome-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "netronome-firmware.json", + "yaml": "netronome-firmware.yml", + "html": "netronome-firmware.html", + "license": "netronome-firmware.LICENSE" + }, + { + "license_key": "network-time-protocol", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "network-time-protocol.json", + "yaml": "network-time-protocol.yml", + "html": "network-time-protocol.html", + "license": "network-time-protocol.LICENSE" + }, + { + "license_key": "new-relic", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-new-relic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "new-relic.json", + "yaml": "new-relic.yml", + "html": "new-relic.html", + "license": "new-relic.LICENSE" + }, + { + "license_key": "newlib-historical", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-newlib-historical", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "newlib-historical.json", + "yaml": "newlib-historical.yml", + "html": "newlib-historical.html", + "license": "newlib-historical.LICENSE" + }, + { + "license_key": "newran", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-newran", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "newran.json", + "yaml": "newran.yml", + "html": "newran.html", + "license": "newran.LICENSE" + }, + { + "license_key": "newsletr", + "category": "Permissive", + "spdx_license_key": "Newsletr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "newsletr.json", + "yaml": "newsletr.yml", + "html": "newsletr.html", + "license": "newsletr.LICENSE" + }, + { + "license_key": "newton-king-cla", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-newton-king-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "newton-king-cla.json", + "yaml": "newton-king-cla.yml", + "html": "newton-king-cla.html", + "license": "newton-king-cla.LICENSE" + }, + { + "license_key": "nexb-eula-saas-1.1.0", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-nexb-eula-saas-1.1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nexb-eula-saas-1.1.0.json", + "yaml": "nexb-eula-saas-1.1.0.yml", + "html": "nexb-eula-saas-1.1.0.html", + "license": "nexb-eula-saas-1.1.0.LICENSE" + }, + { + "license_key": "nexb-ssla-1.1.0", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-nexb-ssla-1.1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nexb-ssla-1.1.0.json", + "yaml": "nexb-ssla-1.1.0.yml", + "html": "nexb-ssla-1.1.0.html", + "license": "nexb-ssla-1.1.0.LICENSE" + }, + { + "license_key": "ngpl", + "category": "Copyleft Limited", + "spdx_license_key": "NGPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ngpl.json", + "yaml": "ngpl.yml", + "html": "ngpl.html", + "license": "ngpl.LICENSE" + }, + { + "license_key": "nice", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nice.json", + "yaml": "nice.yml", + "html": "nice.html", + "license": "nice.LICENSE" + }, + { + "license_key": "nicta-exception", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-nicta-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "nicta-exception.json", + "yaml": "nicta-exception.yml", + "html": "nicta-exception.html", + "license": "nicta-exception.LICENSE" + }, + { + "license_key": "nicta-psl", + "category": "Permissive", + "spdx_license_key": "NICTA-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-nicta-psl" + ], + "is_exception": false, + "is_deprecated": false, + "json": "nicta-psl.json", + "yaml": "nicta-psl.yml", + "html": "nicta-psl.html", + "license": "nicta-psl.LICENSE" + }, + { + "license_key": "niels-ferguson", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-niels-ferguson", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "niels-ferguson.json", + "yaml": "niels-ferguson.yml", + "html": "niels-ferguson.html", + "license": "niels-ferguson.LICENSE" + }, + { + "license_key": "nilsson-historical", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nilsson-historical", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nilsson-historical.json", + "yaml": "nilsson-historical.yml", + "html": "nilsson-historical.html", + "license": "nilsson-historical.LICENSE" + }, + { + "license_key": "nist-pd", + "category": "Public Domain", + "spdx_license_key": "NIST-PD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nist-pd.json", + "yaml": "nist-pd.yml", + "html": "nist-pd.html", + "license": "nist-pd.LICENSE" + }, + { + "license_key": "nist-pd-fallback", + "category": "Permissive", + "spdx_license_key": "NIST-PD-fallback", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nist-pd-fallback.json", + "yaml": "nist-pd-fallback.yml", + "html": "nist-pd-fallback.html", + "license": "nist-pd-fallback.LICENSE" + }, + { + "license_key": "nist-software", + "category": "Permissive", + "spdx_license_key": "NIST-Software", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nist-software.json", + "yaml": "nist-software.yml", + "html": "nist-software.html", + "license": "nist-software.LICENSE" + }, + { + "license_key": "nist-srd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nist-srd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nist-srd.json", + "yaml": "nist-srd.yml", + "html": "nist-srd.html", + "license": "nist-srd.LICENSE" + }, + { + "license_key": "nlod-1.0", + "category": "Permissive", + "spdx_license_key": "NLOD-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nlod-1.0.json", + "yaml": "nlod-1.0.yml", + "html": "nlod-1.0.html", + "license": "nlod-1.0.LICENSE" + }, + { + "license_key": "nlod-2.0", + "category": "Permissive", + "spdx_license_key": "NLOD-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nlod-2.0.json", + "yaml": "nlod-2.0.yml", + "html": "nlod-2.0.html", + "license": "nlod-2.0.LICENSE" + }, + { + "license_key": "nlpl", + "category": "Public Domain", + "spdx_license_key": "NLPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nlpl.json", + "yaml": "nlpl.yml", + "html": "nlpl.html", + "license": "nlpl.LICENSE" + }, + { + "license_key": "no-license", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-no-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "no-license.json", + "yaml": "no-license.yml", + "html": "no-license.html", + "license": "no-license.LICENSE" + }, + { + "license_key": "node-js", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-node-js", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "node-js.json", + "yaml": "node-js.yml", + "html": "node-js.html", + "license": "node-js.LICENSE" + }, + { + "license_key": "nokia-qt-exception-1.1", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "nokia-qt-exception-1.1.json", + "yaml": "nokia-qt-exception-1.1.yml", + "html": "nokia-qt-exception-1.1.html", + "license": "nokia-qt-exception-1.1.LICENSE" + }, + { + "license_key": "nokos-1.0a", + "category": "Copyleft Limited", + "spdx_license_key": "Nokia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nokos-1.0a.json", + "yaml": "nokos-1.0a.yml", + "html": "nokos-1.0a.html", + "license": "nokos-1.0a.LICENSE" + }, + { + "license_key": "non-violent-4.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-non-violent-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "non-violent-4.0.json", + "yaml": "non-violent-4.0.yml", + "html": "non-violent-4.0.html", + "license": "non-violent-4.0.LICENSE" + }, + { + "license_key": "non-violent-7.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-non-violent-7.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "non-violent-7.0.json", + "yaml": "non-violent-7.0.yml", + "html": "non-violent-7.0.html", + "license": "non-violent-7.0.LICENSE" + }, + { + "license_key": "nonexclusive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nonexclusive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nonexclusive.json", + "yaml": "nonexclusive.yml", + "html": "nonexclusive.html", + "license": "nonexclusive.LICENSE" + }, + { + "license_key": "nortel-dasa", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nortel-dasa", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nortel-dasa.json", + "yaml": "nortel-dasa.yml", + "html": "nortel-dasa.html", + "license": "nortel-dasa.LICENSE" + }, + { + "license_key": "northwoods-sla-2021", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-northwoods-sla-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "northwoods-sla-2021.json", + "yaml": "northwoods-sla-2021.yml", + "html": "northwoods-sla-2021.html", + "license": "northwoods-sla-2021.LICENSE" + }, + { + "license_key": "nosl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "NOSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nosl-1.0.json", + "yaml": "nosl-1.0.yml", + "html": "nosl-1.0.html", + "license": "nosl-1.0.LICENSE" + }, + { + "license_key": "nosl-3.0", + "category": "Copyleft", + "spdx_license_key": "NPOSL-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nosl-3.0.json", + "yaml": "nosl-3.0.yml", + "html": "nosl-3.0.html", + "license": "nosl-3.0.LICENSE" + }, + { + "license_key": "notre-dame", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-notre-dame", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "notre-dame.json", + "yaml": "notre-dame.yml", + "html": "notre-dame.html", + "license": "notre-dame.LICENSE" + }, + { + "license_key": "noweb", + "category": "Copyleft Limited", + "spdx_license_key": "Noweb", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "noweb.json", + "yaml": "noweb.yml", + "html": "noweb.html", + "license": "noweb.LICENSE" + }, + { + "license_key": "npl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "NPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "npl-1.0.json", + "yaml": "npl-1.0.yml", + "html": "npl-1.0.html", + "license": "npl-1.0.LICENSE" + }, + { + "license_key": "npl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "NPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "npl-1.1.json", + "yaml": "npl-1.1.yml", + "html": "npl-1.1.html", + "license": "npl-1.1.LICENSE" + }, + { + "license_key": "npsl-exception-0.92", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-npsl-exception-0.92", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "npsl-exception-0.92.json", + "yaml": "npsl-exception-0.92.yml", + "html": "npsl-exception-0.92.html", + "license": "npsl-exception-0.92.LICENSE" + }, + { + "license_key": "npsl-exception-0.93", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-npsl-exception-0.93", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "npsl-exception-0.93.json", + "yaml": "npsl-exception-0.93.yml", + "html": "npsl-exception-0.93.html", + "license": "npsl-exception-0.93.LICENSE" + }, + { + "license_key": "npsl-exception-0.94", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-npsl-exception-0.94", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "npsl-exception-0.94.json", + "yaml": "npsl-exception-0.94.yml", + "html": "npsl-exception-0.94.html", + "license": "npsl-exception-0.94.LICENSE" + }, + { + "license_key": "npsl-exception-0.95", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-npsl-exception-0.95", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "npsl-exception-0.95.json", + "yaml": "npsl-exception-0.95.yml", + "html": "npsl-exception-0.95.html", + "license": "npsl-exception-0.95.LICENSE" + }, + { + "license_key": "nrl", + "category": "Permissive", + "spdx_license_key": "NRL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nrl.json", + "yaml": "nrl.yml", + "html": "nrl.html", + "license": "nrl.LICENSE" + }, + { + "license_key": "nrl-permission", + "category": "Permissive", + "spdx_license_key": "CMU-Mach-nodoc", + "other_spdx_license_keys": [ + "LicenseRef-scancode-nrl-permission" + ], + "is_exception": false, + "is_deprecated": false, + "json": "nrl-permission.json", + "yaml": "nrl-permission.yml", + "html": "nrl-permission.html", + "license": "nrl-permission.LICENSE" + }, + { + "license_key": "ntlm", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ntlm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ntlm.json", + "yaml": "ntlm.yml", + "html": "ntlm.html", + "license": "ntlm.LICENSE" + }, + { + "license_key": "ntp-0", + "category": "Permissive", + "spdx_license_key": "NTP-0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ntp-0.json", + "yaml": "ntp-0.yml", + "html": "ntp-0.html", + "license": "ntp-0.LICENSE" + }, + { + "license_key": "ntpl", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ntpl.json", + "yaml": "ntpl.yml", + "html": "ntpl.html", + "license": "ntpl.LICENSE" + }, + { + "license_key": "ntpl-origin", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ntpl-origin", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ntpl-origin.json", + "yaml": "ntpl-origin.yml", + "html": "ntpl-origin.html", + "license": "ntpl-origin.LICENSE" + }, + { + "license_key": "nucleusicons-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nucleusicons-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nucleusicons-eula.json", + "yaml": "nucleusicons-eula.yml", + "html": "nucleusicons-eula.html", + "license": "nucleusicons-eula.LICENSE" + }, + { + "license_key": "numerical-recipes-notice", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-numerical-recipes-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "numerical-recipes-notice.json", + "yaml": "numerical-recipes-notice.yml", + "html": "numerical-recipes-notice.html", + "license": "numerical-recipes-notice.LICENSE" + }, + { + "license_key": "nunit-v2", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "nunit-v2.json", + "yaml": "nunit-v2.yml", + "html": "nunit-v2.html", + "license": "nunit-v2.LICENSE" + }, + { + "license_key": "nvidia", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nvidia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia.json", + "yaml": "nvidia.yml", + "html": "nvidia.html", + "license": "nvidia.LICENSE" + }, + { + "license_key": "nvidia-2002", + "category": "Permissive", + "spdx_license_key": "AML-glslang", + "other_spdx_license_keys": [ + "LicenseRef-scancode-nvidia-2002" + ], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-2002.json", + "yaml": "nvidia-2002.yml", + "html": "nvidia-2002.html", + "license": "nvidia-2002.LICENSE" + }, + { + "license_key": "nvidia-apex-sdk-eula-2011", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nvidia-apex-sdk-eula-2011", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-apex-sdk-eula-2011.json", + "yaml": "nvidia-apex-sdk-eula-2011.yml", + "html": "nvidia-apex-sdk-eula-2011.html", + "license": "nvidia-apex-sdk-eula-2011.LICENSE" + }, + { + "license_key": "nvidia-cuda-supplement-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nvidia-cuda-supplement-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-cuda-supplement-2020.json", + "yaml": "nvidia-cuda-supplement-2020.yml", + "html": "nvidia-cuda-supplement-2020.html", + "license": "nvidia-cuda-supplement-2020.LICENSE" + }, + { + "license_key": "nvidia-gov", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nvidia-gov", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-gov.json", + "yaml": "nvidia-gov.yml", + "html": "nvidia-gov.html", + "license": "nvidia-gov.LICENSE" + }, + { + "license_key": "nvidia-isaac-eula-2019.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nvidia-isaac-eula-2019.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-isaac-eula-2019.1.json", + "yaml": "nvidia-isaac-eula-2019.1.yml", + "html": "nvidia-isaac-eula-2019.1.html", + "license": "nvidia-isaac-eula-2019.1.LICENSE" + }, + { + "license_key": "nvidia-ngx-eula-2019", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nvidia-ngx-eula-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-ngx-eula-2019.json", + "yaml": "nvidia-ngx-eula-2019.yml", + "html": "nvidia-ngx-eula-2019.html", + "license": "nvidia-ngx-eula-2019.LICENSE" + }, + { + "license_key": "nvidia-sdk-eula-v0.11", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nvidia-sdk-eula-v0.11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-sdk-eula-v0.11.json", + "yaml": "nvidia-sdk-eula-v0.11.yml", + "html": "nvidia-sdk-eula-v0.11.html", + "license": "nvidia-sdk-eula-v0.11.LICENSE" + }, + { + "license_key": "nvidia-video-codec-agreement", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nvidia-video-codec-agreement", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nvidia-video-codec-agreement.json", + "yaml": "nvidia-video-codec-agreement.yml", + "html": "nvidia-video-codec-agreement.html", + "license": "nvidia-video-codec-agreement.LICENSE" + }, + { + "license_key": "nwhm", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nwhm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nwhm.json", + "yaml": "nwhm.yml", + "html": "nwhm.html", + "license": "nwhm.LICENSE" + }, + { + "license_key": "nxp-firmware-patent", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nxp-firmware-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nxp-firmware-patent.json", + "yaml": "nxp-firmware-patent.yml", + "html": "nxp-firmware-patent.html", + "license": "nxp-firmware-patent.LICENSE" + }, + { + "license_key": "nxp-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nxp-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nxp-linux-firmware.json", + "yaml": "nxp-linux-firmware.yml", + "html": "nxp-linux-firmware.html", + "license": "nxp-linux-firmware.LICENSE" + }, + { + "license_key": "nxp-mc-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nxp-mc-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nxp-mc-firmware.json", + "yaml": "nxp-mc-firmware.yml", + "html": "nxp-mc-firmware.html", + "license": "nxp-mc-firmware.LICENSE" + }, + { + "license_key": "nxp-microcontroller-proprietary", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nxp-microctl-proprietary", + "other_spdx_license_keys": [ + "LicenseRef-scancode-nxp-microcontroller-proprietary" + ], + "is_exception": false, + "is_deprecated": false, + "json": "nxp-microcontroller-proprietary.json", + "yaml": "nxp-microcontroller-proprietary.yml", + "html": "nxp-microcontroller-proprietary.html", + "license": "nxp-microcontroller-proprietary.LICENSE" + }, + { + "license_key": "nxp-warranty-disclaimer", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-nxp-warranty-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nxp-warranty-disclaimer.json", + "yaml": "nxp-warranty-disclaimer.yml", + "html": "nxp-warranty-disclaimer.html", + "license": "nxp-warranty-disclaimer.LICENSE" + }, + { + "license_key": "nysl-0.9982", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nysl-0.9982", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nysl-0.9982.json", + "yaml": "nysl-0.9982.yml", + "html": "nysl-0.9982.html", + "license": "nysl-0.9982.LICENSE" + }, + { + "license_key": "nysl-0.9982-jp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-nysl-0.9982-jp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "nysl-0.9982-jp.json", + "yaml": "nysl-0.9982-jp.yml", + "html": "nysl-0.9982-jp.html", + "license": "nysl-0.9982-jp.LICENSE" + }, + { + "license_key": "o-uda-1.0", + "category": "Permissive", + "spdx_license_key": "O-UDA-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "o-uda-1.0.json", + "yaml": "o-uda-1.0.yml", + "html": "o-uda-1.0.html", + "license": "o-uda-1.0.LICENSE" + }, + { + "license_key": "o-young-jong", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-o-young-jong", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "o-young-jong.json", + "yaml": "o-young-jong.yml", + "html": "o-young-jong.html", + "license": "o-young-jong.LICENSE" + }, + { + "license_key": "oasis-ipr-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oasis-ipr-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oasis-ipr-2013.json", + "yaml": "oasis-ipr-2013.yml", + "html": "oasis-ipr-2013.html", + "license": "oasis-ipr-2013.LICENSE" + }, + { + "license_key": "oasis-ipr-policy-2014", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oasis-ipr-policy-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oasis-ipr-policy-2014.json", + "yaml": "oasis-ipr-policy-2014.yml", + "html": "oasis-ipr-policy-2014.html", + "license": "oasis-ipr-policy-2014.LICENSE" + }, + { + "license_key": "oasis-ws-security-spec", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-oasis-ws-security-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oasis-ws-security-spec.json", + "yaml": "oasis-ws-security-spec.yml", + "html": "oasis-ws-security-spec.html", + "license": "oasis-ws-security-spec.LICENSE" + }, + { + "license_key": "object-form-exception-to-mit", + "category": "Permissive", + "spdx_license_key": "fmt-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-object-form-exception-to-mit" + ], + "is_exception": true, + "is_deprecated": false, + "json": "object-form-exception-to-mit.json", + "yaml": "object-form-exception-to-mit.yml", + "html": "object-form-exception-to-mit.html", + "license": "object-form-exception-to-mit.LICENSE" + }, + { + "license_key": "ocaml-lgpl-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "OCaml-LGPL-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ocaml-lgpl-linking-exception.json", + "yaml": "ocaml-lgpl-linking-exception.yml", + "html": "ocaml-lgpl-linking-exception.html", + "license": "ocaml-lgpl-linking-exception.LICENSE" + }, + { + "license_key": "ocb-non-military-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ocb-non-military-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ocb-non-military-2013.json", + "yaml": "ocb-non-military-2013.yml", + "html": "ocb-non-military-2013.html", + "license": "ocb-non-military-2013.LICENSE" + }, + { + "license_key": "ocb-open-source-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ocb-open-source-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ocb-open-source-2013.json", + "yaml": "ocb-open-source-2013.yml", + "html": "ocb-open-source-2013.html", + "license": "ocb-open-source-2013.LICENSE" + }, + { + "license_key": "ocb-patent-openssl-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ocb-patent-openssl-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ocb-patent-openssl-2013.json", + "yaml": "ocb-patent-openssl-2013.yml", + "html": "ocb-patent-openssl-2013.html", + "license": "ocb-patent-openssl-2013.LICENSE" + }, + { + "license_key": "occt-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "OCCT-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "occt-exception-1.0.json", + "yaml": "occt-exception-1.0.yml", + "html": "occt-exception-1.0.html", + "license": "occt-exception-1.0.LICENSE" + }, + { + "license_key": "occt-pl", + "category": "Copyleft Limited", + "spdx_license_key": "OCCT-PL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "occt-pl.json", + "yaml": "occt-pl.yml", + "html": "occt-pl.html", + "license": "occt-pl.LICENSE" + }, + { + "license_key": "oclc-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-oclc-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oclc-1.0.json", + "yaml": "oclc-1.0.yml", + "html": "oclc-1.0.html", + "license": "oclc-1.0.LICENSE" + }, + { + "license_key": "oclc-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "OCLC-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oclc-2.0.json", + "yaml": "oclc-2.0.yml", + "html": "oclc-2.0.html", + "license": "oclc-2.0.LICENSE" + }, + { + "license_key": "ocsl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-ocsl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ocsl-1.0.json", + "yaml": "ocsl-1.0.yml", + "html": "ocsl-1.0.html", + "license": "ocsl-1.0.LICENSE" + }, + { + "license_key": "oculus-sdk", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-oculus-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oculus-sdk.json", + "yaml": "oculus-sdk.yml", + "html": "oculus-sdk.html", + "license": "oculus-sdk.LICENSE" + }, + { + "license_key": "oculus-sdk-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oculus-sdk-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oculus-sdk-2020.json", + "yaml": "oculus-sdk-2020.yml", + "html": "oculus-sdk-2020.html", + "license": "oculus-sdk-2020.LICENSE" + }, + { + "license_key": "oculus-sdk-3.5", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oculus-sdk-3.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oculus-sdk-3.5.json", + "yaml": "oculus-sdk-3.5.yml", + "html": "oculus-sdk-3.5.html", + "license": "oculus-sdk-3.5.LICENSE" + }, + { + "license_key": "odb-cpl", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-odb-cpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "odb-cpl.json", + "yaml": "odb-cpl.yml", + "html": "odb-cpl.html", + "license": "odb-cpl.LICENSE" + }, + { + "license_key": "odb-fpl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-odb-fpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "odb-fpl.json", + "yaml": "odb-fpl.yml", + "html": "odb-fpl.html", + "license": "odb-fpl.LICENSE" + }, + { + "license_key": "odb-ncuel", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-odb-ncuel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "odb-ncuel.json", + "yaml": "odb-ncuel.yml", + "html": "odb-ncuel.html", + "license": "odb-ncuel.LICENSE" + }, + { + "license_key": "odbl-1.0", + "category": "Copyleft", + "spdx_license_key": "ODbL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "odbl-1.0.json", + "yaml": "odbl-1.0.yml", + "html": "odbl-1.0.html", + "license": "odbl-1.0.LICENSE" + }, + { + "license_key": "odc-1.0", + "category": "Copyleft", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "odc-1.0.json", + "yaml": "odc-1.0.yml", + "html": "odc-1.0.html", + "license": "odc-1.0.LICENSE" + }, + { + "license_key": "odc-by-1.0", + "category": "Permissive", + "spdx_license_key": "ODC-By-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-odc-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "odc-by-1.0.json", + "yaml": "odc-by-1.0.yml", + "html": "odc-by-1.0.html", + "license": "odc-by-1.0.LICENSE" + }, + { + "license_key": "odl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-odl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "odl.json", + "yaml": "odl.yml", + "html": "odl.html", + "license": "odl.LICENSE" + }, + { + "license_key": "odmg", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-odmg", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "odmg.json", + "yaml": "odmg.yml", + "html": "odmg.html", + "license": "odmg.LICENSE" + }, + { + "license_key": "offis", + "category": "Permissive", + "spdx_license_key": "OFFIS", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "offis.json", + "yaml": "offis.yml", + "html": "offis.html", + "license": "offis.LICENSE" + }, + { + "license_key": "ofl-1.0", + "category": "Permissive", + "spdx_license_key": "OFL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofl-1.0.json", + "yaml": "ofl-1.0.yml", + "html": "ofl-1.0.html", + "license": "ofl-1.0.LICENSE" + }, + { + "license_key": "ofl-1.0-no-rfn", + "category": "Permissive", + "spdx_license_key": "OFL-1.0-no-RFN", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofl-1.0-no-rfn.json", + "yaml": "ofl-1.0-no-rfn.yml", + "html": "ofl-1.0-no-rfn.html", + "license": "ofl-1.0-no-rfn.LICENSE" + }, + { + "license_key": "ofl-1.0-rfn", + "category": "Permissive", + "spdx_license_key": "OFL-1.0-RFN", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofl-1.0-rfn.json", + "yaml": "ofl-1.0-rfn.yml", + "html": "ofl-1.0-rfn.html", + "license": "ofl-1.0-rfn.LICENSE" + }, + { + "license_key": "ofl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "OFL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofl-1.1.json", + "yaml": "ofl-1.1.yml", + "html": "ofl-1.1.html", + "license": "ofl-1.1.LICENSE" + }, + { + "license_key": "ofl-1.1-no-rfn", + "category": "Permissive", + "spdx_license_key": "OFL-1.1-no-RFN", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofl-1.1-no-rfn.json", + "yaml": "ofl-1.1-no-rfn.yml", + "html": "ofl-1.1-no-rfn.html", + "license": "ofl-1.1-no-rfn.LICENSE" + }, + { + "license_key": "ofl-1.1-rfn", + "category": "Permissive", + "spdx_license_key": "OFL-1.1-RFN", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofl-1.1-rfn.json", + "yaml": "ofl-1.1-rfn.yml", + "html": "ofl-1.1-rfn.html", + "license": "ofl-1.1-rfn.LICENSE" + }, + { + "license_key": "ofrak-community-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-ofrak-community-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ofrak-community-1.0.json", + "yaml": "ofrak-community-1.0.yml", + "html": "ofrak-community-1.0.html", + "license": "ofrak-community-1.0.LICENSE" + }, + { + "license_key": "ogc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ogc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogc.json", + "yaml": "ogc.yml", + "html": "ogc.html", + "license": "ogc.LICENSE" + }, + { + "license_key": "ogc-1.0", + "category": "Permissive", + "spdx_license_key": "OGC-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogc-1.0.json", + "yaml": "ogc-1.0.yml", + "html": "ogc-1.0.html", + "license": "ogc-1.0.LICENSE" + }, + { + "license_key": "ogc-2006", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ogc-2006.json", + "yaml": "ogc-2006.yml", + "html": "ogc-2006.html", + "license": "ogc-2006.LICENSE" + }, + { + "license_key": "ogc-document-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ogc-document-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogc-document-2020.json", + "yaml": "ogc-document-2020.yml", + "html": "ogc-document-2020.html", + "license": "ogc-document-2020.LICENSE" + }, + { + "license_key": "ogdl-taiwan-1.0", + "category": "Permissive", + "spdx_license_key": "OGDL-Taiwan-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogdl-taiwan-1.0.json", + "yaml": "ogdl-taiwan-1.0.yml", + "html": "ogdl-taiwan-1.0.html", + "license": "ogdl-taiwan-1.0.LICENSE" + }, + { + "license_key": "ogl-1.0a", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ogl-1.0a", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogl-1.0a.json", + "yaml": "ogl-1.0a.yml", + "html": "ogl-1.0a.html", + "license": "ogl-1.0a.LICENSE" + }, + { + "license_key": "ogl-canada-2.0-fr", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ogl-canada-2.0-fr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogl-canada-2.0-fr.json", + "yaml": "ogl-canada-2.0-fr.yml", + "html": "ogl-canada-2.0-fr.html", + "license": "ogl-canada-2.0-fr.LICENSE" + }, + { + "license_key": "ogl-uk-1.0", + "category": "Permissive", + "spdx_license_key": "OGL-UK-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogl-uk-1.0.json", + "yaml": "ogl-uk-1.0.yml", + "html": "ogl-uk-1.0.html", + "license": "ogl-uk-1.0.LICENSE" + }, + { + "license_key": "ogl-uk-2.0", + "category": "Permissive", + "spdx_license_key": "OGL-UK-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogl-uk-2.0.json", + "yaml": "ogl-uk-2.0.yml", + "html": "ogl-uk-2.0.html", + "license": "ogl-uk-2.0.LICENSE" + }, + { + "license_key": "ogl-uk-3.0", + "category": "Permissive", + "spdx_license_key": "OGL-UK-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogl-uk-3.0.json", + "yaml": "ogl-uk-3.0.yml", + "html": "ogl-uk-3.0.html", + "license": "ogl-uk-3.0.LICENSE" + }, + { + "license_key": "ogl-wpd-3.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ogl-wpd-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ogl-wpd-3.0.json", + "yaml": "ogl-wpd-3.0.yml", + "html": "ogl-wpd-3.0.html", + "license": "ogl-wpd-3.0.LICENSE" + }, + { + "license_key": "ohdl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-ohdl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ohdl-1.0.json", + "yaml": "ohdl-1.0.yml", + "html": "ohdl-1.0.html", + "license": "ohdl-1.0.LICENSE" + }, + { + "license_key": "okl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-okl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "okl.json", + "yaml": "okl.yml", + "html": "okl.html", + "license": "okl.LICENSE" + }, + { + "license_key": "olf-ccla-1.0", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-olf-ccla-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "olf-ccla-1.0.json", + "yaml": "olf-ccla-1.0.yml", + "html": "olf-ccla-1.0.html", + "license": "olf-ccla-1.0.LICENSE" + }, + { + "license_key": "olfl-1.3", + "category": "Permissive", + "spdx_license_key": "OLFL-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "olfl-1.3.json", + "yaml": "olfl-1.3.yml", + "html": "olfl-1.3.html", + "license": "olfl-1.3.LICENSE" + }, + { + "license_key": "oll-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-oll-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oll-1.0.json", + "yaml": "oll-1.0.yml", + "html": "oll-1.0.html", + "license": "oll-1.0.LICENSE" + }, + { + "license_key": "on2-patent", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-on2-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "on2-patent.json", + "yaml": "on2-patent.yml", + "html": "on2-patent.html", + "license": "on2-patent.LICENSE" + }, + { + "license_key": "ooura-2001", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ooura-2001", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ooura-2001.json", + "yaml": "ooura-2001.yml", + "html": "ooura-2001.html", + "license": "ooura-2001.LICENSE" + }, + { + "license_key": "open-diameter", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-open-diameter", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "open-diameter.json", + "yaml": "open-diameter.yml", + "html": "open-diameter.html", + "license": "open-diameter.LICENSE" + }, + { + "license_key": "open-public", + "category": "Copyleft Limited", + "spdx_license_key": "OPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "open-public.json", + "yaml": "open-public.yml", + "html": "open-public.html", + "license": "open-public.LICENSE" + }, + { + "license_key": "open-weights-permissive-1.0.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-open-weights-permissive-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "open-weights-permissive-1.0.0.json", + "yaml": "open-weights-permissive-1.0.0.yml", + "html": "open-weights-permissive-1.0.0.html", + "license": "open-weights-permissive-1.0.0.LICENSE" + }, + { + "license_key": "openai-tou-20230314", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-openai-tou-20230314", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openai-tou-20230314.json", + "yaml": "openai-tou-20230314.yml", + "html": "openai-tou-20230314.html", + "license": "openai-tou-20230314.LICENSE" + }, + { + "license_key": "openbd-exception-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openbd-exception-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openbd-exception-3.0.json", + "yaml": "openbd-exception-3.0.yml", + "html": "openbd-exception-3.0.html", + "license": "openbd-exception-3.0.LICENSE" + }, + { + "license_key": "opencarp-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-opencarp-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opencarp-1.0.json", + "yaml": "opencarp-1.0.yml", + "html": "opencarp-1.0.html", + "license": "opencarp-1.0.LICENSE" + }, + { + "license_key": "opengroup", + "category": "Copyleft Limited", + "spdx_license_key": "OGTSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opengroup.json", + "yaml": "opengroup.yml", + "html": "opengroup.html", + "license": "opengroup.LICENSE" + }, + { + "license_key": "opengroup-pl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-opengroup-pl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opengroup-pl.json", + "yaml": "opengroup-pl.yml", + "html": "opengroup-pl.html", + "license": "opengroup-pl.LICENSE" + }, + { + "license_key": "openi-pl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openi-pl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openi-pl-1.0.json", + "yaml": "openi-pl-1.0.yml", + "html": "openi-pl-1.0.html", + "license": "openi-pl-1.0.LICENSE" + }, + { + "license_key": "openjdk-assembly-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "OpenJDK-assembly-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openjdk-assembly-exception-1.0.json", + "yaml": "openjdk-assembly-exception-1.0.yml", + "html": "openjdk-assembly-exception-1.0.html", + "license": "openjdk-assembly-exception-1.0.LICENSE" + }, + { + "license_key": "openjdk-classpath-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openjdk-classpath-exception2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openjdk-classpath-exception-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "openjdk-classpath-exception-2.0.json", + "yaml": "openjdk-classpath-exception-2.0.yml", + "html": "openjdk-classpath-exception-2.0.html", + "license": "openjdk-classpath-exception-2.0.LICENSE" + }, + { + "license_key": "openjdk-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openjdk-exception", + "other_spdx_license_keys": [ + "Assembly-exception" + ], + "is_exception": true, + "is_deprecated": false, + "json": "openjdk-exception.json", + "yaml": "openjdk-exception.yml", + "html": "openjdk-exception.html", + "license": "openjdk-exception.LICENSE" + }, + { + "license_key": "openldap-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "OLDAP-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-1.1.json", + "yaml": "openldap-1.1.yml", + "html": "openldap-1.1.html", + "license": "openldap-1.1.LICENSE" + }, + { + "license_key": "openldap-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "OLDAP-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-1.2.json", + "yaml": "openldap-1.2.yml", + "html": "openldap-1.2.html", + "license": "openldap-1.2.LICENSE" + }, + { + "license_key": "openldap-1.3", + "category": "Copyleft Limited", + "spdx_license_key": "OLDAP-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-1.3.json", + "yaml": "openldap-1.3.yml", + "html": "openldap-1.3.html", + "license": "openldap-1.3.LICENSE" + }, + { + "license_key": "openldap-1.4", + "category": "Copyleft Limited", + "spdx_license_key": "OLDAP-1.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-1.4.json", + "yaml": "openldap-1.4.yml", + "html": "openldap-1.4.html", + "license": "openldap-1.4.LICENSE" + }, + { + "license_key": "openldap-2.0", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.0.json", + "yaml": "openldap-2.0.yml", + "html": "openldap-2.0.html", + "license": "openldap-2.0.LICENSE" + }, + { + "license_key": "openldap-2.0.1", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.0.1.json", + "yaml": "openldap-2.0.1.yml", + "html": "openldap-2.0.1.html", + "license": "openldap-2.0.1.LICENSE" + }, + { + "license_key": "openldap-2.1", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.1.json", + "yaml": "openldap-2.1.yml", + "html": "openldap-2.1.html", + "license": "openldap-2.1.LICENSE" + }, + { + "license_key": "openldap-2.2", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.2.json", + "yaml": "openldap-2.2.yml", + "html": "openldap-2.2.html", + "license": "openldap-2.2.LICENSE" + }, + { + "license_key": "openldap-2.2.1", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.2.1.json", + "yaml": "openldap-2.2.1.yml", + "html": "openldap-2.2.1.html", + "license": "openldap-2.2.1.LICENSE" + }, + { + "license_key": "openldap-2.2.2", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.2.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.2.2.json", + "yaml": "openldap-2.2.2.yml", + "html": "openldap-2.2.2.html", + "license": "openldap-2.2.2.LICENSE" + }, + { + "license_key": "openldap-2.3", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.3.json", + "yaml": "openldap-2.3.yml", + "html": "openldap-2.3.html", + "license": "openldap-2.3.LICENSE" + }, + { + "license_key": "openldap-2.4", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.4.json", + "yaml": "openldap-2.4.yml", + "html": "openldap-2.4.html", + "license": "openldap-2.4.LICENSE" + }, + { + "license_key": "openldap-2.5", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.5.json", + "yaml": "openldap-2.5.yml", + "html": "openldap-2.5.html", + "license": "openldap-2.5.LICENSE" + }, + { + "license_key": "openldap-2.6", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.6", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.6.json", + "yaml": "openldap-2.6.yml", + "html": "openldap-2.6.html", + "license": "openldap-2.6.LICENSE" + }, + { + "license_key": "openldap-2.7", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.7", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.7.json", + "yaml": "openldap-2.7.yml", + "html": "openldap-2.7.html", + "license": "openldap-2.7.LICENSE" + }, + { + "license_key": "openldap-2.8", + "category": "Permissive", + "spdx_license_key": "OLDAP-2.8", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openldap-2.8.json", + "yaml": "openldap-2.8.yml", + "html": "openldap-2.8.html", + "license": "openldap-2.8.LICENSE" + }, + { + "license_key": "openmap", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openmap", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openmap.json", + "yaml": "openmap.yml", + "html": "openmap.html", + "license": "openmap.LICENSE" + }, + { + "license_key": "openmarket-fastcgi", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-openmarket-fastcgi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openmarket-fastcgi.json", + "yaml": "openmarket-fastcgi.yml", + "html": "openmarket-fastcgi.html", + "license": "openmarket-fastcgi.LICENSE" + }, + { + "license_key": "openmotif-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openmotif-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openmotif-exception-2.0-plus.json", + "yaml": "openmotif-exception-2.0-plus.yml", + "html": "openmotif-exception-2.0-plus.html", + "license": "openmotif-exception-2.0-plus.LICENSE" + }, + { + "license_key": "openmrs-exception-to-mpl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openmrs-exception-to-mpl-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openmrs-exception-to-mpl-2.0.json", + "yaml": "openmrs-exception-to-mpl-2.0.yml", + "html": "openmrs-exception-to-mpl-2.0.html", + "license": "openmrs-exception-to-mpl-2.0.LICENSE" + }, + { + "license_key": "opennetcf-shared-source", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-opennetcf-shared-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opennetcf-shared-source.json", + "yaml": "opennetcf-shared-source.yml", + "html": "opennetcf-shared-source.html", + "license": "opennetcf-shared-source.LICENSE" + }, + { + "license_key": "openorb-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-openorb-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openorb-1.0.json", + "yaml": "openorb-1.0.yml", + "html": "openorb-1.0.html", + "license": "openorb-1.0.LICENSE" + }, + { + "license_key": "openpbs-2.3", + "category": "Copyleft Limited", + "spdx_license_key": "OpenPBS-2.3", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openpbs-2.3" + ], + "is_exception": false, + "is_deprecated": false, + "json": "openpbs-2.3.json", + "yaml": "openpbs-2.3.yml", + "html": "openpbs-2.3.html", + "license": "openpbs-2.3.LICENSE" + }, + { + "license_key": "openpub", + "category": "Permissive", + "spdx_license_key": "OPUBL-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openpub" + ], + "is_exception": false, + "is_deprecated": false, + "json": "openpub.json", + "yaml": "openpub.yml", + "html": "openpub.html", + "license": "openpub.LICENSE" + }, + { + "license_key": "opensaml-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-opensaml-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opensaml-1.0.json", + "yaml": "opensaml-1.0.yml", + "html": "opensaml-1.0.html", + "license": "opensaml-1.0.LICENSE" + }, + { + "license_key": "opensc-openssl-openpace-exception-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-openpace-exception-gpl", + "other_spdx_license_keys": [ + "LicenseRef-scancode-opensc-openssl-openpace-exception-gpl" + ], + "is_exception": true, + "is_deprecated": false, + "json": "opensc-openssl-openpace-exception-gpl.json", + "yaml": "opensc-openssl-openpace-exception-gpl.yml", + "html": "opensc-openssl-openpace-exception-gpl.html", + "license": "opensc-openssl-openpace-exception-gpl.LICENSE" + }, + { + "license_key": "openssh", + "category": "Permissive", + "spdx_license_key": "SSH-OpenSSH", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openssh.json", + "yaml": "openssh.yml", + "html": "openssh.html", + "license": "openssh.LICENSE" + }, + { + "license_key": "openssl", + "category": "Permissive", + "spdx_license_key": "OpenSSL-standalone", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl" + ], + "is_exception": false, + "is_deprecated": false, + "json": "openssl.json", + "yaml": "openssl.yml", + "html": "openssl.html", + "license": "openssl.LICENSE" + }, + { + "license_key": "openssl-exception-agpl-3.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-agpl-3.0.json", + "yaml": "openssl-exception-agpl-3.0.yml", + "html": "openssl-exception-agpl-3.0.html", + "license": "openssl-exception-agpl-3.0.LICENSE" + }, + { + "license_key": "openssl-exception-agpl-3.0-monit", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl3.0monit", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-agpl-3.0-monit" + ], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-agpl-3.0-monit.json", + "yaml": "openssl-exception-agpl-3.0-monit.yml", + "html": "openssl-exception-agpl-3.0-monit.html", + "license": "openssl-exception-agpl-3.0-monit.LICENSE" + }, + { + "license_key": "openssl-exception-agpl-3.0-plus", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-agpl3.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-agpl-3.0-plus" + ], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-agpl-3.0-plus.json", + "yaml": "openssl-exception-agpl-3.0-plus.yml", + "html": "openssl-exception-agpl-3.0-plus.html", + "license": "openssl-exception-agpl-3.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-gpl-2.0", + "category": "Copyleft", + "spdx_license_key": "x11vnc-openssl-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-gpl-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-gpl-2.0.json", + "yaml": "openssl-exception-gpl-2.0.yml", + "html": "openssl-exception-gpl-2.0.html", + "license": "openssl-exception-gpl-2.0.LICENSE" + }, + { + "license_key": "openssl-exception-gpl-2.0-plus", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-gpl-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-gpl-2.0-plus.json", + "yaml": "openssl-exception-gpl-2.0-plus.yml", + "html": "openssl-exception-gpl-2.0-plus.html", + "license": "openssl-exception-gpl-2.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-gpl-3.0-plus", + "category": "Copyleft", + "spdx_license_key": "cryptsetup-OpenSSL-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-gpl-3.0-plus" + ], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-gpl-3.0-plus.json", + "yaml": "openssl-exception-gpl-3.0-plus.yml", + "html": "openssl-exception-gpl-3.0-plus.html", + "license": "openssl-exception-gpl-3.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-lgpl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-lgpl.json", + "yaml": "openssl-exception-lgpl.yml", + "html": "openssl-exception-lgpl.html", + "license": "openssl-exception-lgpl.LICENSE" + }, + { + "license_key": "openssl-exception-lgpl-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl2.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-lgpl-2.0-plus" + ], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-lgpl-2.0-plus.json", + "yaml": "openssl-exception-lgpl-2.0-plus.yml", + "html": "openssl-exception-lgpl-2.0-plus.html", + "license": "openssl-exception-lgpl-2.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-lgpl-3.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-lgpl3.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-openssl-exception-lgpl-3.0-plus" + ], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-lgpl-3.0-plus.json", + "yaml": "openssl-exception-lgpl-3.0-plus.yml", + "html": "openssl-exception-lgpl-3.0-plus.html", + "license": "openssl-exception-lgpl-3.0-plus.LICENSE" + }, + { + "license_key": "openssl-exception-mongodb-sspl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-openssl-exception-mongodb-sspl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-exception-mongodb-sspl.json", + "yaml": "openssl-exception-mongodb-sspl.yml", + "html": "openssl-exception-mongodb-sspl.html", + "license": "openssl-exception-mongodb-sspl.LICENSE" + }, + { + "license_key": "openssl-nokia-psk-contribution", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-openssl-nokia-psk-contribution", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openssl-nokia-psk-contribution.json", + "yaml": "openssl-nokia-psk-contribution.yml", + "html": "openssl-nokia-psk-contribution.html", + "license": "openssl-nokia-psk-contribution.LICENSE" + }, + { + "license_key": "openssl-ssleay", + "category": "Permissive", + "spdx_license_key": "OpenSSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openssl-ssleay.json", + "yaml": "openssl-ssleay.yml", + "html": "openssl-ssleay.html", + "license": "openssl-ssleay.LICENSE" + }, + { + "license_key": "openvision", + "category": "Permissive", + "spdx_license_key": "OpenVision", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openvision.json", + "yaml": "openvision.yml", + "html": "openvision.html", + "license": "openvision.LICENSE" + }, + { + "license_key": "openvpn-as-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-openvpn-as-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openvpn-as-eula.json", + "yaml": "openvpn-as-eula.yml", + "html": "openvpn-as-eula.html", + "license": "openvpn-as-eula.LICENSE" + }, + { + "license_key": "openvpn-openssl-exception", + "category": "Copyleft Limited", + "spdx_license_key": "openvpn-openssl-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "openvpn-openssl-exception.json", + "yaml": "openvpn-openssl-exception.yml", + "html": "openvpn-openssl-exception.html", + "license": "openvpn-openssl-exception.LICENSE" + }, + { + "license_key": "openwall-md5-permissive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-openwall-md5-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "openwall-md5-permissive.json", + "yaml": "openwall-md5-permissive.yml", + "html": "openwall-md5-permissive.html", + "license": "openwall-md5-permissive.LICENSE" + }, + { + "license_key": "opera-eula-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-opera-eula-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opera-eula-2018.json", + "yaml": "opera-eula-2018.yml", + "html": "opera-eula-2018.html", + "license": "opera-eula-2018.LICENSE" + }, + { + "license_key": "opera-eula-eea-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-opera-eula-eea-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opera-eula-eea-2018.json", + "yaml": "opera-eula-eea-2018.yml", + "html": "opera-eula-eea-2018.html", + "license": "opera-eula-eea-2018.LICENSE" + }, + { + "license_key": "opera-widget-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-opera-widget-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opera-widget-1.0.json", + "yaml": "opera-widget-1.0.yml", + "html": "opera-widget-1.0.html", + "license": "opera-widget-1.0.LICENSE" + }, + { + "license_key": "opl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-opl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opl-1.0.json", + "yaml": "opl-1.0.yml", + "html": "opl-1.0.html", + "license": "opl-1.0.LICENSE" + }, + { + "license_key": "opl-uk-3.0", + "category": "Permissive", + "spdx_license_key": "OPL-UK-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opl-uk-3.0.json", + "yaml": "opl-uk-3.0.yml", + "html": "opl-uk-3.0.html", + "license": "opl-uk-3.0.LICENSE" + }, + { + "license_key": "opml-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-opml-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opml-1.0.json", + "yaml": "opml-1.0.yml", + "html": "opml-1.0.html", + "license": "opml-1.0.LICENSE" + }, + { + "license_key": "opnl-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-opnl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opnl-1.0.json", + "yaml": "opnl-1.0.yml", + "html": "opnl-1.0.html", + "license": "opnl-1.0.LICENSE" + }, + { + "license_key": "opnl-2.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-opnl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "opnl-2.0.json", + "yaml": "opnl-2.0.yml", + "html": "opnl-2.0.html", + "license": "opnl-2.0.LICENSE" + }, + { + "license_key": "oracle-bcl-javaee", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javaee", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bcl-javaee.json", + "yaml": "oracle-bcl-javaee.yml", + "html": "oracle-bcl-javaee.html", + "license": "oracle-bcl-javaee.LICENSE" + }, + { + "license_key": "oracle-bcl-javase-javafx-2012", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javase-javafx-2012", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bcl-javase-javafx-2012.json", + "yaml": "oracle-bcl-javase-javafx-2012.yml", + "html": "oracle-bcl-javase-javafx-2012.html", + "license": "oracle-bcl-javase-javafx-2012.LICENSE" + }, + { + "license_key": "oracle-bcl-javase-javafx-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-javase-javafx-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bcl-javase-javafx-2013.json", + "yaml": "oracle-bcl-javase-javafx-2013.yml", + "html": "oracle-bcl-javase-javafx-2013.html", + "license": "oracle-bcl-javase-javafx-2013.LICENSE" + }, + { + "license_key": "oracle-bcl-javase-platform-javafx-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-java-platform-2013", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2013" + ], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bcl-javase-platform-javafx-2013.json", + "yaml": "oracle-bcl-javase-platform-javafx-2013.yml", + "html": "oracle-bcl-javase-platform-javafx-2013.html", + "license": "oracle-bcl-javase-platform-javafx-2013.LICENSE" + }, + { + "license_key": "oracle-bcl-javase-platform-javafx-2017", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-java-platform-2017", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-bcl-javase-platform-javafx-2017" + ], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bcl-javase-platform-javafx-2017.json", + "yaml": "oracle-bcl-javase-platform-javafx-2017.yml", + "html": "oracle-bcl-javase-platform-javafx-2017.html", + "license": "oracle-bcl-javase-platform-javafx-2017.LICENSE" + }, + { + "license_key": "oracle-bcl-jsse-1.0.3", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-bcl-jsse-1.0.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bcl-jsse-1.0.3.json", + "yaml": "oracle-bcl-jsse-1.0.3.yml", + "html": "oracle-bcl-jsse-1.0.3.html", + "license": "oracle-bcl-jsse-1.0.3.LICENSE" + }, + { + "license_key": "oracle-bsd-no-nuclear", + "category": "Free Restricted", + "spdx_license_key": "BSD-3-Clause-No-Nuclear-License-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-bsd-no-nuclear.json", + "yaml": "oracle-bsd-no-nuclear.yml", + "html": "oracle-bsd-no-nuclear.html", + "license": "oracle-bsd-no-nuclear.LICENSE" + }, + { + "license_key": "oracle-code-samples-bsd", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-oracle-code-samples-bsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-code-samples-bsd.json", + "yaml": "oracle-code-samples-bsd.yml", + "html": "oracle-code-samples-bsd.html", + "license": "oracle-code-samples-bsd.LICENSE" + }, + { + "license_key": "oracle-commercial-database-11g2", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-oracle-commercial-db-11g2", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-commercial-database-11g2" + ], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-commercial-database-11g2.json", + "yaml": "oracle-commercial-database-11g2.yml", + "html": "oracle-commercial-database-11g2.html", + "license": "oracle-commercial-database-11g2.LICENSE" + }, + { + "license_key": "oracle-devtools-vsnet-dev", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-devtools-vsnet-dev", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-devtools-vsnet-dev.json", + "yaml": "oracle-devtools-vsnet-dev.yml", + "html": "oracle-devtools-vsnet-dev.html", + "license": "oracle-devtools-vsnet-dev.LICENSE" + }, + { + "license_key": "oracle-entitlement-05-15", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-entitlement-05-15", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-entitlement-05-15.json", + "yaml": "oracle-entitlement-05-15.yml", + "html": "oracle-entitlement-05-15.html", + "license": "oracle-entitlement-05-15.LICENSE" + }, + { + "license_key": "oracle-free-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-free-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-free-2018.json", + "yaml": "oracle-free-2018.yml", + "html": "oracle-free-2018.html", + "license": "oracle-free-2018.LICENSE" + }, + { + "license_key": "oracle-gftc-2023-06-12", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-gftc-2023-06-12", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-gftc-2023-06-12.json", + "yaml": "oracle-gftc-2023-06-12.yml", + "html": "oracle-gftc-2023-06-12.html", + "license": "oracle-gftc-2023-06-12.LICENSE" + }, + { + "license_key": "oracle-java-ee-sdk-2010", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-java-ee-sdk-2010", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-java-ee-sdk-2010.json", + "yaml": "oracle-java-ee-sdk-2010.yml", + "html": "oracle-java-ee-sdk-2010.html", + "license": "oracle-java-ee-sdk-2010.LICENSE" + }, + { + "license_key": "oracle-master-agreement", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-oracle-master-agreement", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-master-agreement.json", + "yaml": "oracle-master-agreement.yml", + "html": "oracle-master-agreement.html", + "license": "oracle-master-agreement.LICENSE" + }, + { + "license_key": "oracle-mysql-foss-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-oracle-mysql-foss-exception2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-mysql-foss-exception-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "oracle-mysql-foss-exception-2.0.json", + "yaml": "oracle-mysql-foss-exception-2.0.yml", + "html": "oracle-mysql-foss-exception-2.0.html", + "license": "oracle-mysql-foss-exception-2.0.LICENSE" + }, + { + "license_key": "oracle-nftc-2021", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-nftc-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-nftc-2021.json", + "yaml": "oracle-nftc-2021.yml", + "html": "oracle-nftc-2021.html", + "license": "oracle-nftc-2021.LICENSE" + }, + { + "license_key": "oracle-openjdk-classpath-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-oracle-openjdk-exception-2.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-oracle-openjdk-classpath-exception-2.0" + ], + "is_exception": true, + "is_deprecated": false, + "json": "oracle-openjdk-classpath-exception-2.0.json", + "yaml": "oracle-openjdk-classpath-exception-2.0.yml", + "html": "oracle-openjdk-classpath-exception-2.0.html", + "license": "oracle-openjdk-classpath-exception-2.0.LICENSE" + }, + { + "license_key": "oracle-otn-javase-2019", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-otn-javase-2019", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-otn-javase-2019.json", + "yaml": "oracle-otn-javase-2019.yml", + "html": "oracle-otn-javase-2019.html", + "license": "oracle-otn-javase-2019.LICENSE" + }, + { + "license_key": "oracle-sql-developer", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-sql-developer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-sql-developer.json", + "yaml": "oracle-sql-developer.yml", + "html": "oracle-sql-developer.html", + "license": "oracle-sql-developer.LICENSE" + }, + { + "license_key": "oracle-web-sites-tou", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-oracle-web-sites-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oracle-web-sites-tou.json", + "yaml": "oracle-web-sites-tou.yml", + "html": "oracle-web-sites-tou.html", + "license": "oracle-web-sites-tou.LICENSE" + }, + { + "license_key": "oreilly-notice", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-oreilly-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oreilly-notice.json", + "yaml": "oreilly-notice.yml", + "html": "oreilly-notice.html", + "license": "oreilly-notice.LICENSE" + }, + { + "license_key": "oset-pl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "OSET-PL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oset-pl-2.1.json", + "yaml": "oset-pl-2.1.yml", + "html": "oset-pl-2.1.html", + "license": "oset-pl-2.1.LICENSE" + }, + { + "license_key": "osetpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "osetpl-2.1.json", + "yaml": "osetpl-2.1.yml", + "html": "osetpl-2.1.html", + "license": "osetpl-2.1.LICENSE" + }, + { + "license_key": "osf-1990", + "category": "Permissive", + "spdx_license_key": "HP-1989", + "other_spdx_license_keys": [ + "LicenseRef-scancode-osf-1990" + ], + "is_exception": false, + "is_deprecated": false, + "json": "osf-1990.json", + "yaml": "osf-1990.yml", + "html": "osf-1990.html", + "license": "osf-1990.LICENSE" + }, + { + "license_key": "osgi-spec-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-osgi-spec-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "osgi-spec-2.0.json", + "yaml": "osgi-spec-2.0.yml", + "html": "osgi-spec-2.0.html", + "license": "osgi-spec-2.0.LICENSE" + }, + { + "license_key": "osl-1.0", + "category": "Copyleft", + "spdx_license_key": "OSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "osl-1.0.json", + "yaml": "osl-1.0.yml", + "html": "osl-1.0.html", + "license": "osl-1.0.LICENSE" + }, + { + "license_key": "osl-1.1", + "category": "Copyleft", + "spdx_license_key": "OSL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "osl-1.1.json", + "yaml": "osl-1.1.yml", + "html": "osl-1.1.html", + "license": "osl-1.1.LICENSE" + }, + { + "license_key": "osl-2.0", + "category": "Copyleft", + "spdx_license_key": "OSL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "osl-2.0.json", + "yaml": "osl-2.0.yml", + "html": "osl-2.0.html", + "license": "osl-2.0.LICENSE" + }, + { + "license_key": "osl-2.1", + "category": "Copyleft", + "spdx_license_key": "OSL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "osl-2.1.json", + "yaml": "osl-2.1.yml", + "html": "osl-2.1.html", + "license": "osl-2.1.LICENSE" + }, + { + "license_key": "osl-3.0", + "category": "Copyleft", + "spdx_license_key": "OSL-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "osl-3.0.json", + "yaml": "osl-3.0.yml", + "html": "osl-3.0.html", + "license": "osl-3.0.LICENSE" + }, + { + "license_key": "ossn-3.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ossn-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ossn-3.0.json", + "yaml": "ossn-3.0.yml", + "html": "ossn-3.0.html", + "license": "ossn-3.0.LICENSE" + }, + { + "license_key": "oswego-concurrent", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-oswego-concurrent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oswego-concurrent.json", + "yaml": "oswego-concurrent.yml", + "html": "oswego-concurrent.html", + "license": "oswego-concurrent.LICENSE" + }, + { + "license_key": "other-copyleft", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-other-copyleft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "other-copyleft.json", + "yaml": "other-copyleft.yml", + "html": "other-copyleft.html", + "license": "other-copyleft.LICENSE" + }, + { + "license_key": "other-permissive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-other-permissive", + "other_spdx_license_keys": [ + "LicenseRef-Fedora-UltraPermissive" + ], + "is_exception": false, + "is_deprecated": false, + "json": "other-permissive.json", + "yaml": "other-permissive.yml", + "html": "other-permissive.html", + "license": "other-permissive.LICENSE" + }, + { + "license_key": "otn-dev-dist", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-dev-dist.json", + "yaml": "otn-dev-dist.yml", + "html": "otn-dev-dist.html", + "license": "otn-dev-dist.LICENSE" + }, + { + "license_key": "otn-dev-dist-2009", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2009", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-dev-dist-2009.json", + "yaml": "otn-dev-dist-2009.yml", + "html": "otn-dev-dist-2009.html", + "license": "otn-dev-dist-2009.LICENSE" + }, + { + "license_key": "otn-dev-dist-2014", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-dev-dist-2014.json", + "yaml": "otn-dev-dist-2014.yml", + "html": "otn-dev-dist-2014.html", + "license": "otn-dev-dist-2014.LICENSE" + }, + { + "license_key": "otn-dev-dist-2016", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-dev-dist-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-dev-dist-2016.json", + "yaml": "otn-dev-dist-2016.yml", + "html": "otn-dev-dist-2016.html", + "license": "otn-dev-dist-2016.LICENSE" + }, + { + "license_key": "otn-early-adopter-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-early-adopter-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-early-adopter-2018.json", + "yaml": "otn-early-adopter-2018.yml", + "html": "otn-early-adopter-2018.html", + "license": "otn-early-adopter-2018.LICENSE" + }, + { + "license_key": "otn-early-adopter-development", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-early-adopter-development", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-early-adopter-development.json", + "yaml": "otn-early-adopter-development.yml", + "html": "otn-early-adopter-development.html", + "license": "otn-early-adopter-development.LICENSE" + }, + { + "license_key": "otn-standard-2014-09", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-otn-standard-2014-09", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "otn-standard-2014-09.json", + "yaml": "otn-standard-2014-09.yml", + "html": "otn-standard-2014-09.html", + "license": "otn-standard-2014-09.LICENSE" + }, + { + "license_key": "owal-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-owal-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "owal-1.0.json", + "yaml": "owal-1.0.yml", + "html": "owal-1.0.html", + "license": "owal-1.0.LICENSE" + }, + { + "license_key": "owf-cla-1.0-copyright", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-owf-cla-1.0-copyright", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "owf-cla-1.0-copyright.json", + "yaml": "owf-cla-1.0-copyright.yml", + "html": "owf-cla-1.0-copyright.html", + "license": "owf-cla-1.0-copyright.LICENSE" + }, + { + "license_key": "owf-cla-1.0-copyright-patent", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-owf-cla-1.0-copyright-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "owf-cla-1.0-copyright-patent.json", + "yaml": "owf-cla-1.0-copyright-patent.yml", + "html": "owf-cla-1.0-copyright-patent.html", + "license": "owf-cla-1.0-copyright-patent.LICENSE" + }, + { + "license_key": "owfa-1-0-patent-only", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-owfa-1.0-patent-only", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "owfa-1-0-patent-only.json", + "yaml": "owfa-1-0-patent-only.yml", + "html": "owfa-1-0-patent-only.html", + "license": "owfa-1-0-patent-only.LICENSE" + }, + { + "license_key": "owfa-1.0", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-owfa-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "owfa-1.0.json", + "yaml": "owfa-1.0.yml", + "html": "owfa-1.0.html", + "license": "owfa-1.0.LICENSE" + }, + { + "license_key": "owl-0.9.4", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-owl-0.9.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "owl-0.9.4.json", + "yaml": "owl-0.9.4.yml", + "html": "owl-0.9.4.html", + "license": "owl-0.9.4.LICENSE" + }, + { + "license_key": "owtchart", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-owtchart", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "owtchart.json", + "yaml": "owtchart.yml", + "html": "owtchart.html", + "license": "owtchart.LICENSE" + }, + { + "license_key": "oxygen-xml-webhelp-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-oxygen-xml-webhelp-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "oxygen-xml-webhelp-eula.json", + "yaml": "oxygen-xml-webhelp-eula.yml", + "html": "oxygen-xml-webhelp-eula.html", + "license": "oxygen-xml-webhelp-eula.LICENSE" + }, + { + "license_key": "ozplb-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ozplb-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ozplb-1.0.json", + "yaml": "ozplb-1.0.yml", + "html": "ozplb-1.0.html", + "license": "ozplb-1.0.LICENSE" + }, + { + "license_key": "ozplb-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ozplb-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ozplb-1.1.json", + "yaml": "ozplb-1.1.yml", + "html": "ozplb-1.1.html", + "license": "ozplb-1.1.LICENSE" + }, + { + "license_key": "padl", + "category": "Permissive", + "spdx_license_key": "PADL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "padl.json", + "yaml": "padl.yml", + "html": "padl.html", + "license": "padl.LICENSE" + }, + { + "license_key": "paint-net", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-paint-net", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paint-net.json", + "yaml": "paint-net.yml", + "html": "paint-net.html", + "license": "paint-net.LICENSE" + }, + { + "license_key": "paolo-messina-2000", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paolo-messina-2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paolo-messina-2000.json", + "yaml": "paolo-messina-2000.yml", + "html": "paolo-messina-2000.html", + "license": "paolo-messina-2000.LICENSE" + }, + { + "license_key": "paraview-1.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paraview-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paraview-1.2.json", + "yaml": "paraview-1.2.yml", + "html": "paraview-1.2.html", + "license": "paraview-1.2.LICENSE" + }, + { + "license_key": "parity-6.0.0", + "category": "Copyleft", + "spdx_license_key": "Parity-6.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "parity-6.0.0.json", + "yaml": "parity-6.0.0.yml", + "html": "parity-6.0.0.html", + "license": "parity-6.0.0.LICENSE" + }, + { + "license_key": "parity-7.0.0", + "category": "Copyleft", + "spdx_license_key": "Parity-7.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "parity-7.0.0.json", + "yaml": "parity-7.0.0.yml", + "html": "parity-7.0.0.html", + "license": "parity-7.0.0.LICENSE" + }, + { + "license_key": "passive-aggressive", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-passive-aggressive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "passive-aggressive.json", + "yaml": "passive-aggressive.yml", + "html": "passive-aggressive.html", + "license": "passive-aggressive.LICENSE" + }, + { + "license_key": "patent-disclaimer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-patent-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "patent-disclaimer.json", + "yaml": "patent-disclaimer.yml", + "html": "patent-disclaimer.html", + "license": "patent-disclaimer.LICENSE" + }, + { + "license_key": "paul-hsieh-derivative", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-paul-hsieh-derivative", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paul-hsieh-derivative.json", + "yaml": "paul-hsieh-derivative.yml", + "html": "paul-hsieh-derivative.html", + "license": "paul-hsieh-derivative.LICENSE" + }, + { + "license_key": "paul-hsieh-exposition", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-paul-hsieh-exposition", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paul-hsieh-exposition.json", + "yaml": "paul-hsieh-exposition.yml", + "html": "paul-hsieh-exposition.html", + "license": "paul-hsieh-exposition.LICENSE" + }, + { + "license_key": "paul-mackerras", + "category": "Permissive", + "spdx_license_key": "Mackerras-3-Clause-acknowledgment", + "other_spdx_license_keys": [ + "LicenseRef-scancode-paul-mackerras" + ], + "is_exception": false, + "is_deprecated": false, + "json": "paul-mackerras.json", + "yaml": "paul-mackerras.yml", + "html": "paul-mackerras.html", + "license": "paul-mackerras.LICENSE" + }, + { + "license_key": "paul-mackerras-binary", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paul-mackerras-binary", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paul-mackerras-binary.json", + "yaml": "paul-mackerras-binary.yml", + "html": "paul-mackerras-binary.html", + "license": "paul-mackerras-binary.LICENSE" + }, + { + "license_key": "paul-mackerras-new", + "category": "Permissive", + "spdx_license_key": "Mackerras-3-Clause", + "other_spdx_license_keys": [ + "LicenseRef-scancode-paul-mackerras-new" + ], + "is_exception": false, + "is_deprecated": false, + "json": "paul-mackerras-new.json", + "yaml": "paul-mackerras-new.yml", + "html": "paul-mackerras-new.html", + "license": "paul-mackerras-new.LICENSE" + }, + { + "license_key": "paul-mackerras-simplified", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paul-mackerras-simplified", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paul-mackerras-simplified.json", + "yaml": "paul-mackerras-simplified.yml", + "html": "paul-mackerras-simplified.html", + "license": "paul-mackerras-simplified.LICENSE" + }, + { + "license_key": "paulo-soares", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paulo-soares", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paulo-soares.json", + "yaml": "paulo-soares.yml", + "html": "paulo-soares.html", + "license": "paulo-soares.LICENSE" + }, + { + "license_key": "paypal-sdk-2013-2016", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-paypal-sdk-2013-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "paypal-sdk-2013-2016.json", + "yaml": "paypal-sdk-2013-2016.yml", + "html": "paypal-sdk-2013-2016.html", + "license": "paypal-sdk-2013-2016.LICENSE" + }, + { + "license_key": "pbl-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-pbl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pbl-1.0.json", + "yaml": "pbl-1.0.yml", + "html": "pbl-1.0.html", + "license": "pbl-1.0.LICENSE" + }, + { + "license_key": "pcre", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pcre", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pcre.json", + "yaml": "pcre.yml", + "html": "pcre.html", + "license": "pcre.LICENSE" + }, + { + "license_key": "pd-mit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pd-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pd-mit.json", + "yaml": "pd-mit.yml", + "html": "pd-mit.html", + "license": "pd-mit.LICENSE" + }, + { + "license_key": "pd-programming", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pd-programming", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pd-programming.json", + "yaml": "pd-programming.yml", + "html": "pd-programming.html", + "license": "pd-programming.LICENSE" + }, + { + "license_key": "pddl-1.0", + "category": "Public Domain", + "spdx_license_key": "PDDL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pddl-1.0.json", + "yaml": "pddl-1.0.yml", + "html": "pddl-1.0.html", + "license": "pddl-1.0.LICENSE" + }, + { + "license_key": "pdf-creator-pilot", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-pdf-creator-pilot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pdf-creator-pilot.json", + "yaml": "pdf-creator-pilot.yml", + "html": "pdf-creator-pilot.html", + "license": "pdf-creator-pilot.LICENSE" + }, + { + "license_key": "pdl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-pdl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pdl-1.0.json", + "yaml": "pdl-1.0.yml", + "html": "pdl-1.0.html", + "license": "pdl-1.0.LICENSE" + }, + { + "license_key": "perl-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-perl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "perl-1.0.json", + "yaml": "perl-1.0.yml", + "html": "perl-1.0.html", + "license": "perl-1.0.LICENSE" + }, + { + "license_key": "peter-deutsch-document", + "category": "Permissive", + "spdx_license_key": "LPD-document", + "other_spdx_license_keys": [ + "LicenseRef-scancode-peter-deutsch-document" + ], + "is_exception": false, + "is_deprecated": false, + "json": "peter-deutsch-document.json", + "yaml": "peter-deutsch-document.yml", + "html": "peter-deutsch-document.html", + "license": "peter-deutsch-document.LICENSE" + }, + { + "license_key": "pfe-proprietary-notice", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-pfe-proprietary-notice", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pfe-proprietary-notice.json", + "yaml": "pfe-proprietary-notice.yml", + "html": "pfe-proprietary-notice.html", + "license": "pfe-proprietary-notice.LICENSE" + }, + { + "license_key": "pftijah-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-pftijah-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pftijah-1.1.json", + "yaml": "pftijah-1.1.yml", + "html": "pftijah-1.1.html", + "license": "pftijah-1.1.LICENSE" + }, + { + "license_key": "pftus-1.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-pftus-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pftus-1.1.json", + "yaml": "pftus-1.1.yml", + "html": "pftus-1.1.html", + "license": "pftus-1.1.LICENSE" + }, + { + "license_key": "phaser-academic", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-phaser-academic", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "phaser-academic.json", + "yaml": "phaser-academic.yml", + "html": "phaser-academic.html", + "license": "phaser-academic.LICENSE" + }, + { + "license_key": "phaser-ccp4", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-phaser-ccp4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "phaser-ccp4.json", + "yaml": "phaser-ccp4.yml", + "html": "phaser-ccp4.html", + "license": "phaser-ccp4.LICENSE" + }, + { + "license_key": "phaser-phenix", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-phaser-phenix", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "phaser-phenix.json", + "yaml": "phaser-phenix.yml", + "html": "phaser-phenix.html", + "license": "phaser-phenix.LICENSE" + }, + { + "license_key": "phil-bunce", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-phil-bunce", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "phil-bunce.json", + "yaml": "phil-bunce.yml", + "html": "phil-bunce.html", + "license": "phil-bunce.LICENSE" + }, + { + "license_key": "philippe-de-muyter", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-philippe-de-muyter", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "philippe-de-muyter.json", + "yaml": "philippe-de-muyter.yml", + "html": "philippe-de-muyter.html", + "license": "philippe-de-muyter.LICENSE" + }, + { + "license_key": "philips-proprietary-notice-2000", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-philips-proprietary-notice2000", + "other_spdx_license_keys": [ + "LicenseRef-scancode-philips-proprietary-notice-2000" + ], + "is_exception": false, + "is_deprecated": false, + "json": "philips-proprietary-notice-2000.json", + "yaml": "philips-proprietary-notice-2000.yml", + "html": "philips-proprietary-notice-2000.html", + "license": "philips-proprietary-notice-2000.LICENSE" + }, + { + "license_key": "phorum-2.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-phorum-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "phorum-2.0.json", + "yaml": "phorum-2.0.yml", + "html": "phorum-2.0.html", + "license": "phorum-2.0.LICENSE" + }, + { + "license_key": "php-2.0.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-php-2.0.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "php-2.0.2.json", + "yaml": "php-2.0.2.yml", + "html": "php-2.0.2.html", + "license": "php-2.0.2.LICENSE" + }, + { + "license_key": "php-3.0", + "category": "Permissive", + "spdx_license_key": "PHP-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "php-3.0.json", + "yaml": "php-3.0.yml", + "html": "php-3.0.html", + "license": "php-3.0.LICENSE" + }, + { + "license_key": "php-3.01", + "category": "Permissive", + "spdx_license_key": "PHP-3.01", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "php-3.01.json", + "yaml": "php-3.01.yml", + "html": "php-3.01.html", + "license": "php-3.01.LICENSE" + }, + { + "license_key": "pine", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pine", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pine.json", + "yaml": "pine.yml", + "html": "pine.html", + "license": "pine.LICENSE" + }, + { + "license_key": "pivotal-tou", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-pivotal-tou", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pivotal-tou.json", + "yaml": "pivotal-tou.yml", + "html": "pivotal-tou.html", + "license": "pivotal-tou.LICENSE" + }, + { + "license_key": "pixabay-content", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-pixabay-content", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pixabay-content.json", + "yaml": "pixabay-content.yml", + "html": "pixabay-content.html", + "license": "pixabay-content.LICENSE" + }, + { + "license_key": "pixar", + "category": "Permissive", + "spdx_license_key": "Pixar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pixar.json", + "yaml": "pixar.yml", + "html": "pixar.html", + "license": "pixar.LICENSE" + }, + { + "license_key": "planet-source-code", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-planet-source-code", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "planet-source-code.json", + "yaml": "planet-source-code.yml", + "html": "planet-source-code.html", + "license": "planet-source-code.LICENSE" + }, + { + "license_key": "plural-20211124", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-plural-20211124", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "plural-20211124.json", + "yaml": "plural-20211124.yml", + "html": "plural-20211124.html", + "license": "plural-20211124.LICENSE" + }, + { + "license_key": "pml-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-pml-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pml-2020.json", + "yaml": "pml-2020.yml", + "html": "pml-2020.html", + "license": "pml-2020.LICENSE" + }, + { + "license_key": "pngsuite", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pngsuite", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pngsuite.json", + "yaml": "pngsuite.yml", + "html": "pngsuite.html", + "license": "pngsuite.LICENSE" + }, + { + "license_key": "pnmstitch", + "category": "Permissive", + "spdx_license_key": "pnmstitch", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pnmstitch.json", + "yaml": "pnmstitch.yml", + "html": "pnmstitch.html", + "license": "pnmstitch.LICENSE" + }, + { + "license_key": "politepix-pl-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-politepix-pl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "politepix-pl-1.0.json", + "yaml": "politepix-pl-1.0.yml", + "html": "politepix-pl-1.0.html", + "license": "politepix-pl-1.0.LICENSE" + }, + { + "license_key": "polyform-defensive-1.0.0", + "category": "Source-available", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "polyform-defensive-1.0.0.json", + "yaml": "polyform-defensive-1.0.0.yml", + "html": "polyform-defensive-1.0.0.html", + "license": "polyform-defensive-1.0.0.LICENSE" + }, + { + "license_key": "polyform-free-trial-1.0.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-polyform-free-trial-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-free-trial-1.0.0.json", + "yaml": "polyform-free-trial-1.0.0.yml", + "html": "polyform-free-trial-1.0.0.html", + "license": "polyform-free-trial-1.0.0.LICENSE" + }, + { + "license_key": "polyform-internal-use-1.0.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-polyform-internal-use-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-internal-use-1.0.0.json", + "yaml": "polyform-internal-use-1.0.0.yml", + "html": "polyform-internal-use-1.0.0.html", + "license": "polyform-internal-use-1.0.0.LICENSE" + }, + { + "license_key": "polyform-noncommercial-1.0.0", + "category": "Source-available", + "spdx_license_key": "PolyForm-Noncommercial-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-noncommercial-1.0.0.json", + "yaml": "polyform-noncommercial-1.0.0.yml", + "html": "polyform-noncommercial-1.0.0.html", + "license": "polyform-noncommercial-1.0.0.LICENSE" + }, + { + "license_key": "polyform-perimeter-1.0.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-polyform-perimeter-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-perimeter-1.0.0.json", + "yaml": "polyform-perimeter-1.0.0.yml", + "html": "polyform-perimeter-1.0.0.html", + "license": "polyform-perimeter-1.0.0.LICENSE" + }, + { + "license_key": "polyform-shield-1.0.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-polyform-shield-1.0.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-polyform-defensive-1.0.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-shield-1.0.0.json", + "yaml": "polyform-shield-1.0.0.yml", + "html": "polyform-shield-1.0.0.html", + "license": "polyform-shield-1.0.0.LICENSE" + }, + { + "license_key": "polyform-small-business-1.0.0", + "category": "Source-available", + "spdx_license_key": "PolyForm-Small-Business-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-small-business-1.0.0.json", + "yaml": "polyform-small-business-1.0.0.yml", + "html": "polyform-small-business-1.0.0.html", + "license": "polyform-small-business-1.0.0.LICENSE" + }, + { + "license_key": "polyform-strict-1.0.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-polyform-strict-1.0.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "polyform-strict-1.0.0.json", + "yaml": "polyform-strict-1.0.0.yml", + "html": "polyform-strict-1.0.0.html", + "license": "polyform-strict-1.0.0.LICENSE" + }, + { + "license_key": "postgresql", + "category": "Permissive", + "spdx_license_key": "PostgreSQL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "postgresql.json", + "yaml": "postgresql.yml", + "html": "postgresql.html", + "license": "postgresql.LICENSE" + }, + { + "license_key": "powervr-tools-software-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-powervr-tools-software-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "powervr-tools-software-eula.json", + "yaml": "powervr-tools-software-eula.yml", + "html": "powervr-tools-software-eula.html", + "license": "powervr-tools-software-eula.LICENSE" + }, + { + "license_key": "ppp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ppp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ppp.json", + "yaml": "ppp.yml", + "html": "ppp.html", + "license": "ppp.LICENSE" + }, + { + "license_key": "proconx-modbus-rev4", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-proconx-modbus-rev4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "proconx-modbus-rev4.json", + "yaml": "proconx-modbus-rev4.yml", + "html": "proconx-modbus-rev4.html", + "license": "proconx-modbus-rev4.LICENSE" + }, + { + "license_key": "proguard-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-proguard-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "proguard-exception-2.0.json", + "yaml": "proguard-exception-2.0.yml", + "html": "proguard-exception-2.0.html", + "license": "proguard-exception-2.0.LICENSE" + }, + { + "license_key": "proprietary", + "category": "Proprietary Free", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "proprietary.json", + "yaml": "proprietary.yml", + "html": "proprietary.html", + "license": "proprietary.LICENSE" + }, + { + "license_key": "proprietary-license", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-proprietary-license", + "other_spdx_license_keys": [ + "LicenseRef-LICENSE", + "LicenseRef-LICENSE.md" + ], + "is_exception": false, + "is_deprecated": false, + "json": "proprietary-license.json", + "yaml": "proprietary-license.yml", + "html": "proprietary-license.html", + "license": "proprietary-license.LICENSE" + }, + { + "license_key": "prosperity-1.0.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-prosperity-1.0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "prosperity-1.0.1.json", + "yaml": "prosperity-1.0.1.yml", + "html": "prosperity-1.0.1.html", + "license": "prosperity-1.0.1.LICENSE" + }, + { + "license_key": "prosperity-2.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-prosperity-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "prosperity-2.0.json", + "yaml": "prosperity-2.0.yml", + "html": "prosperity-2.0.html", + "license": "prosperity-2.0.LICENSE" + }, + { + "license_key": "prosperity-3.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-prosperity-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "prosperity-3.0.json", + "yaml": "prosperity-3.0.yml", + "html": "prosperity-3.0.html", + "license": "prosperity-3.0.LICENSE" + }, + { + "license_key": "protobuf", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-protobuf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "protobuf.json", + "yaml": "protobuf.yml", + "html": "protobuf.html", + "license": "protobuf.LICENSE" + }, + { + "license_key": "ps-or-pdf-font-exception-20170817", + "category": "Copyleft Limited", + "spdx_license_key": "PS-or-PDF-font-exception-20170817", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "ps-or-pdf-font-exception-20170817.json", + "yaml": "ps-or-pdf-font-exception-20170817.yml", + "html": "ps-or-pdf-font-exception-20170817.html", + "license": "ps-or-pdf-font-exception-20170817.LICENSE" + }, + { + "license_key": "psf-2.0", + "category": "Permissive", + "spdx_license_key": "PSF-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "psf-2.0.json", + "yaml": "psf-2.0.yml", + "html": "psf-2.0.html", + "license": "psf-2.0.LICENSE" + }, + { + "license_key": "psf-3.7.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-psf-3.7.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "psf-3.7.2.json", + "yaml": "psf-3.7.2.yml", + "html": "psf-3.7.2.html", + "license": "psf-3.7.2.LICENSE" + }, + { + "license_key": "psfrag", + "category": "Permissive", + "spdx_license_key": "psfrag", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "psfrag.json", + "yaml": "psfrag.yml", + "html": "psfrag.html", + "license": "psfrag.LICENSE" + }, + { + "license_key": "psutils", + "category": "Permissive", + "spdx_license_key": "psutils", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "psutils.json", + "yaml": "psutils.yml", + "html": "psutils.html", + "license": "psutils.LICENSE" + }, + { + "license_key": "psytec-freesoft", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-psytec-freesoft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "psytec-freesoft.json", + "yaml": "psytec-freesoft.yml", + "html": "psytec-freesoft.html", + "license": "psytec-freesoft.LICENSE" + }, + { + "license_key": "public-domain", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-public-domain", + "other_spdx_license_keys": [ + "LicenseRef-PublicDomain", + "LicenseRef-Fedora-Public-Domain" + ], + "is_exception": false, + "is_deprecated": false, + "json": "public-domain.json", + "yaml": "public-domain.yml", + "html": "public-domain.html", + "license": "public-domain.LICENSE" + }, + { + "license_key": "public-domain-disclaimer", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-public-domain-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "public-domain-disclaimer.json", + "yaml": "public-domain-disclaimer.yml", + "html": "public-domain-disclaimer.html", + "license": "public-domain-disclaimer.LICENSE" + }, + { + "license_key": "punycode", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-punycode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "punycode.json", + "yaml": "punycode.yml", + "html": "punycode.html", + "license": "punycode.LICENSE" + }, + { + "license_key": "purdue-bsd", + "category": "Permissive", + "spdx_license_key": "lsof", + "other_spdx_license_keys": [ + "LicenseRef-scancode-purdue-bsd" + ], + "is_exception": false, + "is_deprecated": false, + "json": "purdue-bsd.json", + "yaml": "purdue-bsd.yml", + "html": "purdue-bsd.html", + "license": "purdue-bsd.LICENSE" + }, + { + "license_key": "pybench", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pybench", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pybench.json", + "yaml": "pybench.yml", + "html": "pybench.html", + "license": "pybench.LICENSE" + }, + { + "license_key": "pycrypto", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pycrypto", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pycrypto.json", + "yaml": "pycrypto.yml", + "html": "pycrypto.html", + "license": "pycrypto.LICENSE" + }, + { + "license_key": "pygres-2.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-pygres-2.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "pygres-2.2.json", + "yaml": "pygres-2.2.yml", + "html": "pygres-2.2.html", + "license": "pygres-2.2.LICENSE" + }, + { + "license_key": "python", + "category": "Permissive", + "spdx_license_key": "Python-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "python.json", + "yaml": "python.yml", + "html": "python.html", + "license": "python.LICENSE" + }, + { + "license_key": "python-2.0.1", + "category": "Permissive", + "spdx_license_key": "Python-2.0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "python-2.0.1.json", + "yaml": "python-2.0.1.yml", + "html": "python-2.0.1.html", + "license": "python-2.0.1.LICENSE" + }, + { + "license_key": "python-cwi", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-python-cwi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "python-cwi.json", + "yaml": "python-cwi.yml", + "html": "python-cwi.html", + "license": "python-cwi.LICENSE" + }, + { + "license_key": "python-ldap", + "category": "Permissive", + "spdx_license_key": "python-ldap", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "python-ldap.json", + "yaml": "python-ldap.yml", + "html": "python-ldap.html", + "license": "python-ldap.LICENSE" + }, + { + "license_key": "qaplug", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-qaplug", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qaplug.json", + "yaml": "qaplug.yml", + "html": "qaplug.html", + "license": "qaplug.LICENSE" + }, + { + "license_key": "qca-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-qca-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qca-linux-firmware.json", + "yaml": "qca-linux-firmware.yml", + "html": "qca-linux-firmware.html", + "license": "qca-linux-firmware.LICENSE" + }, + { + "license_key": "qca-technology", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-qca-technology", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qca-technology.json", + "yaml": "qca-technology.yml", + "html": "qca-technology.html", + "license": "qca-technology.LICENSE" + }, + { + "license_key": "qcad-exception-gpl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-qcad-exception-gpl", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qcad-exception-gpl.json", + "yaml": "qcad-exception-gpl.yml", + "html": "qcad-exception-gpl.html", + "license": "qcad-exception-gpl.LICENSE" + }, + { + "license_key": "qhull", + "category": "Copyleft Limited", + "spdx_license_key": "Qhull", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qhull.json", + "yaml": "qhull.yml", + "html": "qhull.html", + "license": "qhull.LICENSE" + }, + { + "license_key": "qlogic-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-qlogic-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qlogic-firmware.json", + "yaml": "qlogic-firmware.yml", + "html": "qlogic-firmware.html", + "license": "qlogic-firmware.LICENSE" + }, + { + "license_key": "qlogic-microcode", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-qlogic-microcode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qlogic-microcode.json", + "yaml": "qlogic-microcode.yml", + "html": "qlogic-microcode.html", + "license": "qlogic-microcode.LICENSE" + }, + { + "license_key": "qpl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "QPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qpl-1.0.json", + "yaml": "qpl-1.0.yml", + "html": "qpl-1.0.html", + "license": "qpl-1.0.LICENSE" + }, + { + "license_key": "qpl-1.0-inria-2004", + "category": "Copyleft Limited", + "spdx_license_key": "QPL-1.0-INRIA-2004", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qpl-1.0-inria-2004.json", + "yaml": "qpl-1.0-inria-2004.yml", + "html": "qpl-1.0-inria-2004.html", + "license": "qpl-1.0-inria-2004.LICENSE" + }, + { + "license_key": "qpopper", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-qpopper", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qpopper.json", + "yaml": "qpopper.yml", + "html": "qpopper.html", + "license": "qpopper.LICENSE" + }, + { + "license_key": "qskinny-exception-lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-qskinny-exception-lgpl-2.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qskinny-exception-lgpl-2.1.json", + "yaml": "qskinny-exception-lgpl-2.1.yml", + "html": "qskinny-exception-lgpl-2.1.html", + "license": "qskinny-exception-lgpl-2.1.LICENSE" + }, + { + "license_key": "qt-commercial-1.1", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-qt-commercial-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qt-commercial-1.1.json", + "yaml": "qt-commercial-1.1.yml", + "html": "qt-commercial-1.1.html", + "license": "qt-commercial-1.1.LICENSE" + }, + { + "license_key": "qt-commercial-agreement-4.4.1", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-qt-commercial-agreement-4.4.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qt-commercial-agreement-4.4.1.json", + "yaml": "qt-commercial-agreement-4.4.1.yml", + "html": "qt-commercial-agreement-4.4.1.html", + "license": "qt-commercial-agreement-4.4.1.LICENSE" + }, + { + "license_key": "qt-company-exception-2017-lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "qt-company-exception-2017-lgpl-2.1.json", + "yaml": "qt-company-exception-2017-lgpl-2.1.yml", + "html": "qt-company-exception-2017-lgpl-2.1.html", + "license": "qt-company-exception-2017-lgpl-2.1.LICENSE" + }, + { + "license_key": "qt-company-exception-lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-qt-company-exception-lgpl-2.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qt-company-exception-lgpl-2.1.json", + "yaml": "qt-company-exception-lgpl-2.1.yml", + "html": "qt-company-exception-lgpl-2.1.html", + "license": "qt-company-exception-lgpl-2.1.LICENSE" + }, + { + "license_key": "qt-gpl-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "Qt-GPL-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qt-gpl-exception-1.0.json", + "yaml": "qt-gpl-exception-1.0.yml", + "html": "qt-gpl-exception-1.0.html", + "license": "qt-gpl-exception-1.0.LICENSE" + }, + { + "license_key": "qt-kde-linking-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-qt-kde-linking-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qt-kde-linking-exception.json", + "yaml": "qt-kde-linking-exception.yml", + "html": "qt-kde-linking-exception.html", + "license": "qt-kde-linking-exception.LICENSE" + }, + { + "license_key": "qt-lgpl-exception-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "Qt-LGPL-exception-1.1", + "other_spdx_license_keys": [ + "Nokia-Qt-exception-1.1" + ], + "is_exception": true, + "is_deprecated": false, + "json": "qt-lgpl-exception-1.1.json", + "yaml": "qt-lgpl-exception-1.1.yml", + "html": "qt-lgpl-exception-1.1.html", + "license": "qt-lgpl-exception-1.1.LICENSE" + }, + { + "license_key": "qt-qca-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-qt-qca-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qt-qca-exception-2.0.json", + "yaml": "qt-qca-exception-2.0.yml", + "html": "qt-qca-exception-2.0.html", + "license": "qt-qca-exception-2.0.LICENSE" + }, + { + "license_key": "qti-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-qti-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qti-linux-firmware.json", + "yaml": "qti-linux-firmware.yml", + "html": "qti-linux-firmware.html", + "license": "qti-linux-firmware.LICENSE" + }, + { + "license_key": "qualcomm-iso", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-qualcomm-iso", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qualcomm-iso.json", + "yaml": "qualcomm-iso.yml", + "html": "qualcomm-iso.html", + "license": "qualcomm-iso.LICENSE" + }, + { + "license_key": "qualcomm-turing", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-qualcomm-turing", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "qualcomm-turing.json", + "yaml": "qualcomm-turing.yml", + "html": "qualcomm-turing.html", + "license": "qualcomm-turing.LICENSE" + }, + { + "license_key": "quickfix-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-quickfix-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "quickfix-1.0.json", + "yaml": "quickfix-1.0.yml", + "html": "quickfix-1.0.html", + "license": "quickfix-1.0.LICENSE" + }, + { + "license_key": "quicktime", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-quicktime", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "quicktime.json", + "yaml": "quicktime.yml", + "html": "quicktime.html", + "license": "quicktime.LICENSE" + }, + { + "license_key": "quin-street", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-quin-street", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "quin-street.json", + "yaml": "quin-street.yml", + "html": "quin-street.html", + "license": "quin-street.LICENSE" + }, + { + "license_key": "quirksmode", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-quirksmode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "quirksmode.json", + "yaml": "quirksmode.yml", + "html": "quirksmode.html", + "license": "quirksmode.LICENSE" + }, + { + "license_key": "qwt-1.0", + "category": "Copyleft Limited", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "qwt-1.0.json", + "yaml": "qwt-1.0.yml", + "html": "qwt-1.0.html", + "license": "qwt-1.0.LICENSE" + }, + { + "license_key": "qwt-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "Qwt-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "qwt-exception-1.0.json", + "yaml": "qwt-exception-1.0.yml", + "html": "qwt-exception-1.0.html", + "license": "qwt-exception-1.0.LICENSE" + }, + { + "license_key": "rackspace", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-rackspace", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rackspace.json", + "yaml": "rackspace.yml", + "html": "rackspace.html", + "license": "rackspace.LICENSE" + }, + { + "license_key": "radvd", + "category": "Permissive", + "spdx_license_key": "radvd", + "other_spdx_license_keys": [ + "LicenseRef-scancode-radvd" + ], + "is_exception": false, + "is_deprecated": false, + "json": "radvd.json", + "yaml": "radvd.yml", + "html": "radvd.html", + "license": "radvd.LICENSE" + }, + { + "license_key": "ralf-corsepius", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ralf-corsepius.json", + "yaml": "ralf-corsepius.yml", + "html": "ralf-corsepius.html", + "license": "ralf-corsepius.LICENSE" + }, + { + "license_key": "ralink-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ralink-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ralink-firmware.json", + "yaml": "ralink-firmware.yml", + "html": "ralink-firmware.html", + "license": "ralink-firmware.LICENSE" + }, + { + "license_key": "rar-winrar-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-rar-winrar-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rar-winrar-eula.json", + "yaml": "rar-winrar-eula.yml", + "html": "rar-winrar-eula.html", + "license": "rar-winrar-eula.LICENSE" + }, + { + "license_key": "rcsl-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-rcsl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rcsl-2.0.json", + "yaml": "rcsl-2.0.yml", + "html": "rcsl-2.0.html", + "license": "rcsl-2.0.LICENSE" + }, + { + "license_key": "rcsl-3.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-rcsl-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rcsl-3.0.json", + "yaml": "rcsl-3.0.yml", + "html": "rcsl-3.0.html", + "license": "rcsl-3.0.LICENSE" + }, + { + "license_key": "rdisc", + "category": "Permissive", + "spdx_license_key": "Rdisc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rdisc.json", + "yaml": "rdisc.yml", + "html": "rdisc.html", + "license": "rdisc.LICENSE" + }, + { + "license_key": "reading-godiva-2010", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-reading-godiva-2010", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "reading-godiva-2010.json", + "yaml": "reading-godiva-2010.yml", + "html": "reading-godiva-2010.html", + "license": "reading-godiva-2010.LICENSE" + }, + { + "license_key": "realm-platform-extension-2017", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-realm-platform-extension-2017", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "realm-platform-extension-2017.json", + "yaml": "realm-platform-extension-2017.yml", + "html": "realm-platform-extension-2017.html", + "license": "realm-platform-extension-2017.LICENSE" + }, + { + "license_key": "red-hat-attribution", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-red-hat-attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "red-hat-attribution.json", + "yaml": "red-hat-attribution.yml", + "html": "red-hat-attribution.html", + "license": "red-hat-attribution.LICENSE" + }, + { + "license_key": "red-hat-bsd-simplified", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-red-hat-bsd-simplified", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "red-hat-bsd-simplified.json", + "yaml": "red-hat-bsd-simplified.yml", + "html": "red-hat-bsd-simplified.html", + "license": "red-hat-bsd-simplified.LICENSE" + }, + { + "license_key": "red-hat-logos", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-red-hat-logos", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "red-hat-logos.json", + "yaml": "red-hat-logos.yml", + "html": "red-hat-logos.html", + "license": "red-hat-logos.LICENSE" + }, + { + "license_key": "red-hat-trademarks", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-red-hat-trademarks", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "red-hat-trademarks.json", + "yaml": "red-hat-trademarks.yml", + "html": "red-hat-trademarks.html", + "license": "red-hat-trademarks.LICENSE" + }, + { + "license_key": "redis-source-available-1.0", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-redis-source-available-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "redis-source-available-1.0.json", + "yaml": "redis-source-available-1.0.yml", + "html": "redis-source-available-1.0.html", + "license": "redis-source-available-1.0.LICENSE" + }, + { + "license_key": "regexp", + "category": "Permissive", + "spdx_license_key": "Spencer-86", + "other_spdx_license_keys": [ + "LicenseRef-scancode-regexp" + ], + "is_exception": false, + "is_deprecated": false, + "json": "regexp.json", + "yaml": "regexp.yml", + "html": "regexp.html", + "license": "regexp.LICENSE" + }, + { + "license_key": "reportbug", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-reportbug", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "reportbug.json", + "yaml": "reportbug.yml", + "html": "reportbug.html", + "license": "reportbug.LICENSE" + }, + { + "license_key": "repoze", + "category": "Permissive", + "spdx_license_key": "BSD-3-Clause-Modification", + "other_spdx_license_keys": [ + "LicenseRef-scancode-repoze" + ], + "is_exception": false, + "is_deprecated": false, + "json": "repoze.json", + "yaml": "repoze.yml", + "html": "repoze.html", + "license": "repoze.LICENSE" + }, + { + "license_key": "research-disclaimer", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-research-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "research-disclaimer.json", + "yaml": "research-disclaimer.yml", + "html": "research-disclaimer.html", + "license": "research-disclaimer.LICENSE" + }, + { + "license_key": "responsible-ai-source-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-responsible-ai-source-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "responsible-ai-source-1.0.json", + "yaml": "responsible-ai-source-1.0.yml", + "html": "responsible-ai-source-1.0.html", + "license": "responsible-ai-source-1.0.LICENSE" + }, + { + "license_key": "responsible-ai-source-1.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-responsible-ai-source-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "responsible-ai-source-1.1.json", + "yaml": "responsible-ai-source-1.1.yml", + "html": "responsible-ai-source-1.1.html", + "license": "responsible-ai-source-1.1.LICENSE" + }, + { + "license_key": "rh-eula", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-rh-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rh-eula.json", + "yaml": "rh-eula.yml", + "html": "rh-eula.html", + "license": "rh-eula.LICENSE" + }, + { + "license_key": "rh-eula-lgpl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-rh-eula-lgpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rh-eula-lgpl.json", + "yaml": "rh-eula-lgpl.yml", + "html": "rh-eula-lgpl.html", + "license": "rh-eula-lgpl.LICENSE" + }, + { + "license_key": "ricebsd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ricebsd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ricebsd.json", + "yaml": "ricebsd.yml", + "html": "ricebsd.html", + "license": "ricebsd.LICENSE" + }, + { + "license_key": "richard-black", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-richard-black", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "richard-black.json", + "yaml": "richard-black.yml", + "html": "richard-black.html", + "license": "richard-black.LICENSE" + }, + { + "license_key": "ricoh-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "RSCPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ricoh-1.0.json", + "yaml": "ricoh-1.0.yml", + "html": "ricoh-1.0.html", + "license": "ricoh-1.0.LICENSE" + }, + { + "license_key": "riverbank-sip", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-riverbank-sip", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "riverbank-sip.json", + "yaml": "riverbank-sip.yml", + "html": "riverbank-sip.html", + "license": "riverbank-sip.LICENSE" + }, + { + "license_key": "robert-hubley", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-robert-hubley", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "robert-hubley.json", + "yaml": "robert-hubley.yml", + "html": "robert-hubley.html", + "license": "robert-hubley.LICENSE" + }, + { + "license_key": "rockchip-proprietary-2022", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-rockchip-proprietary-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rockchip-proprietary-2022.json", + "yaml": "rockchip-proprietary-2022.yml", + "html": "rockchip-proprietary-2022.html", + "license": "rockchip-proprietary-2022.LICENSE" + }, + { + "license_key": "rogue-wave", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-rogue-wave", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rogue-wave.json", + "yaml": "rogue-wave.yml", + "html": "rogue-wave.html", + "license": "rogue-wave.LICENSE" + }, + { + "license_key": "rpl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "RPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rpl-1.1.json", + "yaml": "rpl-1.1.yml", + "html": "rpl-1.1.html", + "license": "rpl-1.1.LICENSE" + }, + { + "license_key": "rpl-1.5", + "category": "Copyleft Limited", + "spdx_license_key": "RPL-1.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rpl-1.5.json", + "yaml": "rpl-1.5.yml", + "html": "rpl-1.5.html", + "license": "rpl-1.5.LICENSE" + }, + { + "license_key": "rpsl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "RPSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rpsl-1.0.json", + "yaml": "rpsl-1.0.yml", + "html": "rpsl-1.0.html", + "license": "rpsl-1.0.LICENSE" + }, + { + "license_key": "rrdtool-floss-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-rrdtool-floss-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "rrdtool-floss-exception-2.0.json", + "yaml": "rrdtool-floss-exception-2.0.yml", + "html": "rrdtool-floss-exception-2.0.html", + "license": "rrdtool-floss-exception-2.0.LICENSE" + }, + { + "license_key": "rsa-1990", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-rsa-1990", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-1990.json", + "yaml": "rsa-1990.yml", + "html": "rsa-1990.html", + "license": "rsa-1990.LICENSE" + }, + { + "license_key": "rsa-cryptoki", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-rsa-cryptoki", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-cryptoki.json", + "yaml": "rsa-cryptoki.yml", + "html": "rsa-cryptoki.html", + "license": "rsa-cryptoki.LICENSE" + }, + { + "license_key": "rsa-demo", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-rsa-demo", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-demo.json", + "yaml": "rsa-demo.yml", + "html": "rsa-demo.html", + "license": "rsa-demo.LICENSE" + }, + { + "license_key": "rsa-md2", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-rsa-md2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-md2.json", + "yaml": "rsa-md2.yml", + "html": "rsa-md2.html", + "license": "rsa-md2.LICENSE" + }, + { + "license_key": "rsa-md4", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-rsa-md4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-md4.json", + "yaml": "rsa-md4.yml", + "html": "rsa-md4.html", + "license": "rsa-md4.LICENSE" + }, + { + "license_key": "rsa-md5", + "category": "Permissive", + "spdx_license_key": "RSA-MD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-md5.json", + "yaml": "rsa-md5.yml", + "html": "rsa-md5.html", + "license": "rsa-md5.LICENSE" + }, + { + "license_key": "rsa-proprietary", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-rsa-proprietary", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsa-proprietary.json", + "yaml": "rsa-proprietary.yml", + "html": "rsa-proprietary.html", + "license": "rsa-proprietary.LICENSE" + }, + { + "license_key": "rsalv2", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-rsalv2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rsalv2.json", + "yaml": "rsalv2.yml", + "html": "rsalv2.html", + "license": "rsalv2.LICENSE" + }, + { + "license_key": "rtools-util", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-rtools-util", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rtools-util.json", + "yaml": "rtools-util.yml", + "html": "rtools-util.html", + "license": "rtools-util.LICENSE" + }, + { + "license_key": "ruby", + "category": "Copyleft Limited", + "spdx_license_key": "Ruby", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ruby.json", + "yaml": "ruby.yml", + "html": "ruby.html", + "license": "ruby.LICENSE" + }, + { + "license_key": "rubyencoder-commercial", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-rubyencoder-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rubyencoder-commercial.json", + "yaml": "rubyencoder-commercial.yml", + "html": "rubyencoder-commercial.html", + "license": "rubyencoder-commercial.LICENSE" + }, + { + "license_key": "rubyencoder-loader", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-rubyencoder-loader", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rubyencoder-loader.json", + "yaml": "rubyencoder-loader.yml", + "html": "rubyencoder-loader.html", + "license": "rubyencoder-loader.LICENSE" + }, + { + "license_key": "rute", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-rute", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "rute.json", + "yaml": "rute.yml", + "html": "rute.html", + "license": "rute.LICENSE" + }, + { + "license_key": "rxtx-exception-lgpl-2.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-rxtx-exception-lgpl-2.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "rxtx-exception-lgpl-2.1.json", + "yaml": "rxtx-exception-lgpl-2.1.yml", + "html": "rxtx-exception-lgpl-2.1.html", + "license": "rxtx-exception-lgpl-2.1.LICENSE" + }, + { + "license_key": "ryszard-szopa", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ryszard-szopa", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ryszard-szopa.json", + "yaml": "ryszard-szopa.yml", + "html": "ryszard-szopa.html", + "license": "ryszard-szopa.LICENSE" + }, + { + "license_key": "saas-mit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-saas-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "saas-mit.json", + "yaml": "saas-mit.yml", + "html": "saas-mit.html", + "license": "saas-mit.LICENSE" + }, + { + "license_key": "saf", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-saf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "saf.json", + "yaml": "saf.yml", + "html": "saf.html", + "license": "saf.LICENSE" + }, + { + "license_key": "safecopy-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-safecopy-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "safecopy-eula.json", + "yaml": "safecopy-eula.yml", + "html": "safecopy-eula.html", + "license": "safecopy-eula.LICENSE" + }, + { + "license_key": "san-francisco-font", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-san-francisco-font", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "san-francisco-font.json", + "yaml": "san-francisco-font.yml", + "html": "san-francisco-font.html", + "license": "san-francisco-font.LICENSE" + }, + { + "license_key": "sandeep", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sandeep", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sandeep.json", + "yaml": "sandeep.yml", + "html": "sandeep.html", + "license": "sandeep.LICENSE" + }, + { + "license_key": "sane-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "SANE-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-sane-exception-2.0-plus" + ], + "is_exception": true, + "is_deprecated": false, + "json": "sane-exception-2.0-plus.json", + "yaml": "sane-exception-2.0-plus.yml", + "html": "sane-exception-2.0-plus.html", + "license": "sane-exception-2.0-plus.LICENSE" + }, + { + "license_key": "sash", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sash", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sash.json", + "yaml": "sash.yml", + "html": "sash.html", + "license": "sash.LICENSE" + }, + { + "license_key": "sata", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sata", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sata.json", + "yaml": "sata.yml", + "html": "sata.html", + "license": "sata.LICENSE" + }, + { + "license_key": "sax-pd", + "category": "Public Domain", + "spdx_license_key": "SAX-PD", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sax-pd.json", + "yaml": "sax-pd.yml", + "html": "sax-pd.html", + "license": "sax-pd.LICENSE" + }, + { + "license_key": "sax-pd-2.0", + "category": "Public Domain", + "spdx_license_key": "SAX-PD-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sax-pd-2.0.json", + "yaml": "sax-pd-2.0.yml", + "html": "sax-pd-2.0.html", + "license": "sax-pd-2.0.LICENSE" + }, + { + "license_key": "saxix-mit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-saxix-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "saxix-mit.json", + "yaml": "saxix-mit.yml", + "html": "saxix-mit.html", + "license": "saxix-mit.LICENSE" + }, + { + "license_key": "saxpath", + "category": "Permissive", + "spdx_license_key": "Saxpath", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "saxpath.json", + "yaml": "saxpath.yml", + "html": "saxpath.html", + "license": "saxpath.LICENSE" + }, + { + "license_key": "sbia-b", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sbia-b", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sbia-b.json", + "yaml": "sbia-b.yml", + "html": "sbia-b.html", + "license": "sbia-b.LICENSE" + }, + { + "license_key": "scancode-acknowledgment", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-scancode-acknowledgment", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scancode-acknowledgment.json", + "yaml": "scancode-acknowledgment.yml", + "html": "scancode-acknowledgment.html", + "license": "scancode-acknowledgment.LICENSE" + }, + { + "license_key": "scanlogd-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-scanlogd-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scanlogd-license.json", + "yaml": "scanlogd-license.yml", + "html": "scanlogd-license.html", + "license": "scanlogd-license.LICENSE" + }, + { + "license_key": "scansoft-1.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-scansoft-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scansoft-1.2.json", + "yaml": "scansoft-1.2.yml", + "html": "scansoft-1.2.html", + "license": "scansoft-1.2.LICENSE" + }, + { + "license_key": "scea-1.0", + "category": "Permissive", + "spdx_license_key": "SCEA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scea-1.0.json", + "yaml": "scea-1.0.yml", + "html": "scea-1.0.html", + "license": "scea-1.0.LICENSE" + }, + { + "license_key": "schemereport", + "category": "Permissive", + "spdx_license_key": "SchemeReport", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "schemereport.json", + "yaml": "schemereport.yml", + "html": "schemereport.html", + "license": "schemereport.LICENSE" + }, + { + "license_key": "scilab-en-2005", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-scilab-en", + "other_spdx_license_keys": [ + "LicenseRef-scancode-scilba-en" + ], + "is_exception": false, + "is_deprecated": false, + "json": "scilab-en-2005.json", + "yaml": "scilab-en-2005.yml", + "html": "scilab-en-2005.html", + "license": "scilab-en-2005.LICENSE" + }, + { + "license_key": "scilab-fr", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-scilab-fr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scilab-fr.json", + "yaml": "scilab-fr.yml", + "html": "scilab-fr.html", + "license": "scilab-fr.LICENSE" + }, + { + "license_key": "scintilla", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-scintilla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scintilla.json", + "yaml": "scintilla.yml", + "html": "scintilla.html", + "license": "scintilla.LICENSE" + }, + { + "license_key": "scola-en", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-scola-en", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scola-en.json", + "yaml": "scola-en.yml", + "html": "scola-en.html", + "license": "scola-en.LICENSE" + }, + { + "license_key": "scola-fr", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-scola-fr", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scola-fr.json", + "yaml": "scola-fr.yml", + "html": "scola-fr.html", + "license": "scola-fr.LICENSE" + }, + { + "license_key": "scribbles", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-scribbles", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scribbles.json", + "yaml": "scribbles.yml", + "html": "scribbles.html", + "license": "scribbles.LICENSE" + }, + { + "license_key": "script-asylum", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-script-asylum", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "script-asylum.json", + "yaml": "script-asylum.yml", + "html": "script-asylum.html", + "license": "script-asylum.LICENSE" + }, + { + "license_key": "script-nikhilk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-script-nikhilk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "script-nikhilk.json", + "yaml": "script-nikhilk.yml", + "html": "script-nikhilk.html", + "license": "script-nikhilk.LICENSE" + }, + { + "license_key": "scrub", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-scrub", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scrub.json", + "yaml": "scrub.yml", + "html": "scrub.html", + "license": "scrub.LICENSE" + }, + { + "license_key": "scsl-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-scsl-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "scsl-3.0.json", + "yaml": "scsl-3.0.yml", + "html": "scsl-3.0.html", + "license": "scsl-3.0.LICENSE" + }, + { + "license_key": "secret-labs-2011", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-secret-labs-2011", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "secret-labs-2011.json", + "yaml": "secret-labs-2011.yml", + "html": "secret-labs-2011.html", + "license": "secret-labs-2011.LICENSE" + }, + { + "license_key": "see-license", + "category": "Unstated License", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "see-license.json", + "yaml": "see-license.yml", + "html": "see-license.html", + "license": "see-license.LICENSE" + }, + { + "license_key": "selinux-nsa-declaration-1.0", + "category": "Public Domain", + "spdx_license_key": "libselinux-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "selinux-nsa-declaration-1.0.json", + "yaml": "selinux-nsa-declaration-1.0.yml", + "html": "selinux-nsa-declaration-1.0.html", + "license": "selinux-nsa-declaration-1.0.LICENSE" + }, + { + "license_key": "semgrep-registry", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-semgrep-registry", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "semgrep-registry.json", + "yaml": "semgrep-registry.yml", + "html": "semgrep-registry.html", + "license": "semgrep-registry.LICENSE" + }, + { + "license_key": "sencha-app-floss-exception", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-sencha-app-floss-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "sencha-app-floss-exception.json", + "yaml": "sencha-app-floss-exception.yml", + "html": "sencha-app-floss-exception.html", + "license": "sencha-app-floss-exception.LICENSE" + }, + { + "license_key": "sencha-commercial", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-sencha-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sencha-commercial.json", + "yaml": "sencha-commercial.yml", + "html": "sencha-commercial.html", + "license": "sencha-commercial.LICENSE" + }, + { + "license_key": "sencha-commercial-3.17", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-sencha-commercial-3.17", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sencha-commercial-3.17.json", + "yaml": "sencha-commercial-3.17.yml", + "html": "sencha-commercial-3.17.html", + "license": "sencha-commercial-3.17.LICENSE" + }, + { + "license_key": "sencha-commercial-3.9", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-sencha-commercial-3.9", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sencha-commercial-3.9.json", + "yaml": "sencha-commercial-3.9.yml", + "html": "sencha-commercial-3.9.html", + "license": "sencha-commercial-3.9.LICENSE" + }, + { + "license_key": "sencha-dev-floss-exception", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-sencha-dev-floss-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "sencha-dev-floss-exception.json", + "yaml": "sencha-dev-floss-exception.yml", + "html": "sencha-dev-floss-exception.html", + "license": "sencha-dev-floss-exception.LICENSE" + }, + { + "license_key": "sendmail", + "category": "Permissive", + "spdx_license_key": "Sendmail", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sendmail.json", + "yaml": "sendmail.yml", + "html": "sendmail.html", + "license": "sendmail.LICENSE" + }, + { + "license_key": "sendmail-8.23", + "category": "Copyleft Limited", + "spdx_license_key": "Sendmail-8.23", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sendmail-8.23.json", + "yaml": "sendmail-8.23.yml", + "html": "sendmail-8.23.html", + "license": "sendmail-8.23.LICENSE" + }, + { + "license_key": "service-comp-arch", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-service-comp-arch", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "service-comp-arch.json", + "yaml": "service-comp-arch.yml", + "html": "service-comp-arch.html", + "license": "service-comp-arch.LICENSE" + }, + { + "license_key": "sfl-license", + "category": "Permissive", + "spdx_license_key": "iMatix", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sfl-license.json", + "yaml": "sfl-license.yml", + "html": "sfl-license.html", + "license": "sfl-license.LICENSE" + }, + { + "license_key": "sgi-cid-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sgi-cid-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sgi-cid-1.0.json", + "yaml": "sgi-cid-1.0.yml", + "html": "sgi-cid-1.0.html", + "license": "sgi-cid-1.0.LICENSE" + }, + { + "license_key": "sgi-freeb-1.1", + "category": "Permissive", + "spdx_license_key": "SGI-B-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sgi-freeb-1.1.json", + "yaml": "sgi-freeb-1.1.yml", + "html": "sgi-freeb-1.1.html", + "license": "sgi-freeb-1.1.LICENSE" + }, + { + "license_key": "sgi-freeb-2.0", + "category": "Permissive", + "spdx_license_key": "SGI-B-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sgi-freeb-2.0.json", + "yaml": "sgi-freeb-2.0.yml", + "html": "sgi-freeb-2.0.html", + "license": "sgi-freeb-2.0.LICENSE" + }, + { + "license_key": "sgi-fslb-1.0", + "category": "Free Restricted", + "spdx_license_key": "SGI-B-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sgi-fslb-1.0.json", + "yaml": "sgi-fslb-1.0.yml", + "html": "sgi-fslb-1.0.html", + "license": "sgi-fslb-1.0.LICENSE" + }, + { + "license_key": "sgi-glx-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sgi-glx-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sgi-glx-1.0.json", + "yaml": "sgi-glx-1.0.yml", + "html": "sgi-glx-1.0.html", + "license": "sgi-glx-1.0.LICENSE" + }, + { + "license_key": "sglib", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sglib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sglib.json", + "yaml": "sglib.yml", + "html": "sglib.html", + "license": "sglib.LICENSE" + }, + { + "license_key": "sgp4", + "category": "Permissive", + "spdx_license_key": "SGP4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sgp4.json", + "yaml": "sgp4.yml", + "html": "sgp4.html", + "license": "sgp4.LICENSE" + }, + { + "license_key": "sh-cla-1.1", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-sh-cla-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sh-cla-1.1.json", + "yaml": "sh-cla-1.1.yml", + "html": "sh-cla-1.1.html", + "license": "sh-cla-1.1.LICENSE" + }, + { + "license_key": "shavlik-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-shavlik-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "shavlik-eula.json", + "yaml": "shavlik-eula.yml", + "html": "shavlik-eula.html", + "license": "shavlik-eula.LICENSE" + }, + { + "license_key": "shital-shah", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-shital-shah", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "shital-shah.json", + "yaml": "shital-shah.yml", + "html": "shital-shah.html", + "license": "shital-shah.LICENSE" + }, + { + "license_key": "shl-0.5", + "category": "Permissive", + "spdx_license_key": "SHL-0.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "shl-0.5.json", + "yaml": "shl-0.5.yml", + "html": "shl-0.5.html", + "license": "shl-0.5.LICENSE" + }, + { + "license_key": "shl-0.51", + "category": "Permissive", + "spdx_license_key": "SHL-0.51", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "shl-0.51.json", + "yaml": "shl-0.51.yml", + "html": "shl-0.51.html", + "license": "shl-0.51.LICENSE" + }, + { + "license_key": "shl-2.0", + "category": "Permissive", + "spdx_license_key": "SHL-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "shl-2.0.json", + "yaml": "shl-2.0.yml", + "html": "shl-2.0.html", + "license": "shl-2.0.LICENSE" + }, + { + "license_key": "shl-2.1", + "category": "Permissive", + "spdx_license_key": "SHL-2.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "shl-2.1.json", + "yaml": "shl-2.1.yml", + "html": "shl-2.1.html", + "license": "shl-2.1.LICENSE" + }, + { + "license_key": "signal-gpl-3.0-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-signal-gpl-3.0-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "signal-gpl-3.0-exception.json", + "yaml": "signal-gpl-3.0-exception.yml", + "html": "signal-gpl-3.0-exception.html", + "license": "signal-gpl-3.0-exception.LICENSE" + }, + { + "license_key": "silicon-image-2007", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-silicon-image-2007", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "silicon-image-2007.json", + "yaml": "silicon-image-2007.yml", + "html": "silicon-image-2007.html", + "license": "silicon-image-2007.LICENSE" + }, + { + "license_key": "simpl-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-simpl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "simpl-1.1.json", + "yaml": "simpl-1.1.yml", + "html": "simpl-1.1.html", + "license": "simpl-1.1.LICENSE" + }, + { + "license_key": "simpl-2.0", + "category": "Copyleft", + "spdx_license_key": "SimPL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "simpl-2.0.json", + "yaml": "simpl-2.0.yml", + "html": "simpl-2.0.html", + "license": "simpl-2.0.LICENSE" + }, + { + "license_key": "six-labors-split-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-six-labors-split-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "six-labors-split-1.0.json", + "yaml": "six-labors-split-1.0.yml", + "html": "six-labors-split-1.0.html", + "license": "six-labors-split-1.0.LICENSE" + }, + { + "license_key": "skip-2014", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-skip-2014", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "skip-2014.json", + "yaml": "skip-2014.yml", + "html": "skip-2014.html", + "license": "skip-2014.LICENSE" + }, + { + "license_key": "sl", + "category": "Permissive", + "spdx_license_key": "SL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sl.json", + "yaml": "sl.yml", + "html": "sl.html", + "license": "sl.LICENSE" + }, + { + "license_key": "sleepycat", + "category": "Copyleft", + "spdx_license_key": "Sleepycat", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sleepycat.json", + "yaml": "sleepycat.yml", + "html": "sleepycat.html", + "license": "sleepycat.LICENSE" + }, + { + "license_key": "slf4j-2005", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "slf4j-2005.json", + "yaml": "slf4j-2005.yml", + "html": "slf4j-2005.html", + "license": "slf4j-2005.LICENSE" + }, + { + "license_key": "slf4j-2008", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "slf4j-2008.json", + "yaml": "slf4j-2008.yml", + "html": "slf4j-2008.html", + "license": "slf4j-2008.LICENSE" + }, + { + "license_key": "slint-commercial-2.0", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-slint-commercial-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "slint-commercial-2.0.json", + "yaml": "slint-commercial-2.0.yml", + "html": "slint-commercial-2.0.html", + "license": "slint-commercial-2.0.LICENSE" + }, + { + "license_key": "slint-royalty-free-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-slint-royalty-free-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "slint-royalty-free-1.0.json", + "yaml": "slint-royalty-free-1.0.yml", + "html": "slint-royalty-free-1.0.html", + "license": "slint-royalty-free-1.0.LICENSE" + }, + { + "license_key": "slysoft-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-slysoft-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "slysoft-eula.json", + "yaml": "slysoft-eula.yml", + "html": "slysoft-eula.html", + "license": "slysoft-eula.LICENSE" + }, + { + "license_key": "smail-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-smail-gpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "smail-gpl.json", + "yaml": "smail-gpl.yml", + "html": "smail-gpl.html", + "license": "smail-gpl.LICENSE" + }, + { + "license_key": "smartlabs-freeware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-smartlabs-freeware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "smartlabs-freeware.json", + "yaml": "smartlabs-freeware.yml", + "html": "smartlabs-freeware.html", + "license": "smartlabs-freeware.LICENSE" + }, + { + "license_key": "smppl", + "category": "Copyleft Limited", + "spdx_license_key": "SMPPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "smppl.json", + "yaml": "smppl.yml", + "html": "smppl.html", + "license": "smppl.LICENSE" + }, + { + "license_key": "smsc-non-commercial-2012", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-smsc-non-commercial-2012", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "smsc-non-commercial-2012.json", + "yaml": "smsc-non-commercial-2012.yml", + "html": "smsc-non-commercial-2012.html", + "license": "smsc-non-commercial-2012.LICENSE" + }, + { + "license_key": "snapeda-design-exception-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-snapeda-design-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "snapeda-design-exception-1.0.json", + "yaml": "snapeda-design-exception-1.0.yml", + "html": "snapeda-design-exception-1.0.html", + "license": "snapeda-design-exception-1.0.LICENSE" + }, + { + "license_key": "snia", + "category": "Copyleft", + "spdx_license_key": "SNIA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "snia.json", + "yaml": "snia.yml", + "html": "snia.html", + "license": "snia.LICENSE" + }, + { + "license_key": "snmp4j-smi", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-snmp4j-smi", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "snmp4j-smi.json", + "yaml": "snmp4j-smi.yml", + "html": "snmp4j-smi.html", + "license": "snmp4j-smi.LICENSE" + }, + { + "license_key": "snprintf", + "category": "Permissive", + "spdx_license_key": "snprintf", + "other_spdx_license_keys": [ + "LicenseRef-scancode-snprintf" + ], + "is_exception": false, + "is_deprecated": false, + "json": "snprintf.json", + "yaml": "snprintf.yml", + "html": "snprintf.html", + "license": "snprintf.LICENSE" + }, + { + "license_key": "softerra-ldap-browser-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-softerra-ldap-browser-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "softerra-ldap-browser-eula.json", + "yaml": "softerra-ldap-browser-eula.yml", + "html": "softerra-ldap-browser-eula.html", + "license": "softerra-ldap-browser-eula.LICENSE" + }, + { + "license_key": "softfloat", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-softfloat", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "softfloat.json", + "yaml": "softfloat.yml", + "html": "softfloat.html", + "license": "softfloat.LICENSE" + }, + { + "license_key": "softfloat-2.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-softfloat-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "softfloat-2.0.json", + "yaml": "softfloat-2.0.yml", + "html": "softfloat-2.0.html", + "license": "softfloat-2.0.LICENSE" + }, + { + "license_key": "softfloat-2c", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-softfloat-2c", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "softfloat-2c.json", + "yaml": "softfloat-2c.yml", + "html": "softfloat-2c.html", + "license": "softfloat-2c.LICENSE" + }, + { + "license_key": "softsurfer", + "category": "Permissive", + "spdx_license_key": "softSurfer", + "other_spdx_license_keys": [ + "LicenseRef-scancode-softsurfer" + ], + "is_exception": false, + "is_deprecated": false, + "json": "softsurfer.json", + "yaml": "softsurfer.yml", + "html": "softsurfer.html", + "license": "softsurfer.LICENSE" + }, + { + "license_key": "solace-software-eula-2020", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-solace-software-eula-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "solace-software-eula-2020.json", + "yaml": "solace-software-eula-2020.yml", + "html": "solace-software-eula-2020.html", + "license": "solace-software-eula-2020.LICENSE" + }, + { + "license_key": "soundex", + "category": "Permissive", + "spdx_license_key": "Soundex", + "other_spdx_license_keys": [ + "LicenseRef-scancode-soundex" + ], + "is_exception": false, + "is_deprecated": false, + "json": "soundex.json", + "yaml": "soundex.yml", + "html": "soundex.html", + "license": "soundex.LICENSE" + }, + { + "license_key": "sourcegraph-enterprise-2018", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-sourcegraph-enterprise-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sourcegraph-enterprise-2018.json", + "yaml": "sourcegraph-enterprise-2018.yml", + "html": "sourcegraph-enterprise-2018.html", + "license": "sourcegraph-enterprise-2018.LICENSE" + }, + { + "license_key": "spark-jive", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-spark-jive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "spark-jive.json", + "yaml": "spark-jive.yml", + "html": "spark-jive.html", + "license": "spark-jive.LICENSE" + }, + { + "license_key": "sparky", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sparky", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sparky.json", + "yaml": "sparky.yml", + "html": "sparky.html", + "license": "sparky.LICENSE" + }, + { + "license_key": "speechworks-1.1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-speechworks-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "speechworks-1.1.json", + "yaml": "speechworks-1.1.yml", + "html": "speechworks-1.1.html", + "license": "speechworks-1.1.LICENSE" + }, + { + "license_key": "spell-checker-exception-lgpl-2.1-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-spell-exception-lgpl-2.1-plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-spell-checker-exception-lgpl-2.1-plus" + ], + "is_exception": true, + "is_deprecated": false, + "json": "spell-checker-exception-lgpl-2.1-plus.json", + "yaml": "spell-checker-exception-lgpl-2.1-plus.yml", + "html": "spell-checker-exception-lgpl-2.1-plus.html", + "license": "spell-checker-exception-lgpl-2.1-plus.LICENSE" + }, + { + "license_key": "spl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "SPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "spl-1.0.json", + "yaml": "spl-1.0.yml", + "html": "spl-1.0.html", + "license": "spl-1.0.LICENSE" + }, + { + "license_key": "splunk-3pp-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-splunk-3pp-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "splunk-3pp-eula.json", + "yaml": "splunk-3pp-eula.yml", + "html": "splunk-3pp-eula.html", + "license": "splunk-3pp-eula.LICENSE" + }, + { + "license_key": "splunk-mint-tos-2018", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-splunk-mint-tos-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "splunk-mint-tos-2018.json", + "yaml": "splunk-mint-tos-2018.yml", + "html": "splunk-mint-tos-2018.html", + "license": "splunk-mint-tos-2018.LICENSE" + }, + { + "license_key": "splunk-sla", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-splunk-sla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "splunk-sla.json", + "yaml": "splunk-sla.yml", + "html": "splunk-sla.html", + "license": "splunk-sla.LICENSE" + }, + { + "license_key": "square-cla", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-square-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "square-cla.json", + "yaml": "square-cla.yml", + "html": "square-cla.html", + "license": "square-cla.LICENSE" + }, + { + "license_key": "squeak", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-squeak", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "squeak.json", + "yaml": "squeak.yml", + "html": "squeak.html", + "license": "squeak.LICENSE" + }, + { + "license_key": "srgb", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-srgb", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "srgb.json", + "yaml": "srgb.yml", + "html": "srgb.html", + "license": "srgb.LICENSE" + }, + { + "license_key": "ssh-keyscan", + "category": "Permissive", + "spdx_license_key": "ssh-keyscan", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ssh-keyscan.json", + "yaml": "ssh-keyscan.yml", + "html": "ssh-keyscan.html", + "license": "ssh-keyscan.LICENSE" + }, + { + "license_key": "ssleay", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ssleay", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ssleay.json", + "yaml": "ssleay.yml", + "html": "ssleay.html", + "license": "ssleay.LICENSE" + }, + { + "license_key": "ssleay-windows", + "category": "Permissive", + "spdx_license_key": "SSLeay-standalone", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ssleay-windows" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ssleay-windows.json", + "yaml": "ssleay-windows.yml", + "html": "ssleay-windows.html", + "license": "ssleay-windows.LICENSE" + }, + { + "license_key": "st-bsd-restricted", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-st-bsd-restricted", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "st-bsd-restricted.json", + "yaml": "st-bsd-restricted.yml", + "html": "st-bsd-restricted.html", + "license": "st-bsd-restricted.LICENSE" + }, + { + "license_key": "st-mcd-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-st-mcd-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "st-mcd-2.0.json", + "yaml": "st-mcd-2.0.yml", + "html": "st-mcd-2.0.html", + "license": "st-mcd-2.0.LICENSE" + }, + { + "license_key": "stable-diffusion-2022-08-22", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-stable-diffusion-2022-08-22", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stable-diffusion-2022-08-22.json", + "yaml": "stable-diffusion-2022-08-22.yml", + "html": "stable-diffusion-2022-08-22.html", + "license": "stable-diffusion-2022-08-22.LICENSE" + }, + { + "license_key": "standard-ml-nj", + "category": "Permissive", + "spdx_license_key": "SMLNJ", + "other_spdx_license_keys": [ + "StandardML-NJ" + ], + "is_exception": false, + "is_deprecated": false, + "json": "standard-ml-nj.json", + "yaml": "standard-ml-nj.yml", + "html": "standard-ml-nj.html", + "license": "standard-ml-nj.LICENSE" + }, + { + "license_key": "stanford-mrouted", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-stanford-mrouted", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stanford-mrouted.json", + "yaml": "stanford-mrouted.yml", + "html": "stanford-mrouted.html", + "license": "stanford-mrouted.LICENSE" + }, + { + "license_key": "stanford-pvrg", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-stanford-pvrg", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stanford-pvrg.json", + "yaml": "stanford-pvrg.yml", + "html": "stanford-pvrg.html", + "license": "stanford-pvrg.LICENSE" + }, + { + "license_key": "statewizard", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-statewizard", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "statewizard.json", + "yaml": "statewizard.yml", + "html": "statewizard.html", + "license": "statewizard.LICENSE" + }, + { + "license_key": "stax", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-stax", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stax.json", + "yaml": "stax.yml", + "html": "stax.html", + "license": "stax.LICENSE" + }, + { + "license_key": "stlport-2000", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-stlport-2000", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stlport-2000.json", + "yaml": "stlport-2000.yml", + "html": "stlport-2000.html", + "license": "stlport-2000.LICENSE" + }, + { + "license_key": "stlport-4.5", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-stlport-4.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stlport-4.5.json", + "yaml": "stlport-4.5.yml", + "html": "stlport-4.5.html", + "license": "stlport-4.5.LICENSE" + }, + { + "license_key": "stmicroelectronics-centrallabs", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-stmicroelectronics-centrallabs", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stmicroelectronics-centrallabs.json", + "yaml": "stmicroelectronics-centrallabs.yml", + "html": "stmicroelectronics-centrallabs.html", + "license": "stmicroelectronics-centrallabs.LICENSE" + }, + { + "license_key": "stmicroelectronics-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-stmicro-linux-firmware", + "other_spdx_license_keys": [ + "LicenseRef-scancode-stmicroelectronics-linux-firmware" + ], + "is_exception": false, + "is_deprecated": false, + "json": "stmicroelectronics-linux-firmware.json", + "yaml": "stmicroelectronics-linux-firmware.yml", + "html": "stmicroelectronics-linux-firmware.html", + "license": "stmicroelectronics-linux-firmware.LICENSE" + }, + { + "license_key": "stream-benchmark", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-stream-benchmark", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stream-benchmark.json", + "yaml": "stream-benchmark.yml", + "html": "stream-benchmark.html", + "license": "stream-benchmark.LICENSE" + }, + { + "license_key": "strongswan-exception", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-strongswan-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "strongswan-exception.json", + "yaml": "strongswan-exception.yml", + "html": "strongswan-exception.html", + "license": "strongswan-exception.LICENSE" + }, + { + "license_key": "stu-nicholls", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-stu-nicholls", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "stu-nicholls.json", + "yaml": "stu-nicholls.yml", + "html": "stu-nicholls.html", + "license": "stu-nicholls.LICENSE" + }, + { + "license_key": "stunnel-exception", + "category": "Copyleft Limited", + "spdx_license_key": "stunnel-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "stunnel-exception.json", + "yaml": "stunnel-exception.yml", + "html": "stunnel-exception.html", + "license": "stunnel-exception.LICENSE" + }, + { + "license_key": "subcommander-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-subcommander-exception-2.0plus", + "other_spdx_license_keys": [ + "LicenseRef-scancode-subcommander-exception-2.0-plus" + ], + "is_exception": true, + "is_deprecated": false, + "json": "subcommander-exception-2.0-plus.json", + "yaml": "subcommander-exception-2.0-plus.yml", + "html": "subcommander-exception-2.0-plus.html", + "license": "subcommander-exception-2.0-plus.LICENSE" + }, + { + "license_key": "sugarcrm-1.1.3", + "category": "Copyleft", + "spdx_license_key": "SugarCRM-1.1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sugarcrm-1.1.3.json", + "yaml": "sugarcrm-1.1.3.yml", + "html": "sugarcrm-1.1.3.html", + "license": "sugarcrm-1.1.3.LICENSE" + }, + { + "license_key": "sun-bcl-11-06", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-06", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-11-06.json", + "yaml": "sun-bcl-11-06.yml", + "html": "sun-bcl-11-06.html", + "license": "sun-bcl-11-06.LICENSE" + }, + { + "license_key": "sun-bcl-11-07", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-07", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-11-07.json", + "yaml": "sun-bcl-11-07.yml", + "html": "sun-bcl-11-07.html", + "license": "sun-bcl-11-07.LICENSE" + }, + { + "license_key": "sun-bcl-11-08", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-11-08", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-11-08.json", + "yaml": "sun-bcl-11-08.yml", + "html": "sun-bcl-11-08.html", + "license": "sun-bcl-11-08.LICENSE" + }, + { + "license_key": "sun-bcl-j2re-1.2.x", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.2.x", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-j2re-1.2.x.json", + "yaml": "sun-bcl-j2re-1.2.x.yml", + "html": "sun-bcl-j2re-1.2.x.html", + "license": "sun-bcl-j2re-1.2.x.LICENSE" + }, + { + "license_key": "sun-bcl-j2re-1.4.2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.4.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-j2re-1.4.2.json", + "yaml": "sun-bcl-j2re-1.4.2.yml", + "html": "sun-bcl-j2re-1.4.2.html", + "license": "sun-bcl-j2re-1.4.2.LICENSE" + }, + { + "license_key": "sun-bcl-j2re-1.4.x", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-1.4.x", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-j2re-1.4.x.json", + "yaml": "sun-bcl-j2re-1.4.x.yml", + "html": "sun-bcl-j2re-1.4.x.html", + "license": "sun-bcl-j2re-1.4.x.LICENSE" + }, + { + "license_key": "sun-bcl-j2re-5.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-j2re-5.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-j2re-5.0.json", + "yaml": "sun-bcl-j2re-5.0.yml", + "html": "sun-bcl-j2re-5.0.html", + "license": "sun-bcl-j2re-5.0.LICENSE" + }, + { + "license_key": "sun-bcl-java-servlet-imp-2.1.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-java-servlet-imp-2.1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-java-servlet-imp-2.1.1.json", + "yaml": "sun-bcl-java-servlet-imp-2.1.1.yml", + "html": "sun-bcl-java-servlet-imp-2.1.1.html", + "license": "sun-bcl-java-servlet-imp-2.1.1.LICENSE" + }, + { + "license_key": "sun-bcl-javahelp", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-javahelp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-javahelp.json", + "yaml": "sun-bcl-javahelp.yml", + "html": "sun-bcl-javahelp.html", + "license": "sun-bcl-javahelp.LICENSE" + }, + { + "license_key": "sun-bcl-jimi-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-jimi-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-jimi-sdk.json", + "yaml": "sun-bcl-jimi-sdk.yml", + "html": "sun-bcl-jimi-sdk.html", + "license": "sun-bcl-jimi-sdk.LICENSE" + }, + { + "license_key": "sun-bcl-jre6", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-jre6", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-jre6.json", + "yaml": "sun-bcl-jre6.yml", + "html": "sun-bcl-jre6.html", + "license": "sun-bcl-jre6.LICENSE" + }, + { + "license_key": "sun-bcl-jsmq", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-jsmq", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-jsmq.json", + "yaml": "sun-bcl-jsmq.yml", + "html": "sun-bcl-jsmq.html", + "license": "sun-bcl-jsmq.LICENSE" + }, + { + "license_key": "sun-bcl-opendmk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-opendmk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-opendmk.json", + "yaml": "sun-bcl-opendmk.yml", + "html": "sun-bcl-opendmk.html", + "license": "sun-bcl-opendmk.LICENSE" + }, + { + "license_key": "sun-bcl-openjdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-openjdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-openjdk.json", + "yaml": "sun-bcl-openjdk.yml", + "html": "sun-bcl-openjdk.html", + "license": "sun-bcl-openjdk.LICENSE" + }, + { + "license_key": "sun-bcl-sdk-1.3", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-sdk-1.3.json", + "yaml": "sun-bcl-sdk-1.3.yml", + "html": "sun-bcl-sdk-1.3.html", + "license": "sun-bcl-sdk-1.3.LICENSE" + }, + { + "license_key": "sun-bcl-sdk-1.4.2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-1.4.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-sdk-1.4.2.json", + "yaml": "sun-bcl-sdk-1.4.2.yml", + "html": "sun-bcl-sdk-1.4.2.html", + "license": "sun-bcl-sdk-1.4.2.LICENSE" + }, + { + "license_key": "sun-bcl-sdk-5.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-5.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-sdk-5.0.json", + "yaml": "sun-bcl-sdk-5.0.yml", + "html": "sun-bcl-sdk-5.0.html", + "license": "sun-bcl-sdk-5.0.LICENSE" + }, + { + "license_key": "sun-bcl-sdk-6.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-sdk-6.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-sdk-6.0.json", + "yaml": "sun-bcl-sdk-6.0.yml", + "html": "sun-bcl-sdk-6.0.html", + "license": "sun-bcl-sdk-6.0.LICENSE" + }, + { + "license_key": "sun-bcl-web-start", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-bcl-web-start", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bcl-web-start.json", + "yaml": "sun-bcl-web-start.yml", + "html": "sun-bcl-web-start.html", + "license": "sun-bcl-web-start.LICENSE" + }, + { + "license_key": "sun-bsd-extra", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-sun-bsd-extra", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bsd-extra.json", + "yaml": "sun-bsd-extra.yml", + "html": "sun-bsd-extra.html", + "license": "sun-bsd-extra.LICENSE" + }, + { + "license_key": "sun-bsd-no-nuclear", + "category": "Free Restricted", + "spdx_license_key": "BSD-3-Clause-No-Nuclear-License", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-bsd-no-nuclear.json", + "yaml": "sun-bsd-no-nuclear.yml", + "html": "sun-bsd-no-nuclear.html", + "license": "sun-bsd-no-nuclear.LICENSE" + }, + { + "license_key": "sun-cc-pp-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-cc-pp-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-cc-pp-1.0.json", + "yaml": "sun-cc-pp-1.0.yml", + "html": "sun-cc-pp-1.0.html", + "license": "sun-cc-pp-1.0.LICENSE" + }, + { + "license_key": "sun-communications-api", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-communications-api", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-communications-api.json", + "yaml": "sun-communications-api.yml", + "html": "sun-communications-api.html", + "license": "sun-communications-api.LICENSE" + }, + { + "license_key": "sun-ejb-spec-2.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-ejb-spec-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-ejb-spec-2.1.json", + "yaml": "sun-ejb-spec-2.1.yml", + "html": "sun-ejb-spec-2.1.html", + "license": "sun-ejb-spec-2.1.LICENSE" + }, + { + "license_key": "sun-ejb-spec-3.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-ejb-spec-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-ejb-spec-3.0.json", + "yaml": "sun-ejb-spec-3.0.yml", + "html": "sun-ejb-spec-3.0.html", + "license": "sun-ejb-spec-3.0.LICENSE" + }, + { + "license_key": "sun-entitlement-03-15", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-entitlement-03-15", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-entitlement-03-15.json", + "yaml": "sun-entitlement-03-15.yml", + "html": "sun-entitlement-03-15.html", + "license": "sun-entitlement-03-15.LICENSE" + }, + { + "license_key": "sun-entitlement-jaf", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-entitlement-jaf", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-entitlement-jaf.json", + "yaml": "sun-entitlement-jaf.yml", + "html": "sun-entitlement-jaf.html", + "license": "sun-entitlement-jaf.LICENSE" + }, + { + "license_key": "sun-glassfish", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-glassfish", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-glassfish.json", + "yaml": "sun-glassfish.yml", + "html": "sun-glassfish.html", + "license": "sun-glassfish.LICENSE" + }, + { + "license_key": "sun-iiop", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-iiop", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-iiop.json", + "yaml": "sun-iiop.yml", + "html": "sun-iiop.html", + "license": "sun-iiop.LICENSE" + }, + { + "license_key": "sun-java-transaction-api", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-java-transaction-api", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-java-transaction-api.json", + "yaml": "sun-java-transaction-api.yml", + "html": "sun-java-transaction-api.html", + "license": "sun-java-transaction-api.LICENSE" + }, + { + "license_key": "sun-java-web-services-dev-pack-1.6", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-java-web-services-dev-1.6", + "other_spdx_license_keys": [ + "LicenseRef-scancode-sun-java-web-services-dev-pack-1.6" + ], + "is_exception": false, + "is_deprecated": false, + "json": "sun-java-web-services-dev-pack-1.6.json", + "yaml": "sun-java-web-services-dev-pack-1.6.yml", + "html": "sun-java-web-services-dev-pack-1.6.html", + "license": "sun-java-web-services-dev-pack-1.6.LICENSE" + }, + { + "license_key": "sun-javamail", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-javamail", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-javamail.json", + "yaml": "sun-javamail.yml", + "html": "sun-javamail.html", + "license": "sun-javamail.LICENSE" + }, + { + "license_key": "sun-jsr-spec-04-2006", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-jsr-spec-04-2006", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-jsr-spec-04-2006.json", + "yaml": "sun-jsr-spec-04-2006.yml", + "html": "sun-jsr-spec-04-2006.html", + "license": "sun-jsr-spec-04-2006.LICENSE" + }, + { + "license_key": "sun-jta-spec-1.0.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-jta-spec-1.0.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-jta-spec-1.0.1.json", + "yaml": "sun-jta-spec-1.0.1.yml", + "html": "sun-jta-spec-1.0.1.html", + "license": "sun-jta-spec-1.0.1.LICENSE" + }, + { + "license_key": "sun-jta-spec-1.0.1b", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-jta-spec-1.0.1b", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-jta-spec-1.0.1b.json", + "yaml": "sun-jta-spec-1.0.1b.yml", + "html": "sun-jta-spec-1.0.1b.html", + "license": "sun-jta-spec-1.0.1b.LICENSE" + }, + { + "license_key": "sun-no-high-risk-activities", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-sun-no-high-risk-activities", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-no-high-risk-activities.json", + "yaml": "sun-no-high-risk-activities.yml", + "html": "sun-no-high-risk-activities.html", + "license": "sun-no-high-risk-activities.LICENSE" + }, + { + "license_key": "sun-ppp", + "category": "Permissive", + "spdx_license_key": "Sun-PPP", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-ppp.json", + "yaml": "sun-ppp.yml", + "html": "sun-ppp.html", + "license": "sun-ppp.LICENSE" + }, + { + "license_key": "sun-project-x", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-project-x", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-project-x.json", + "yaml": "sun-project-x.yml", + "html": "sun-project-x.html", + "license": "sun-project-x.LICENSE" + }, + { + "license_key": "sun-prop-non-commercial", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-prop-non-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-prop-non-commercial.json", + "yaml": "sun-prop-non-commercial.yml", + "html": "sun-prop-non-commercial.html", + "license": "sun-prop-non-commercial.LICENSE" + }, + { + "license_key": "sun-proprietary-jdk", + "category": "Commercial", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "sun-proprietary-jdk.json", + "yaml": "sun-proprietary-jdk.yml", + "html": "sun-proprietary-jdk.html", + "license": "sun-proprietary-jdk.LICENSE" + }, + { + "license_key": "sun-rpc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sun-rpc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-rpc.json", + "yaml": "sun-rpc.yml", + "html": "sun-rpc.html", + "license": "sun-rpc.LICENSE" + }, + { + "license_key": "sun-sdk-spec-1.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-sun-sdk-spec-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-sdk-spec-1.1.json", + "yaml": "sun-sdk-spec-1.1.yml", + "html": "sun-sdk-spec-1.1.html", + "license": "sun-sdk-spec-1.1.LICENSE" + }, + { + "license_key": "sun-sissl-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-sun-sissl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-sissl-1.0.json", + "yaml": "sun-sissl-1.0.yml", + "html": "sun-sissl-1.0.html", + "license": "sun-sissl-1.0.LICENSE" + }, + { + "license_key": "sun-sissl-1.1", + "category": "Proprietary Free", + "spdx_license_key": "SISSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-sissl-1.1.json", + "yaml": "sun-sissl-1.1.yml", + "html": "sun-sissl-1.1.html", + "license": "sun-sissl-1.1.LICENSE" + }, + { + "license_key": "sun-sissl-1.2", + "category": "Proprietary Free", + "spdx_license_key": "SISSL-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-sissl-1.2.json", + "yaml": "sun-sissl-1.2.yml", + "html": "sun-sissl-1.2.html", + "license": "sun-sissl-1.2.LICENSE" + }, + { + "license_key": "sun-source", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sun-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-source.json", + "yaml": "sun-source.yml", + "html": "sun-source.html", + "license": "sun-source.LICENSE" + }, + { + "license_key": "sun-ssscfr-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-sun-ssscfr-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sun-ssscfr-1.1.json", + "yaml": "sun-ssscfr-1.1.yml", + "html": "sun-ssscfr-1.1.html", + "license": "sun-ssscfr-1.1.LICENSE" + }, + { + "license_key": "sunpro", + "category": "Permissive", + "spdx_license_key": "SunPro", + "other_spdx_license_keys": [ + "LicenseRef-scancode-sunpro" + ], + "is_exception": false, + "is_deprecated": false, + "json": "sunpro.json", + "yaml": "sunpro.yml", + "html": "sunpro.html", + "license": "sunpro.LICENSE" + }, + { + "license_key": "sunsoft", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-sunsoft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sunsoft.json", + "yaml": "sunsoft.yml", + "html": "sunsoft.html", + "license": "sunsoft.LICENSE" + }, + { + "license_key": "supervisor", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-supervisor", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "supervisor.json", + "yaml": "supervisor.yml", + "html": "supervisor.html", + "license": "supervisor.LICENSE" + }, + { + "license_key": "sustainable-use-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-sustainable-use-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sustainable-use-1.0.json", + "yaml": "sustainable-use-1.0.yml", + "html": "sustainable-use-1.0.html", + "license": "sustainable-use-1.0.LICENSE" + }, + { + "license_key": "svndiff", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-svndiff", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "svndiff.json", + "yaml": "svndiff.yml", + "html": "svndiff.html", + "license": "svndiff.LICENSE" + }, + { + "license_key": "swi-exception", + "category": "Copyleft Limited", + "spdx_license_key": "SWI-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "swi-exception.json", + "yaml": "swi-exception.yml", + "html": "swi-exception.html", + "license": "swi-exception.LICENSE" + }, + { + "license_key": "swig", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-swig", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "swig.json", + "yaml": "swig.yml", + "html": "swig.html", + "license": "swig.LICENSE" + }, + { + "license_key": "swl", + "category": "Permissive", + "spdx_license_key": "SWL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "swl.json", + "yaml": "swl.yml", + "html": "swl.html", + "license": "swl.LICENSE" + }, + { + "license_key": "swrule", + "category": "Permissive", + "spdx_license_key": "swrule", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "swrule.json", + "yaml": "swrule.yml", + "html": "swrule.html", + "license": "swrule.LICENSE" + }, + { + "license_key": "sybase", + "category": "Proprietary Free", + "spdx_license_key": "Watcom-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "sybase.json", + "yaml": "sybase.yml", + "html": "sybase.html", + "license": "sybase.LICENSE" + }, + { + "license_key": "symlinks", + "category": "Public Domain", + "spdx_license_key": "Symlinks", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "symlinks.json", + "yaml": "symlinks.yml", + "html": "symlinks.html", + "license": "symlinks.LICENSE" + }, + { + "license_key": "symphonysoft", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-symphonysoft", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "symphonysoft.json", + "yaml": "symphonysoft.yml", + "html": "symphonysoft.html", + "license": "symphonysoft.LICENSE" + }, + { + "license_key": "synopsys-attribution", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-synopsys-attribution", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "synopsys-attribution.json", + "yaml": "synopsys-attribution.yml", + "html": "synopsys-attribution.html", + "license": "synopsys-attribution.LICENSE" + }, + { + "license_key": "synopsys-mit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-synopsys-mit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "synopsys-mit.json", + "yaml": "synopsys-mit.yml", + "html": "synopsys-mit.html", + "license": "synopsys-mit.LICENSE" + }, + { + "license_key": "syntext-serna-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-syntext-serna-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "syntext-serna-exception-1.0.json", + "yaml": "syntext-serna-exception-1.0.yml", + "html": "syntext-serna-exception-1.0.html", + "license": "syntext-serna-exception-1.0.LICENSE" + }, + { + "license_key": "synthesis-toolkit", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-synthesis-toolkit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "synthesis-toolkit.json", + "yaml": "synthesis-toolkit.yml", + "html": "synthesis-toolkit.html", + "license": "synthesis-toolkit.LICENSE" + }, + { + "license_key": "t-engine-public", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-engine-public", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-engine-public.json", + "yaml": "t-engine-public.yml", + "html": "t-engine-public.html", + "license": "t-engine-public.LICENSE" + }, + { + "license_key": "t-license-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-license-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-license-1.0.json", + "yaml": "t-license-1.0.yml", + "html": "t-license-1.0.html", + "license": "t-license-1.0.LICENSE" + }, + { + "license_key": "t-license-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-license-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-license-2.0.json", + "yaml": "t-license-2.0.yml", + "html": "t-license-2.0.html", + "license": "t-license-2.0.LICENSE" + }, + { + "license_key": "t-license-2.1", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-license-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-license-2.1.json", + "yaml": "t-license-2.1.yml", + "html": "t-license-2.1.html", + "license": "t-license-2.1.LICENSE" + }, + { + "license_key": "t-license-2.2", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-license-2.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-license-2.2.json", + "yaml": "t-license-2.2.yml", + "html": "t-license-2.2.html", + "license": "t-license-2.2.LICENSE" + }, + { + "license_key": "t-license-amp-t-kernel", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-license-amp-t-kernel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-license-amp-t-kernel.json", + "yaml": "t-license-amp-t-kernel.yml", + "html": "t-license-amp-t-kernel.html", + "license": "t-license-amp-t-kernel.LICENSE" + }, + { + "license_key": "t-license-amp-tkse", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-license-amp-tkse", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-license-amp-tkse.json", + "yaml": "t-license-amp-tkse.yml", + "html": "t-license-amp-tkse.html", + "license": "t-license-amp-tkse.LICENSE" + }, + { + "license_key": "t-license-smp-t-kernel", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-license-smp-t-kernel", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-license-smp-t-kernel.json", + "yaml": "t-license-smp-t-kernel.yml", + "html": "t-license-smp-t-kernel.html", + "license": "t-license-smp-t-kernel.LICENSE" + }, + { + "license_key": "t-license-smp-tkse", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-license-smp-tkse", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-license-smp-tkse.json", + "yaml": "t-license-smp-tkse.yml", + "html": "t-license-smp-tkse.html", + "license": "t-license-smp-tkse.LICENSE" + }, + { + "license_key": "t-license-tkse", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-t-license-tkse", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "t-license-tkse.json", + "yaml": "t-license-tkse.yml", + "html": "t-license-tkse.html", + "license": "t-license-tkse.LICENSE" + }, + { + "license_key": "takao-abe", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-takao-abe", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "takao-abe.json", + "yaml": "takao-abe.yml", + "html": "takao-abe.html", + "license": "takao-abe.LICENSE" + }, + { + "license_key": "takuya-ooura", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-takuya-ooura", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "takuya-ooura.json", + "yaml": "takuya-ooura.yml", + "html": "takuya-ooura.html", + "license": "takuya-ooura.LICENSE" + }, + { + "license_key": "taligent-jdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-taligent-jdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "taligent-jdk.json", + "yaml": "taligent-jdk.yml", + "html": "taligent-jdk.html", + "license": "taligent-jdk.LICENSE" + }, + { + "license_key": "tanuki-community-sla-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tanuki-community-sla-1.0.json", + "yaml": "tanuki-community-sla-1.0.yml", + "html": "tanuki-community-sla-1.0.html", + "license": "tanuki-community-sla-1.0.LICENSE" + }, + { + "license_key": "tanuki-community-sla-1.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tanuki-community-sla-1.1.json", + "yaml": "tanuki-community-sla-1.1.yml", + "html": "tanuki-community-sla-1.1.html", + "license": "tanuki-community-sla-1.1.LICENSE" + }, + { + "license_key": "tanuki-community-sla-1.2", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tanuki-community-sla-1.2.json", + "yaml": "tanuki-community-sla-1.2.yml", + "html": "tanuki-community-sla-1.2.html", + "license": "tanuki-community-sla-1.2.LICENSE" + }, + { + "license_key": "tanuki-community-sla-1.3", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-tanuki-community-sla-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tanuki-community-sla-1.3.json", + "yaml": "tanuki-community-sla-1.3.yml", + "html": "tanuki-community-sla-1.3.html", + "license": "tanuki-community-sla-1.3.LICENSE" + }, + { + "license_key": "tanuki-development", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-tanuki-development", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tanuki-development.json", + "yaml": "tanuki-development.yml", + "html": "tanuki-development.html", + "license": "tanuki-development.LICENSE" + }, + { + "license_key": "tanuki-maintenance", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-tanuki-maintenance", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tanuki-maintenance.json", + "yaml": "tanuki-maintenance.yml", + "html": "tanuki-maintenance.html", + "license": "tanuki-maintenance.LICENSE" + }, + { + "license_key": "tapr-ohl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "TAPR-OHL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tapr-ohl-1.0.json", + "yaml": "tapr-ohl-1.0.yml", + "html": "tapr-ohl-1.0.html", + "license": "tapr-ohl-1.0.LICENSE" + }, + { + "license_key": "tatu-ylonen", + "category": "Permissive", + "spdx_license_key": "SSH-short", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tatu-ylonen.json", + "yaml": "tatu-ylonen.yml", + "html": "tatu-ylonen.html", + "license": "tatu-ylonen.LICENSE" + }, + { + "license_key": "tcg-spec-license-v1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tcg-spec-license-v1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tcg-spec-license-v1.json", + "yaml": "tcg-spec-license-v1.yml", + "html": "tcg-spec-license-v1.html", + "license": "tcg-spec-license-v1.LICENSE" + }, + { + "license_key": "tcl", + "category": "Permissive", + "spdx_license_key": "TCL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tcl.json", + "yaml": "tcl.yml", + "html": "tcl.html", + "license": "tcl.LICENSE" + }, + { + "license_key": "tcp-wrappers", + "category": "Permissive", + "spdx_license_key": "TCP-wrappers", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tcp-wrappers.json", + "yaml": "tcp-wrappers.yml", + "html": "tcp-wrappers.html", + "license": "tcp-wrappers.LICENSE" + }, + { + "license_key": "teamdev-services", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-teamdev-services", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "teamdev-services.json", + "yaml": "teamdev-services.yml", + "html": "teamdev-services.html", + "license": "teamdev-services.LICENSE" + }, + { + "license_key": "tekhvc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tekhvc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tekhvc.json", + "yaml": "tekhvc.yml", + "html": "tekhvc.html", + "license": "tekhvc.LICENSE" + }, + { + "license_key": "telerik-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-telerik-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "telerik-eula.json", + "yaml": "telerik-eula.yml", + "html": "telerik-eula.html", + "license": "telerik-eula.LICENSE" + }, + { + "license_key": "tenable-nessus", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-tenable-nessus", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tenable-nessus.json", + "yaml": "tenable-nessus.yml", + "html": "tenable-nessus.html", + "license": "tenable-nessus.LICENSE" + }, + { + "license_key": "term-readkey", + "category": "Permissive", + "spdx_license_key": "TermReadKey", + "other_spdx_license_keys": [ + "LicenseRef-scancode-term-readkey" + ], + "is_exception": false, + "is_deprecated": false, + "json": "term-readkey.json", + "yaml": "term-readkey.yml", + "html": "term-readkey.html", + "license": "term-readkey.LICENSE" + }, + { + "license_key": "tested-software", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tested-software", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tested-software.json", + "yaml": "tested-software.yml", + "html": "tested-software.html", + "license": "tested-software.LICENSE" + }, + { + "license_key": "tex-exception", + "category": "Copyleft Limited", + "spdx_license_key": "Texinfo-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-tex-exception" + ], + "is_exception": true, + "is_deprecated": false, + "json": "tex-exception.json", + "yaml": "tex-exception.yml", + "html": "tex-exception.html", + "license": "tex-exception.LICENSE" + }, + { + "license_key": "tex-live", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tex-live", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tex-live.json", + "yaml": "tex-live.yml", + "html": "tex-live.html", + "license": "tex-live.LICENSE" + }, + { + "license_key": "tfl", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-tfl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tfl.json", + "yaml": "tfl.yml", + "html": "tfl.html", + "license": "tfl.LICENSE" + }, + { + "license_key": "tgc-spec-license-v2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tcg-spec-license-v2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tgc-spec-license-v2.json", + "yaml": "tgc-spec-license-v2.yml", + "html": "tgc-spec-license-v2.html", + "license": "tgc-spec-license-v2.LICENSE" + }, + { + "license_key": "tgppl-1.0", + "category": "Copyleft", + "spdx_license_key": "TGPPL-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-tgppl-1.0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "tgppl-1.0.json", + "yaml": "tgppl-1.0.yml", + "html": "tgppl-1.0.html", + "license": "tgppl-1.0.LICENSE" + }, + { + "license_key": "the-stack-tos-2023-07", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-the-stack-tos-2023-07", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "the-stack-tos-2023-07.json", + "yaml": "the-stack-tos-2023-07.yml", + "html": "the-stack-tos-2023-07.html", + "license": "the-stack-tos-2023-07.LICENSE" + }, + { + "license_key": "things-i-made-public-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-things-i-made-public-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "things-i-made-public-license.json", + "yaml": "things-i-made-public-license.yml", + "html": "things-i-made-public-license.html", + "license": "things-i-made-public-license.LICENSE" + }, + { + "license_key": "thomas-bandt", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-thomas-bandt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "thomas-bandt.json", + "yaml": "thomas-bandt.yml", + "html": "thomas-bandt.html", + "license": "thomas-bandt.LICENSE" + }, + { + "license_key": "thor-pl", + "category": "Copyleft Limited", + "spdx_license_key": "TPL-1.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-thor-pl" + ], + "is_exception": false, + "is_deprecated": false, + "json": "thor-pl.json", + "yaml": "thor-pl.yml", + "html": "thor-pl.html", + "license": "thor-pl.LICENSE" + }, + { + "license_key": "ti-broadband-apps", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ti-broadband-apps", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ti-broadband-apps.json", + "yaml": "ti-broadband-apps.yml", + "html": "ti-broadband-apps.html", + "license": "ti-broadband-apps.LICENSE" + }, + { + "license_key": "ti-linux-firmware", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-ti-linux-firmware", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ti-linux-firmware.json", + "yaml": "ti-linux-firmware.yml", + "html": "ti-linux-firmware.html", + "license": "ti-linux-firmware.LICENSE" + }, + { + "license_key": "ti-restricted", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ti-restricted", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ti-restricted.json", + "yaml": "ti-restricted.yml", + "html": "ti-restricted.html", + "license": "ti-restricted.LICENSE" + }, + { + "license_key": "tidy", + "category": "Permissive", + "spdx_license_key": "HTMLTIDY", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tidy.json", + "yaml": "tidy.yml", + "html": "tidy.html", + "license": "tidy.LICENSE" + }, + { + "license_key": "tiger-crypto", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tiger-crypto", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tiger-crypto.json", + "yaml": "tiger-crypto.yml", + "html": "tiger-crypto.html", + "license": "tiger-crypto.LICENSE" + }, + { + "license_key": "tigra-calendar-3.2", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tigra-calendar-3.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tigra-calendar-3.2.json", + "yaml": "tigra-calendar-3.2.yml", + "html": "tigra-calendar-3.2.html", + "license": "tigra-calendar-3.2.LICENSE" + }, + { + "license_key": "tigra-calendar-4.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tigra-calendar-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tigra-calendar-4.0.json", + "yaml": "tigra-calendar-4.0.yml", + "html": "tigra-calendar-4.0.html", + "license": "tigra-calendar-4.0.LICENSE" + }, + { + "license_key": "tim-janik-2003", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tim-janik-2003", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tim-janik-2003.json", + "yaml": "tim-janik-2003.yml", + "html": "tim-janik-2003.html", + "license": "tim-janik-2003.LICENSE" + }, + { + "license_key": "timestamp-picker", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-timestamp-picker", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "timestamp-picker.json", + "yaml": "timestamp-picker.yml", + "html": "timestamp-picker.html", + "license": "timestamp-picker.LICENSE" + }, + { + "license_key": "tizen-sdk", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-tizen-sdk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tizen-sdk.json", + "yaml": "tizen-sdk.yml", + "html": "tizen-sdk.html", + "license": "tizen-sdk.LICENSE" + }, + { + "license_key": "tmate", + "category": "Copyleft", + "spdx_license_key": "TMate", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tmate.json", + "yaml": "tmate.yml", + "html": "tmate.html", + "license": "tmate.LICENSE" + }, + { + "license_key": "toppers-educational", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-toppers-educational", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "toppers-educational.json", + "yaml": "toppers-educational.yml", + "html": "toppers-educational.html", + "license": "toppers-educational.LICENSE" + }, + { + "license_key": "toppers-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-toppers-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "toppers-license.json", + "yaml": "toppers-license.yml", + "html": "toppers-license.html", + "license": "toppers-license.LICENSE" + }, + { + "license_key": "torque-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "TORQUE-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "torque-1.1.json", + "yaml": "torque-1.1.yml", + "html": "torque-1.1.html", + "license": "torque-1.1.LICENSE" + }, + { + "license_key": "tosl", + "category": "Copyleft", + "spdx_license_key": "TOSL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tosl.json", + "yaml": "tosl.yml", + "html": "tosl.html", + "license": "tosl.LICENSE" + }, + { + "license_key": "tpdl", + "category": "Permissive", + "spdx_license_key": "TPDL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tpdl.json", + "yaml": "tpdl.yml", + "html": "tpdl.html", + "license": "tpdl.LICENSE" + }, + { + "license_key": "tpl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-tpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tpl-1.0.json", + "yaml": "tpl-1.0.yml", + "html": "tpl-1.0.html", + "license": "tpl-1.0.LICENSE" + }, + { + "license_key": "tpl-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-tpl-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tpl-2.0.json", + "yaml": "tpl-2.0.yml", + "html": "tpl-2.0.html", + "license": "tpl-2.0.LICENSE" + }, + { + "license_key": "trademark-notice", + "category": "Unstated License", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "trademark-notice.json", + "yaml": "trademark-notice.yml", + "html": "trademark-notice.html", + "license": "trademark-notice.LICENSE" + }, + { + "license_key": "trca-odl-1.0", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-trca-odl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "trca-odl-1.0.json", + "yaml": "trca-odl-1.0.yml", + "html": "trca-odl-1.0.html", + "license": "trca-odl-1.0.LICENSE" + }, + { + "license_key": "treeview-developer", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-treeview-developer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "treeview-developer.json", + "yaml": "treeview-developer.yml", + "html": "treeview-developer.html", + "license": "treeview-developer.LICENSE" + }, + { + "license_key": "treeview-distributor", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-treeview-distributor", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "treeview-distributor.json", + "yaml": "treeview-distributor.yml", + "html": "treeview-distributor.html", + "license": "treeview-distributor.LICENSE" + }, + { + "license_key": "triptracker", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-triptracker", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "triptracker.json", + "yaml": "triptracker.yml", + "html": "triptracker.html", + "license": "triptracker.LICENSE" + }, + { + "license_key": "trolltech-gpl-exception-1.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "trolltech-gpl-exception-1.0.json", + "yaml": "trolltech-gpl-exception-1.0.yml", + "html": "trolltech-gpl-exception-1.0.html", + "license": "trolltech-gpl-exception-1.0.LICENSE" + }, + { + "license_key": "trolltech-gpl-exception-1.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "trolltech-gpl-exception-1.1.json", + "yaml": "trolltech-gpl-exception-1.1.yml", + "html": "trolltech-gpl-exception-1.1.html", + "license": "trolltech-gpl-exception-1.1.LICENSE" + }, + { + "license_key": "trolltech-gpl-exception-1.2", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-trolltech-gpl-exception-1.2", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "trolltech-gpl-exception-1.2.json", + "yaml": "trolltech-gpl-exception-1.2.yml", + "html": "trolltech-gpl-exception-1.2.html", + "license": "trolltech-gpl-exception-1.2.LICENSE" + }, + { + "license_key": "truecrypt-3.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-truecrypt-3.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "truecrypt-3.1.json", + "yaml": "truecrypt-3.1.yml", + "html": "truecrypt-3.1.html", + "license": "truecrypt-3.1.LICENSE" + }, + { + "license_key": "trustonic-proprietary-2013", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-trustonic-proprietary-2013", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "trustonic-proprietary-2013.json", + "yaml": "trustonic-proprietary-2013.yml", + "html": "trustonic-proprietary-2013.html", + "license": "trustonic-proprietary-2013.LICENSE" + }, + { + "license_key": "tsl-2018", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-tsl-2018", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tsl-2018.json", + "yaml": "tsl-2018.yml", + "html": "tsl-2018.html", + "license": "tsl-2018.LICENSE" + }, + { + "license_key": "tsl-2020", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-tsl-2020", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tsl-2020.json", + "yaml": "tsl-2020.yml", + "html": "tsl-2020.html", + "license": "tsl-2020.LICENSE" + }, + { + "license_key": "tso-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tso-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tso-license.json", + "yaml": "tso-license.yml", + "html": "tso-license.html", + "license": "tso-license.LICENSE" + }, + { + "license_key": "ttcl", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ttcl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ttcl.json", + "yaml": "ttcl.yml", + "html": "ttcl.html", + "license": "ttcl.LICENSE" + }, + { + "license_key": "ttf2pt1", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "ttf2pt1.json", + "yaml": "ttf2pt1.yml", + "html": "ttf2pt1.html", + "license": "ttf2pt1.LICENSE" + }, + { + "license_key": "ttwl", + "category": "Permissive", + "spdx_license_key": "TTWL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ttwl.json", + "yaml": "ttwl.yml", + "html": "ttwl.html", + "license": "ttwl.LICENSE" + }, + { + "license_key": "ttyp0", + "category": "Permissive", + "spdx_license_key": "TTYP0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ttyp0" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ttyp0.json", + "yaml": "ttyp0.yml", + "html": "ttyp0.html", + "license": "ttyp0.LICENSE" + }, + { + "license_key": "tu-berlin", + "category": "Permissive", + "spdx_license_key": "TU-Berlin-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tu-berlin.json", + "yaml": "tu-berlin.yml", + "html": "tu-berlin.html", + "license": "tu-berlin.LICENSE" + }, + { + "license_key": "tu-berlin-2.0", + "category": "Permissive", + "spdx_license_key": "TU-Berlin-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tu-berlin-2.0.json", + "yaml": "tu-berlin-2.0.yml", + "html": "tu-berlin-2.0.html", + "license": "tu-berlin-2.0.LICENSE" + }, + { + "license_key": "tumbolia", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-tumbolia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "tumbolia.json", + "yaml": "tumbolia.yml", + "html": "tumbolia.html", + "license": "tumbolia.LICENSE" + }, + { + "license_key": "twisted-snmp", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-twisted-snmp", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "twisted-snmp.json", + "yaml": "twisted-snmp.yml", + "html": "twisted-snmp.html", + "license": "twisted-snmp.LICENSE" + }, + { + "license_key": "txl-10.5", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-txl-10.5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "txl-10.5.json", + "yaml": "txl-10.5.yml", + "html": "txl-10.5.html", + "license": "txl-10.5.LICENSE" + }, + { + "license_key": "u-boot-exception-2.0", + "category": "Copyleft Limited", + "spdx_license_key": "u-boot-exception-2.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "u-boot-exception-2.0.json", + "yaml": "u-boot-exception-2.0.yml", + "html": "u-boot-exception-2.0.html", + "license": "u-boot-exception-2.0.LICENSE" + }, + { + "license_key": "ubc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ubc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ubc.json", + "yaml": "ubc.yml", + "html": "ubc.html", + "license": "ubc.LICENSE" + }, + { + "license_key": "ubdl", + "category": "Copyleft Limited", + "spdx_license_key": "UBDL-exception", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ubdl" + ], + "is_exception": true, + "is_deprecated": false, + "json": "ubdl.json", + "yaml": "ubdl.yml", + "html": "ubdl.html", + "license": "ubdl.LICENSE" + }, + { + "license_key": "ubuntu-font-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-ubuntu-font-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ubuntu-font-1.0.json", + "yaml": "ubuntu-font-1.0.yml", + "html": "ubuntu-font-1.0.html", + "license": "ubuntu-font-1.0.LICENSE" + }, + { + "license_key": "ucar", + "category": "Permissive", + "spdx_license_key": "UCAR", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ucar.json", + "yaml": "ucar.yml", + "html": "ucar.html", + "license": "ucar.LICENSE" + }, + { + "license_key": "ucl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "UCL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ucl-1.0.json", + "yaml": "ucl-1.0.yml", + "html": "ucl-1.0.html", + "license": "ucl-1.0.LICENSE" + }, + { + "license_key": "ugui", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ugui", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ugui.json", + "yaml": "ugui.yml", + "html": "ugui.html", + "license": "ugui.LICENSE" + }, + { + "license_key": "ulem", + "category": "Permissive", + "spdx_license_key": "ulem", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ulem.json", + "yaml": "ulem.yml", + "html": "ulem.html", + "license": "ulem.LICENSE" + }, + { + "license_key": "umich-merit", + "category": "Permissive", + "spdx_license_key": "UMich-Merit", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "umich-merit.json", + "yaml": "umich-merit.yml", + "html": "umich-merit.html", + "license": "umich-merit.LICENSE" + }, + { + "license_key": "unbuntu-font-1.0", + "category": "Free Restricted", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "unbuntu-font-1.0.json", + "yaml": "unbuntu-font-1.0.yml", + "html": "unbuntu-font-1.0.html", + "license": "unbuntu-font-1.0.LICENSE" + }, + { + "license_key": "unicode", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-unicode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unicode.json", + "yaml": "unicode.yml", + "html": "unicode.html", + "license": "unicode.LICENSE" + }, + { + "license_key": "unicode-data-software", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "unicode-data-software.json", + "yaml": "unicode-data-software.yml", + "html": "unicode-data-software.html", + "license": "unicode-data-software.LICENSE" + }, + { + "license_key": "unicode-dfs-2015", + "category": "Permissive", + "spdx_license_key": "Unicode-DFS-2015", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unicode-dfs-2015.json", + "yaml": "unicode-dfs-2015.yml", + "html": "unicode-dfs-2015.html", + "license": "unicode-dfs-2015.LICENSE" + }, + { + "license_key": "unicode-dfs-2016", + "category": "Permissive", + "spdx_license_key": "Unicode-DFS-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unicode-dfs-2016.json", + "yaml": "unicode-dfs-2016.yml", + "html": "unicode-dfs-2016.html", + "license": "unicode-dfs-2016.LICENSE" + }, + { + "license_key": "unicode-icu-58", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-unicode-icu-58", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unicode-icu-58.json", + "yaml": "unicode-icu-58.yml", + "html": "unicode-icu-58.html", + "license": "unicode-icu-58.LICENSE" + }, + { + "license_key": "unicode-mappings", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-unicode-mappings", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unicode-mappings.json", + "yaml": "unicode-mappings.yml", + "html": "unicode-mappings.html", + "license": "unicode-mappings.LICENSE" + }, + { + "license_key": "unicode-tou", + "category": "Proprietary Free", + "spdx_license_key": "Unicode-TOU", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unicode-tou.json", + "yaml": "unicode-tou.yml", + "html": "unicode-tou.html", + "license": "unicode-tou.LICENSE" + }, + { + "license_key": "unicode-v3", + "category": "Permissive", + "spdx_license_key": "Unicode-3.0", + "other_spdx_license_keys": [ + "LicenseRef-scancode-unicode-v3" + ], + "is_exception": false, + "is_deprecated": false, + "json": "unicode-v3.json", + "yaml": "unicode-v3.yml", + "html": "unicode-v3.html", + "license": "unicode-v3.LICENSE" + }, + { + "license_key": "universal-foss-exception-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "Universal-FOSS-exception-1.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "universal-foss-exception-1.0.json", + "yaml": "universal-foss-exception-1.0.yml", + "html": "universal-foss-exception-1.0.html", + "license": "universal-foss-exception-1.0.LICENSE" + }, + { + "license_key": "unixcrypt", + "category": "Permissive", + "spdx_license_key": "UnixCrypt", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unixcrypt.json", + "yaml": "unixcrypt.yml", + "html": "unixcrypt.html", + "license": "unixcrypt.LICENSE" + }, + { + "license_key": "unknown", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-unknown", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unknown.json", + "yaml": "unknown.yml", + "html": "unknown.html", + "license": "unknown.LICENSE" + }, + { + "license_key": "unknown-license-reference", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-unknown-license-reference", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unknown-license-reference.json", + "yaml": "unknown-license-reference.yml", + "html": "unknown-license-reference.html", + "license": "unknown-license-reference.LICENSE" + }, + { + "license_key": "unknown-spdx", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-unknown-spdx", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unknown-spdx.json", + "yaml": "unknown-spdx.yml", + "html": "unknown-spdx.html", + "license": "unknown-spdx.LICENSE" + }, + { + "license_key": "unlicense", + "category": "Public Domain", + "spdx_license_key": "Unlicense", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unlicense.json", + "yaml": "unlicense.yml", + "html": "unlicense.html", + "license": "unlicense.LICENSE" + }, + { + "license_key": "unlimited-binary-linking", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-unlimited-binary-linking", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": true, + "json": "unlimited-binary-linking.json", + "yaml": "unlimited-binary-linking.yml", + "html": "unlimited-binary-linking.html", + "license": "unlimited-binary-linking.LICENSE" + }, + { + "license_key": "unlimited-binary-use-exception", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-unlimited-binary-use-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "unlimited-binary-use-exception.json", + "yaml": "unlimited-binary-use-exception.yml", + "html": "unlimited-binary-use-exception.html", + "license": "unlimited-binary-use-exception.LICENSE" + }, + { + "license_key": "unlimited-linking-exception-gpl", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-unlimited-link-exception-gpl", + "other_spdx_license_keys": [ + "LicenseRef-scancode-unlimited-linking-exception-gpl" + ], + "is_exception": true, + "is_deprecated": false, + "json": "unlimited-linking-exception-gpl.json", + "yaml": "unlimited-linking-exception-gpl.yml", + "html": "unlimited-linking-exception-gpl.html", + "license": "unlimited-linking-exception-gpl.LICENSE" + }, + { + "license_key": "unlimited-linking-exception-lgpl", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-unlimited-link-exception-lgpl", + "other_spdx_license_keys": [ + "LicenseRef-scancode-unlimited-linking-exception-lgpl" + ], + "is_exception": true, + "is_deprecated": false, + "json": "unlimited-linking-exception-lgpl.json", + "yaml": "unlimited-linking-exception-lgpl.yml", + "html": "unlimited-linking-exception-lgpl.html", + "license": "unlimited-linking-exception-lgpl.LICENSE" + }, + { + "license_key": "unpbook", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-unpbook", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unpbook.json", + "yaml": "unpbook.yml", + "html": "unpbook.html", + "license": "unpbook.LICENSE" + }, + { + "license_key": "unpublished-source", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-unpublished-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unpublished-source.json", + "yaml": "unpublished-source.yml", + "html": "unpublished-source.html", + "license": "unpublished-source.LICENSE" + }, + { + "license_key": "unrar", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-unrar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unrar.json", + "yaml": "unrar.yml", + "html": "unrar.html", + "license": "unrar.LICENSE" + }, + { + "license_key": "unrar-v3", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-unrar-v3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unrar-v3.json", + "yaml": "unrar-v3.yml", + "html": "unrar-v3.html", + "license": "unrar-v3.LICENSE" + }, + { + "license_key": "unsplash", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-unsplash", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "unsplash.json", + "yaml": "unsplash.yml", + "html": "unsplash.html", + "license": "unsplash.LICENSE" + }, + { + "license_key": "uofu-rfpl", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-uofu-rfpl", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "uofu-rfpl.json", + "yaml": "uofu-rfpl.yml", + "html": "uofu-rfpl.html", + "license": "uofu-rfpl.LICENSE" + }, + { + "license_key": "uoi-ncsa", + "category": "Permissive", + "spdx_license_key": "NCSA", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "uoi-ncsa.json", + "yaml": "uoi-ncsa.yml", + "html": "uoi-ncsa.html", + "license": "uoi-ncsa.LICENSE" + }, + { + "license_key": "upl-1.0", + "category": "Permissive", + "spdx_license_key": "UPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "upl-1.0.json", + "yaml": "upl-1.0.yml", + "html": "upl-1.0.html", + "license": "upl-1.0.LICENSE" + }, + { + "license_key": "upx-exception-2.0-plus", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-upx-exception-2.0-plus", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "upx-exception-2.0-plus.json", + "yaml": "upx-exception-2.0-plus.yml", + "html": "upx-exception-2.0-plus.html", + "license": "upx-exception-2.0-plus.LICENSE" + }, + { + "license_key": "urt-rle", + "category": "Copyleft Limited", + "spdx_license_key": "URT-RLE", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "urt-rle.json", + "yaml": "urt-rle.yml", + "html": "urt-rle.html", + "license": "urt-rle.LICENSE" + }, + { + "license_key": "us-govt-geotranform", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-us-govt-geotranform", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "us-govt-geotranform.json", + "yaml": "us-govt-geotranform.yml", + "html": "us-govt-geotranform.html", + "license": "us-govt-geotranform.LICENSE" + }, + { + "license_key": "us-govt-public-domain", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-us-govt-public-domain", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "us-govt-public-domain.json", + "yaml": "us-govt-public-domain.yml", + "html": "us-govt-public-domain.html", + "license": "us-govt-public-domain.LICENSE" + }, + { + "license_key": "us-govt-unlimited-rights", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-us-govt-unlimited-rights", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "us-govt-unlimited-rights.json", + "yaml": "us-govt-unlimited-rights.yml", + "html": "us-govt-unlimited-rights.html", + "license": "us-govt-unlimited-rights.LICENSE" + }, + { + "license_key": "usrobotics-permissive", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-usrobotics-permissive", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "usrobotics-permissive.json", + "yaml": "usrobotics-permissive.yml", + "html": "usrobotics-permissive.html", + "license": "usrobotics-permissive.LICENSE" + }, + { + "license_key": "utopia", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-utopia", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "utopia.json", + "yaml": "utopia.yml", + "html": "utopia.html", + "license": "utopia.LICENSE" + }, + { + "license_key": "vaadin-cvdl-4.0", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-vaadin-cvdl-4.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vaadin-cvdl-4.0.json", + "yaml": "vaadin-cvdl-4.0.yml", + "html": "vaadin-cvdl-4.0.html", + "license": "vaadin-cvdl-4.0.LICENSE" + }, + { + "license_key": "vbaccelerator", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-vbaccelerator", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vbaccelerator.json", + "yaml": "vbaccelerator.yml", + "html": "vbaccelerator.html", + "license": "vbaccelerator.LICENSE" + }, + { + "license_key": "vcalendar", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-vcalendar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vcalendar.json", + "yaml": "vcalendar.yml", + "html": "vcalendar.html", + "license": "vcalendar.LICENSE" + }, + { + "license_key": "vcvrack-exception-to-gpl-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-vcvrack-exception-to-gpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "vcvrack-exception-to-gpl-3.0.json", + "yaml": "vcvrack-exception-to-gpl-3.0.yml", + "html": "vcvrack-exception-to-gpl-3.0.html", + "license": "vcvrack-exception-to-gpl-3.0.LICENSE" + }, + { + "license_key": "verbatim-manual", + "category": "Copyleft", + "spdx_license_key": "Linux-man-pages-copyleft", + "other_spdx_license_keys": [ + "Verbatim-man-pages", + "LicenseRef-scancode-verbatim-manual" + ], + "is_exception": false, + "is_deprecated": false, + "json": "verbatim-manual.json", + "yaml": "verbatim-manual.yml", + "html": "verbatim-manual.html", + "license": "verbatim-manual.LICENSE" + }, + { + "license_key": "verisign", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-verisign", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "verisign.json", + "yaml": "verisign.yml", + "html": "verisign.html", + "license": "verisign.LICENSE" + }, + { + "license_key": "vhfpl-1.1", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-vhfpl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vhfpl-1.1.json", + "yaml": "vhfpl-1.1.yml", + "html": "vhfpl-1.1.html", + "license": "vhfpl-1.1.LICENSE" + }, + { + "license_key": "vic-metcalfe-pd", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-vic-metcalfe-pd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vic-metcalfe-pd.json", + "yaml": "vic-metcalfe-pd.yml", + "html": "vic-metcalfe-pd.html", + "license": "vic-metcalfe-pd.LICENSE" + }, + { + "license_key": "vicomsoft-software", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-vicomsoft-software", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vicomsoft-software.json", + "yaml": "vicomsoft-software.yml", + "html": "vicomsoft-software.html", + "license": "vicomsoft-software.LICENSE" + }, + { + "license_key": "viewflow-agpl-3.0-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-viewflow-agpl-3.0-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "viewflow-agpl-3.0-exception.json", + "yaml": "viewflow-agpl-3.0-exception.yml", + "html": "viewflow-agpl-3.0-exception.html", + "license": "viewflow-agpl-3.0-exception.LICENSE" + }, + { + "license_key": "vim", + "category": "Copyleft", + "spdx_license_key": "Vim", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vim.json", + "yaml": "vim.yml", + "html": "vim.html", + "license": "vim.LICENSE" + }, + { + "license_key": "vince", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-vince", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vince.json", + "yaml": "vince.yml", + "html": "vince.html", + "license": "vince.LICENSE" + }, + { + "license_key": "visual-idiot", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-visual-idiot", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "visual-idiot.json", + "yaml": "visual-idiot.yml", + "html": "visual-idiot.html", + "license": "visual-idiot.LICENSE" + }, + { + "license_key": "visual-numerics", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-visual-numerics", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "visual-numerics.json", + "yaml": "visual-numerics.yml", + "html": "visual-numerics.html", + "license": "visual-numerics.LICENSE" + }, + { + "license_key": "vita-nuova-liberal", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-vita-nuova-liberal", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vita-nuova-liberal.json", + "yaml": "vita-nuova-liberal.yml", + "html": "vita-nuova-liberal.html", + "license": "vita-nuova-liberal.LICENSE" + }, + { + "license_key": "vitesse-prop", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-vitesse-prop", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vitesse-prop.json", + "yaml": "vitesse-prop.yml", + "html": "vitesse-prop.html", + "license": "vitesse-prop.LICENSE" + }, + { + "license_key": "vixie-cron", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-vixie-cron", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vixie-cron.json", + "yaml": "vixie-cron.yml", + "html": "vixie-cron.html", + "license": "vixie-cron.LICENSE" + }, + { + "license_key": "vnc-viewer-ios", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-vnc-viewer-ios", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vnc-viewer-ios.json", + "yaml": "vnc-viewer-ios.yml", + "html": "vnc-viewer-ios.html", + "license": "vnc-viewer-ios.LICENSE" + }, + { + "license_key": "volatility-vsl-v1.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-volatility-vsl-v1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "volatility-vsl-v1.0.json", + "yaml": "volatility-vsl-v1.0.yml", + "html": "volatility-vsl-v1.0.html", + "license": "volatility-vsl-v1.0.LICENSE" + }, + { + "license_key": "vostrom", + "category": "Copyleft", + "spdx_license_key": "VOSTROM", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vostrom.json", + "yaml": "vostrom.yml", + "html": "vostrom.html", + "license": "vostrom.LICENSE" + }, + { + "license_key": "vpl-1.1", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-vpl-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vpl-1.1.json", + "yaml": "vpl-1.1.yml", + "html": "vpl-1.1.html", + "license": "vpl-1.1.LICENSE" + }, + { + "license_key": "vpl-1.2", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-vpl-1.2", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vpl-1.2.json", + "yaml": "vpl-1.2.yml", + "html": "vpl-1.2.html", + "license": "vpl-1.2.LICENSE" + }, + { + "license_key": "vs10x-code-map", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-vs10x-code-map", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vs10x-code-map.json", + "yaml": "vs10x-code-map.yml", + "html": "vs10x-code-map.html", + "license": "vs10x-code-map.LICENSE" + }, + { + "license_key": "vsftpd-openssl-exception", + "category": "Copyleft Limited", + "spdx_license_key": "vsftpd-openssl-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "vsftpd-openssl-exception.json", + "yaml": "vsftpd-openssl-exception.yml", + "html": "vsftpd-openssl-exception.html", + "license": "vsftpd-openssl-exception.LICENSE" + }, + { + "license_key": "vsl-1.0", + "category": "Permissive", + "spdx_license_key": "VSL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vsl-1.0.json", + "yaml": "vsl-1.0.yml", + "html": "vsl-1.0.html", + "license": "vsl-1.0.LICENSE" + }, + { + "license_key": "vuforia-2013-07-29", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-vuforia-2013-07-29", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vuforia-2013-07-29.json", + "yaml": "vuforia-2013-07-29.yml", + "html": "vuforia-2013-07-29.html", + "license": "vuforia-2013-07-29.LICENSE" + }, + { + "license_key": "vvvvvv-scl-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-vvvvvv-scl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "vvvvvv-scl-1.0.json", + "yaml": "vvvvvv-scl-1.0.yml", + "html": "vvvvvv-scl-1.0.html", + "license": "vvvvvv-scl-1.0.LICENSE" + }, + { + "license_key": "w3c", + "category": "Permissive", + "spdx_license_key": "W3C", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c.json", + "yaml": "w3c.yml", + "html": "w3c.html", + "license": "w3c.LICENSE" + }, + { + "license_key": "w3c-03-bsd-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-w3c-03-bsd-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-03-bsd-license.json", + "yaml": "w3c-03-bsd-license.yml", + "html": "w3c-03-bsd-license.html", + "license": "w3c-03-bsd-license.LICENSE" + }, + { + "license_key": "w3c-community-cla", + "category": "CLA", + "spdx_license_key": "LicenseRef-scancode-w3c-community-cla", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-community-cla.json", + "yaml": "w3c-community-cla.yml", + "html": "w3c-community-cla.html", + "license": "w3c-community-cla.LICENSE" + }, + { + "license_key": "w3c-docs-19990405", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-w3c-docs-19990405", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-docs-19990405.json", + "yaml": "w3c-docs-19990405.yml", + "html": "w3c-docs-19990405.html", + "license": "w3c-docs-19990405.LICENSE" + }, + { + "license_key": "w3c-docs-20021231", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-w3c-docs-20021231", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-docs-20021231.json", + "yaml": "w3c-docs-20021231.yml", + "html": "w3c-docs-20021231.html", + "license": "w3c-docs-20021231.LICENSE" + }, + { + "license_key": "w3c-documentation", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-w3c-documentation", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-documentation.json", + "yaml": "w3c-documentation.yml", + "html": "w3c-documentation.html", + "license": "w3c-documentation.LICENSE" + }, + { + "license_key": "w3c-software-19980720", + "category": "Permissive", + "spdx_license_key": "W3C-19980720", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-software-19980720.json", + "yaml": "w3c-software-19980720.yml", + "html": "w3c-software-19980720.html", + "license": "w3c-software-19980720.LICENSE" + }, + { + "license_key": "w3c-software-20021231", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "w3c-software-20021231.json", + "yaml": "w3c-software-20021231.yml", + "html": "w3c-software-20021231.html", + "license": "w3c-software-20021231.LICENSE" + }, + { + "license_key": "w3c-software-2023", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-w3c-software-2023", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-software-2023.json", + "yaml": "w3c-software-2023.yml", + "html": "w3c-software-2023.html", + "license": "w3c-software-2023.LICENSE" + }, + { + "license_key": "w3c-software-doc-20150513", + "category": "Permissive", + "spdx_license_key": "W3C-20150513", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-software-doc-20150513.json", + "yaml": "w3c-software-doc-20150513.yml", + "html": "w3c-software-doc-20150513.html", + "license": "w3c-software-doc-20150513.LICENSE" + }, + { + "license_key": "w3c-test-suite", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-w3c-test-suite", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3c-test-suite.json", + "yaml": "w3c-test-suite.yml", + "html": "w3c-test-suite.html", + "license": "w3c-test-suite.LICENSE" + }, + { + "license_key": "w3m", + "category": "Permissive", + "spdx_license_key": "w3m", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "w3m.json", + "yaml": "w3m.yml", + "html": "w3m.html", + "license": "w3m.LICENSE" + }, + { + "license_key": "warranty-disclaimer", + "category": "Unstated License", + "spdx_license_key": "LicenseRef-scancode-warranty-disclaimer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "warranty-disclaimer.json", + "yaml": "warranty-disclaimer.yml", + "html": "warranty-disclaimer.html", + "license": "warranty-disclaimer.LICENSE" + }, + { + "license_key": "waterfall-feed-parser", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-waterfall-feed-parser", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "waterfall-feed-parser.json", + "yaml": "waterfall-feed-parser.yml", + "html": "waterfall-feed-parser.html", + "license": "waterfall-feed-parser.LICENSE" + }, + { + "license_key": "westhawk", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-westhawk", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "westhawk.json", + "yaml": "westhawk.yml", + "html": "westhawk.html", + "license": "westhawk.LICENSE" + }, + { + "license_key": "whistle", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-whistle", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "whistle.json", + "yaml": "whistle.yml", + "html": "whistle.html", + "license": "whistle.LICENSE" + }, + { + "license_key": "whitecat", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-whitecat", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "whitecat.json", + "yaml": "whitecat.yml", + "html": "whitecat.html", + "license": "whitecat.LICENSE" + }, + { + "license_key": "wide-license", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wide-license", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wide-license.json", + "yaml": "wide-license.yml", + "html": "wide-license.html", + "license": "wide-license.LICENSE" + }, + { + "license_key": "widget-workshop", + "category": "Permissive", + "spdx_license_key": "Widget-Workshop", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "widget-workshop.json", + "yaml": "widget-workshop.yml", + "html": "widget-workshop.html", + "license": "widget-workshop.LICENSE" + }, + { + "license_key": "wifi-alliance", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-wifi-alliance", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wifi-alliance.json", + "yaml": "wifi-alliance.yml", + "html": "wifi-alliance.html", + "license": "wifi-alliance.LICENSE" + }, + { + "license_key": "william-alexander", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-william-alexander", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "william-alexander.json", + "yaml": "william-alexander.yml", + "html": "william-alexander.html", + "license": "william-alexander.LICENSE" + }, + { + "license_key": "wince-50-shared-source", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-wince-50-shared-source", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wince-50-shared-source.json", + "yaml": "wince-50-shared-source.yml", + "html": "wince-50-shared-source.html", + "license": "wince-50-shared-source.LICENSE" + }, + { + "license_key": "windriver-commercial", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-windriver-commercial", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "windriver-commercial.json", + "yaml": "windriver-commercial.yml", + "html": "windriver-commercial.html", + "license": "windriver-commercial.LICENSE" + }, + { + "license_key": "wingo", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wingo", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wingo.json", + "yaml": "wingo.yml", + "html": "wingo.html", + "license": "wingo.LICENSE" + }, + { + "license_key": "wink", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-wink", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wink.json", + "yaml": "wink.yml", + "html": "wink.html", + "license": "wink.LICENSE" + }, + { + "license_key": "winzip-eula", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-winzip-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "winzip-eula.json", + "yaml": "winzip-eula.yml", + "html": "winzip-eula.html", + "license": "winzip-eula.LICENSE" + }, + { + "license_key": "winzip-self-extractor", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-winzip-self-extractor", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "winzip-self-extractor.json", + "yaml": "winzip-self-extractor.yml", + "html": "winzip-self-extractor.html", + "license": "winzip-self-extractor.LICENSE" + }, + { + "license_key": "wol", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wol", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wol.json", + "yaml": "wol.yml", + "html": "wol.html", + "license": "wol.LICENSE" + }, + { + "license_key": "woodruff-2002", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-woodruff-2002", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "woodruff-2002.json", + "yaml": "woodruff-2002.yml", + "html": "woodruff-2002.html", + "license": "woodruff-2002.LICENSE" + }, + { + "license_key": "wordnet", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wordnet", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wordnet.json", + "yaml": "wordnet.yml", + "html": "wordnet.html", + "license": "wordnet.LICENSE" + }, + { + "license_key": "wrox", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wrox", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wrox.json", + "yaml": "wrox.yml", + "html": "wrox.html", + "license": "wrox.LICENSE" + }, + { + "license_key": "wrox-download", + "category": "Source-available", + "spdx_license_key": "LicenseRef-scancode-wrox-download", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wrox-download.json", + "yaml": "wrox-download.yml", + "html": "wrox-download.html", + "license": "wrox-download.LICENSE" + }, + { + "license_key": "ws-addressing-spec", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ws-addressing-spec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ws-addressing-spec.json", + "yaml": "ws-addressing-spec.yml", + "html": "ws-addressing-spec.html", + "license": "ws-addressing-spec.LICENSE" + }, + { + "license_key": "ws-policy-specification", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ws-policy-specification", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ws-policy-specification.json", + "yaml": "ws-policy-specification.yml", + "html": "ws-policy-specification.html", + "license": "ws-policy-specification.LICENSE" + }, + { + "license_key": "ws-trust-specification", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-ws-trust-specification", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ws-trust-specification.json", + "yaml": "ws-trust-specification.yml", + "html": "ws-trust-specification.html", + "license": "ws-trust-specification.LICENSE" + }, + { + "license_key": "wsuipa", + "category": "Permissive", + "spdx_license_key": "Wsuipa", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wsuipa.json", + "yaml": "wsuipa.yml", + "html": "wsuipa.html", + "license": "wsuipa.LICENSE" + }, + { + "license_key": "wtfnmfpl-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wtfnmfpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wtfnmfpl-1.0.json", + "yaml": "wtfnmfpl-1.0.yml", + "html": "wtfnmfpl-1.0.html", + "license": "wtfnmfpl-1.0.LICENSE" + }, + { + "license_key": "wtfpl-1.0", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-wtfpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wtfpl-1.0.json", + "yaml": "wtfpl-1.0.yml", + "html": "wtfpl-1.0.html", + "license": "wtfpl-1.0.LICENSE" + }, + { + "license_key": "wtfpl-2.0", + "category": "Public Domain", + "spdx_license_key": "WTFPL", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wtfpl-2.0.json", + "yaml": "wtfpl-2.0.yml", + "html": "wtfpl-2.0.html", + "license": "wtfpl-2.0.LICENSE" + }, + { + "license_key": "wthpl-1.0", + "category": "Public Domain", + "spdx_license_key": "LicenseRef-scancode-wthpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wthpl-1.0.json", + "yaml": "wthpl-1.0.yml", + "html": "wthpl-1.0.html", + "license": "wthpl-1.0.LICENSE" + }, + { + "license_key": "wxwidgets", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wxwidgets", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wxwidgets.json", + "yaml": "wxwidgets.yml", + "html": "wxwidgets.html", + "license": "wxwidgets.LICENSE" + }, + { + "license_key": "wxwindows", + "category": "Copyleft Limited", + "spdx_license_key": "wxWindows", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "wxwindows.json", + "yaml": "wxwindows.yml", + "html": "wxwindows.html", + "license": "wxwindows.LICENSE" + }, + { + "license_key": "wxwindows-exception-3.1", + "category": "Copyleft Limited", + "spdx_license_key": "WxWindows-exception-3.1", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "wxwindows-exception-3.1.json", + "yaml": "wxwindows-exception-3.1.yml", + "html": "wxwindows-exception-3.1.html", + "license": "wxwindows-exception-3.1.LICENSE" + }, + { + "license_key": "wxwindows-r-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-wxwindows-r-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wxwindows-r-3.0.json", + "yaml": "wxwindows-r-3.0.yml", + "html": "wxwindows-r-3.0.html", + "license": "wxwindows-r-3.0.LICENSE" + }, + { + "license_key": "wxwindows-u-3.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-wxwindows-u-3.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "wxwindows-u-3.0.json", + "yaml": "wxwindows-u-3.0.yml", + "html": "wxwindows-u-3.0.html", + "license": "wxwindows-u-3.0.LICENSE" + }, + { + "license_key": "x11", + "category": "Permissive", + "spdx_license_key": "ICU", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11.json", + "yaml": "x11.yml", + "html": "x11.html", + "license": "x11.LICENSE" + }, + { + "license_key": "x11-acer", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-acer", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-acer.json", + "yaml": "x11-acer.yml", + "html": "x11-acer.html", + "license": "x11-acer.LICENSE" + }, + { + "license_key": "x11-adobe", + "category": "Permissive", + "spdx_license_key": "Adobe-Display-PostScript", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-adobe" + ], + "is_exception": false, + "is_deprecated": false, + "json": "x11-adobe.json", + "yaml": "x11-adobe.yml", + "html": "x11-adobe.html", + "license": "x11-adobe.LICENSE" + }, + { + "license_key": "x11-adobe-dec", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-adobe-dec", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-adobe-dec.json", + "yaml": "x11-adobe-dec.yml", + "html": "x11-adobe-dec.html", + "license": "x11-adobe-dec.LICENSE" + }, + { + "license_key": "x11-bitstream", + "category": "Permissive", + "spdx_license_key": "Bitstream-Charter", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-bitstream" + ], + "is_exception": false, + "is_deprecated": false, + "json": "x11-bitstream.json", + "yaml": "x11-bitstream.yml", + "html": "x11-bitstream.html", + "license": "x11-bitstream.LICENSE" + }, + { + "license_key": "x11-dec1", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-dec1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-dec1.json", + "yaml": "x11-dec1.yml", + "html": "x11-dec1.html", + "license": "x11-dec1.LICENSE" + }, + { + "license_key": "x11-dec2", + "category": "Permissive", + "spdx_license_key": "HPND-DEC", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-dec2" + ], + "is_exception": false, + "is_deprecated": false, + "json": "x11-dec2.json", + "yaml": "x11-dec2.yml", + "html": "x11-dec2.html", + "license": "x11-dec2.LICENSE" + }, + { + "license_key": "x11-doc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-doc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-doc.json", + "yaml": "x11-doc.yml", + "html": "x11-doc.html", + "license": "x11-doc.LICENSE" + }, + { + "license_key": "x11-dsc", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-dsc", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-dsc.json", + "yaml": "x11-dsc.yml", + "html": "x11-dsc.html", + "license": "x11-dsc.LICENSE" + }, + { + "license_key": "x11-fsf", + "category": "Permissive", + "spdx_license_key": "X11-distribute-modifications-variant", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-fsf" + ], + "is_exception": false, + "is_deprecated": false, + "json": "x11-fsf.json", + "yaml": "x11-fsf.yml", + "html": "x11-fsf.html", + "license": "x11-fsf.LICENSE" + }, + { + "license_key": "x11-hanson", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-hanson", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-hanson.json", + "yaml": "x11-hanson.yml", + "html": "x11-hanson.html", + "license": "x11-hanson.LICENSE" + }, + { + "license_key": "x11-ibm", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-x11-ibm", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-ibm.json", + "yaml": "x11-ibm.yml", + "html": "x11-ibm.html", + "license": "x11-ibm.LICENSE" + }, + { + "license_key": "x11-keith-packard", + "category": "Permissive", + "spdx_license_key": "HPND-sell-variant", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-keith-packard.json", + "yaml": "x11-keith-packard.yml", + "html": "x11-keith-packard.html", + "license": "x11-keith-packard.LICENSE" + }, + { + "license_key": "x11-lucent", + "category": "Permissive", + "spdx_license_key": "dtoa", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-lucent" + ], + "is_exception": false, + "is_deprecated": false, + "json": "x11-lucent.json", + "yaml": "x11-lucent.yml", + "html": "x11-lucent.html", + "license": "x11-lucent.LICENSE" + }, + { + "license_key": "x11-lucent-variant", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-lucent-variant", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-lucent-variant.json", + "yaml": "x11-lucent-variant.yml", + "html": "x11-lucent-variant.html", + "license": "x11-lucent-variant.LICENSE" + }, + { + "license_key": "x11-oar", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-oar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-oar.json", + "yaml": "x11-oar.yml", + "html": "x11-oar.html", + "license": "x11-oar.LICENSE" + }, + { + "license_key": "x11-opengl", + "category": "Permissive", + "spdx_license_key": "SGI-OpenGL", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-opengl" + ], + "is_exception": false, + "is_deprecated": false, + "json": "x11-opengl.json", + "yaml": "x11-opengl.yml", + "html": "x11-opengl.html", + "license": "x11-opengl.LICENSE" + }, + { + "license_key": "x11-opengroup", + "category": "Permissive", + "spdx_license_key": "MIT-open-group", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-opengroup" + ], + "is_exception": false, + "is_deprecated": false, + "json": "x11-opengroup.json", + "yaml": "x11-opengroup.yml", + "html": "x11-opengroup.html", + "license": "x11-opengroup.LICENSE" + }, + { + "license_key": "x11-quarterdeck", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-quarterdeck", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-quarterdeck.json", + "yaml": "x11-quarterdeck.yml", + "html": "x11-quarterdeck.html", + "license": "x11-quarterdeck.LICENSE" + }, + { + "license_key": "x11-r75", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "x11-r75.json", + "yaml": "x11-r75.yml", + "html": "x11-r75.html", + "license": "x11-r75.LICENSE" + }, + { + "license_key": "x11-realmode", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-realmode", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-realmode.json", + "yaml": "x11-realmode.yml", + "html": "x11-realmode.html", + "license": "x11-realmode.LICENSE" + }, + { + "license_key": "x11-sg", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-sg", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-sg.json", + "yaml": "x11-sg.yml", + "html": "x11-sg.html", + "license": "x11-sg.LICENSE" + }, + { + "license_key": "x11-stanford", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-stanford", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-stanford.json", + "yaml": "x11-stanford.yml", + "html": "x11-stanford.html", + "license": "x11-stanford.LICENSE" + }, + { + "license_key": "x11-tektronix", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-tektronix", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-tektronix.json", + "yaml": "x11-tektronix.yml", + "html": "x11-tektronix.html", + "license": "x11-tektronix.LICENSE" + }, + { + "license_key": "x11-tiff", + "category": "Permissive", + "spdx_license_key": "libtiff", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-tiff.json", + "yaml": "x11-tiff.yml", + "html": "x11-tiff.html", + "license": "x11-tiff.LICENSE" + }, + { + "license_key": "x11-x11r5", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-x11r5", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-x11r5.json", + "yaml": "x11-x11r5.yml", + "html": "x11-x11r5.html", + "license": "x11-x11r5.LICENSE" + }, + { + "license_key": "x11-xconsortium", + "category": "Permissive", + "spdx_license_key": "X11", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "x11-xconsortium.json", + "yaml": "x11-xconsortium.yml", + "html": "x11-xconsortium.html", + "license": "x11-xconsortium.LICENSE" + }, + { + "license_key": "x11-xconsortium-veillard", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-x11-xconsortium-veillard", + "other_spdx_license_keys": [ + "LicenseRef-scancode-x11-xconsortium_veillard" + ], + "is_exception": false, + "is_deprecated": false, + "json": "x11-xconsortium-veillard.json", + "yaml": "x11-xconsortium-veillard.yml", + "html": "x11-xconsortium-veillard.html", + "license": "x11-xconsortium-veillard.LICENSE" + }, + { + "license_key": "x11-xconsortium_veillard", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "x11-xconsortium_veillard.json", + "yaml": "x11-xconsortium_veillard.yml", + "html": "x11-xconsortium_veillard.html", + "license": "x11-xconsortium_veillard.LICENSE" + }, + { + "license_key": "x11r5-authors", + "category": "Permissive", + "spdx_license_key": null, + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": true, + "json": "x11r5-authors.json", + "yaml": "x11r5-authors.yml", + "html": "x11r5-authors.html", + "license": "x11r5-authors.LICENSE" + }, + { + "license_key": "xceed-community-2021", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-xceed-community-2021", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xceed-community-2021.json", + "yaml": "xceed-community-2021.yml", + "html": "xceed-community-2021.html", + "license": "xceed-community-2021.LICENSE" + }, + { + "license_key": "xdebug-1.03", + "category": "Permissive", + "spdx_license_key": "Xdebug-1.03", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xdebug-1.03.json", + "yaml": "xdebug-1.03.yml", + "html": "xdebug-1.03.html", + "license": "xdebug-1.03.LICENSE" + }, + { + "license_key": "xenomai-gpl-exception", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-xenomai-gpl-exception", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "xenomai-gpl-exception.json", + "yaml": "xenomai-gpl-exception.yml", + "html": "xenomai-gpl-exception.html", + "license": "xenomai-gpl-exception.LICENSE" + }, + { + "license_key": "xfree86-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-xfree86-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xfree86-1.0.json", + "yaml": "xfree86-1.0.yml", + "html": "xfree86-1.0.html", + "license": "xfree86-1.0.LICENSE" + }, + { + "license_key": "xfree86-1.1", + "category": "Permissive", + "spdx_license_key": "XFree86-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xfree86-1.1.json", + "yaml": "xfree86-1.1.yml", + "html": "xfree86-1.1.html", + "license": "xfree86-1.1.LICENSE" + }, + { + "license_key": "xilinx-2016", + "category": "Free Restricted", + "spdx_license_key": "LicenseRef-scancode-xilinx-2016", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xilinx-2016.json", + "yaml": "xilinx-2016.yml", + "html": "xilinx-2016.html", + "license": "xilinx-2016.LICENSE" + }, + { + "license_key": "xinetd", + "category": "Permissive", + "spdx_license_key": "xinetd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xinetd.json", + "yaml": "xinetd.yml", + "html": "xinetd.html", + "license": "xinetd.LICENSE" + }, + { + "license_key": "xiph-patent", + "category": "Patent License", + "spdx_license_key": "LicenseRef-scancode-xiph-patent", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xiph-patent.json", + "yaml": "xiph-patent.yml", + "html": "xiph-patent.html", + "license": "xiph-patent.LICENSE" + }, + { + "license_key": "xkeyboard-config-zinoviev", + "category": "Permissive", + "spdx_license_key": "xkeyboard-config-Zinoviev", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xkeyboard-config-zinoviev.json", + "yaml": "xkeyboard-config-zinoviev.yml", + "html": "xkeyboard-config-zinoviev.html", + "license": "xkeyboard-config-zinoviev.LICENSE" + }, + { + "license_key": "xming", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-xming", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xming.json", + "yaml": "xming.yml", + "html": "xming.html", + "license": "xming.LICENSE" + }, + { + "license_key": "xmldb-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-xmldb-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xmldb-1.0.json", + "yaml": "xmldb-1.0.yml", + "html": "xmldb-1.0.html", + "license": "xmldb-1.0.LICENSE" + }, + { + "license_key": "xnet", + "category": "Permissive", + "spdx_license_key": "Xnet", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xnet.json", + "yaml": "xnet.yml", + "html": "xnet.html", + "license": "xnet.LICENSE" + }, + { + "license_key": "xskat", + "category": "Permissive", + "spdx_license_key": "XSkat", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xskat.json", + "yaml": "xskat.yml", + "html": "xskat.html", + "license": "xskat.LICENSE" + }, + { + "license_key": "xxd", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-xxd", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "xxd.json", + "yaml": "xxd.yml", + "html": "xxd.html", + "license": "xxd.LICENSE" + }, + { + "license_key": "yahoo-browserplus-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-yahoo-browserplus-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "yahoo-browserplus-eula.json", + "yaml": "yahoo-browserplus-eula.yml", + "html": "yahoo-browserplus-eula.html", + "license": "yahoo-browserplus-eula.LICENSE" + }, + { + "license_key": "yahoo-messenger-eula", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-yahoo-messenger-eula", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "yahoo-messenger-eula.json", + "yaml": "yahoo-messenger-eula.yml", + "html": "yahoo-messenger-eula.html", + "license": "yahoo-messenger-eula.LICENSE" + }, + { + "license_key": "yale-cas", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-yale-cas", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "yale-cas.json", + "yaml": "yale-cas.yml", + "html": "yale-cas.html", + "license": "yale-cas.LICENSE" + }, + { + "license_key": "yensdesign", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-yensdesign", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "yensdesign.json", + "yaml": "yensdesign.yml", + "html": "yensdesign.html", + "license": "yensdesign.LICENSE" + }, + { + "license_key": "yolo-1.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-yolo-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "yolo-1.0.json", + "yaml": "yolo-1.0.yml", + "html": "yolo-1.0.html", + "license": "yolo-1.0.LICENSE" + }, + { + "license_key": "yolo-2.0", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-yolo-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "yolo-2.0.json", + "yaml": "yolo-2.0.yml", + "html": "yolo-2.0.html", + "license": "yolo-2.0.LICENSE" + }, + { + "license_key": "ypl-1.0", + "category": "Copyleft Limited", + "spdx_license_key": "YPL-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ypl-1.0.json", + "yaml": "ypl-1.0.yml", + "html": "ypl-1.0.html", + "license": "ypl-1.0.LICENSE" + }, + { + "license_key": "ypl-1.1", + "category": "Copyleft", + "spdx_license_key": "YPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "ypl-1.1.json", + "yaml": "ypl-1.1.yml", + "html": "ypl-1.1.html", + "license": "ypl-1.1.LICENSE" + }, + { + "license_key": "zapatec-calendar", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-zapatec-calendar", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zapatec-calendar.json", + "yaml": "zapatec-calendar.yml", + "html": "zapatec-calendar.html", + "license": "zapatec-calendar.LICENSE" + }, + { + "license_key": "zed", + "category": "Permissive", + "spdx_license_key": "Zed", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zed.json", + "yaml": "zed.yml", + "html": "zed.html", + "license": "zed.LICENSE" + }, + { + "license_key": "zeeff", + "category": "Permissive", + "spdx_license_key": "Zeeff", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zeeff.json", + "yaml": "zeeff.yml", + "html": "zeeff.html", + "license": "zeeff.LICENSE" + }, + { + "license_key": "zend-2.0", + "category": "Permissive", + "spdx_license_key": "Zend-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zend-2.0.json", + "yaml": "zend-2.0.yml", + "html": "zend-2.0.html", + "license": "zend-2.0.LICENSE" + }, + { + "license_key": "zendesk-appdev-api-2022", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-zendesk-appdev-api-2022", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zendesk-appdev-api-2022.json", + "yaml": "zendesk-appdev-api-2022.yml", + "html": "zendesk-appdev-api-2022.html", + "license": "zendesk-appdev-api-2022.LICENSE" + }, + { + "license_key": "zeromq-exception-lgpl-3.0", + "category": "Copyleft Limited", + "spdx_license_key": "LicenseRef-scancode-zeromq-exception-lgpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "zeromq-exception-lgpl-3.0.json", + "yaml": "zeromq-exception-lgpl-3.0.yml", + "html": "zeromq-exception-lgpl-3.0.html", + "license": "zeromq-exception-lgpl-3.0.LICENSE" + }, + { + "license_key": "zeusbench", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-zeusbench", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zeusbench.json", + "yaml": "zeusbench.yml", + "html": "zeusbench.html", + "license": "zeusbench.LICENSE" + }, + { + "license_key": "zhorn-stickies", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-zhorn-stickies", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zhorn-stickies.json", + "yaml": "zhorn-stickies.yml", + "html": "zhorn-stickies.html", + "license": "zhorn-stickies.LICENSE" + }, + { + "license_key": "zimbra-1.3", + "category": "Copyleft Limited", + "spdx_license_key": "Zimbra-1.3", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zimbra-1.3.json", + "yaml": "zimbra-1.3.yml", + "html": "zimbra-1.3.html", + "license": "zimbra-1.3.LICENSE" + }, + { + "license_key": "zimbra-1.4", + "category": "Copyleft Limited", + "spdx_license_key": "Zimbra-1.4", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zimbra-1.4.json", + "yaml": "zimbra-1.4.yml", + "html": "zimbra-1.4.html", + "license": "zimbra-1.4.LICENSE" + }, + { + "license_key": "zipeg", + "category": "Proprietary Free", + "spdx_license_key": "LicenseRef-scancode-zipeg", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zipeg.json", + "yaml": "zipeg.yml", + "html": "zipeg.html", + "license": "zipeg.LICENSE" + }, + { + "license_key": "ziplist5-geocode-duplication-addendum", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-dup-addendum", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ziplist5-geocode-duplication-addendum" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ziplist5-geocode-duplication-addendum.json", + "yaml": "ziplist5-geocode-duplication-addendum.yml", + "html": "ziplist5-geocode-duplication-addendum.html", + "license": "ziplist5-geocode-duplication-addendum.LICENSE" + }, + { + "license_key": "ziplist5-geocode-end-user-enterprise", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-enterprise", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ziplist5-geocode-end-user-enterprise" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ziplist5-geocode-end-user-enterprise.json", + "yaml": "ziplist5-geocode-end-user-enterprise.yml", + "html": "ziplist5-geocode-end-user-enterprise.html", + "license": "ziplist5-geocode-end-user-enterprise.LICENSE" + }, + { + "license_key": "ziplist5-geocode-end-user-workstation", + "category": "Commercial", + "spdx_license_key": "LicenseRef-scancode-ziplist5-geocode-workstation", + "other_spdx_license_keys": [ + "LicenseRef-scancode-ziplist5-geocode-end-user-workstation" + ], + "is_exception": false, + "is_deprecated": false, + "json": "ziplist5-geocode-end-user-workstation.json", + "yaml": "ziplist5-geocode-end-user-workstation.yml", + "html": "ziplist5-geocode-end-user-workstation.html", + "license": "ziplist5-geocode-end-user-workstation.LICENSE" + }, + { + "license_key": "zlib", + "category": "Permissive", + "spdx_license_key": "Zlib", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zlib.json", + "yaml": "zlib.yml", + "html": "zlib.html", + "license": "zlib.LICENSE" + }, + { + "license_key": "zlib-acknowledgement", + "category": "Permissive", + "spdx_license_key": "zlib-acknowledgement", + "other_spdx_license_keys": [ + "Nunit" + ], + "is_exception": false, + "is_deprecated": false, + "json": "zlib-acknowledgement.json", + "yaml": "zlib-acknowledgement.yml", + "html": "zlib-acknowledgement.html", + "license": "zlib-acknowledgement.LICENSE" + }, + { + "license_key": "zpl-1.0", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-zpl-1.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zpl-1.0.json", + "yaml": "zpl-1.0.yml", + "html": "zpl-1.0.html", + "license": "zpl-1.0.LICENSE" + }, + { + "license_key": "zpl-1.1", + "category": "Permissive", + "spdx_license_key": "ZPL-1.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zpl-1.1.json", + "yaml": "zpl-1.1.yml", + "html": "zpl-1.1.html", + "license": "zpl-1.1.LICENSE" + }, + { + "license_key": "zpl-2.0", + "category": "Permissive", + "spdx_license_key": "ZPL-2.0", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zpl-2.0.json", + "yaml": "zpl-2.0.yml", + "html": "zpl-2.0.html", + "license": "zpl-2.0.LICENSE" + }, + { + "license_key": "zpl-2.1", + "category": "Permissive", + "spdx_license_key": "ZPL-2.1", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zpl-2.1.json", + "yaml": "zpl-2.1.yml", + "html": "zpl-2.1.html", + "license": "zpl-2.1.LICENSE" + }, + { + "license_key": "zrythm-exception-agpl-3.0", + "category": "Copyleft", + "spdx_license_key": "LicenseRef-scancode-zrythm-exception-agpl-3.0", + "other_spdx_license_keys": [], + "is_exception": true, + "is_deprecated": false, + "json": "zrythm-exception-agpl-3.0.json", + "yaml": "zrythm-exception-agpl-3.0.yml", + "html": "zrythm-exception-agpl-3.0.html", + "license": "zrythm-exception-agpl-3.0.LICENSE" + }, + { + "license_key": "zsh", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-zsh", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zsh.json", + "yaml": "zsh.yml", + "html": "zsh.html", + "license": "zsh.LICENSE" + }, + { + "license_key": "zuora-software", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-zuora-software", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zuora-software.json", + "yaml": "zuora-software.yml", + "html": "zuora-software.html", + "license": "zuora-software.LICENSE" + }, + { + "license_key": "zveno-research", + "category": "Permissive", + "spdx_license_key": "LicenseRef-scancode-zveno-research", + "other_spdx_license_keys": [], + "is_exception": false, + "is_deprecated": false, + "json": "zveno-research.json", + "yaml": "zveno-research.yml", + "html": "zveno-research.html", + "license": "zveno-research.LICENSE" + } +] \ No newline at end of file diff --git a/pkg/licenses/files/licenses_spdx.json b/pkg/licenses/files/licenses_spdx.json new file mode 100644 index 0000000..884a5e6 --- /dev/null +++ b/pkg/licenses/files/licenses_spdx.json @@ -0,0 +1,7997 @@ +{ + "licenseListVersion": "3.23", + "licenses": [ + { + "reference": "https://spdx.org/licenses/0BSD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/0BSD.json", + "referenceNumber": 78, + "name": "BSD Zero Clause License", + "licenseId": "0BSD", + "seeAlso": [ + "http://landley.net/toybox/license.html", + "https://opensource.org/licenses/0BSD" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/AAL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AAL.json", + "referenceNumber": 433, + "name": "Attribution Assurance License", + "licenseId": "AAL", + "seeAlso": [ + "https://opensource.org/licenses/attribution" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Abstyles.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Abstyles.json", + "referenceNumber": 395, + "name": "Abstyles License", + "licenseId": "Abstyles", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Abstyles" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AdaCore-doc.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AdaCore-doc.json", + "referenceNumber": 108, + "name": "AdaCore Doc License", + "licenseId": "AdaCore-doc", + "seeAlso": [ + "https://github.com/AdaCore/xmlada/blob/master/docs/index.rst", + "https://github.com/AdaCore/gnatcoll-core/blob/master/docs/index.rst", + "https://github.com/AdaCore/gnatcoll-db/blob/master/docs/index.rst" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Adobe-2006.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Adobe-2006.json", + "referenceNumber": 358, + "name": "Adobe Systems Incorporated Source Code License Agreement", + "licenseId": "Adobe-2006", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/AdobeLicense" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Adobe-Display-PostScript.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Adobe-Display-PostScript.json", + "referenceNumber": 272, + "name": "Adobe Display PostScript License", + "licenseId": "Adobe-Display-PostScript", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/xserver/-/blob/master/COPYING?ref_type\u003dheads#L752" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Adobe-Glyph.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Adobe-Glyph.json", + "referenceNumber": 297, + "name": "Adobe Glyph List License", + "licenseId": "Adobe-Glyph", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MIT#AdobeGlyph" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Adobe-Utopia.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Adobe-Utopia.json", + "referenceNumber": 311, + "name": "Adobe Utopia Font License", + "licenseId": "Adobe-Utopia", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/font/adobe-utopia-100dpi/-/blob/master/COPYING?ref_type\u003dheads" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ADSL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ADSL.json", + "referenceNumber": 498, + "name": "Amazon Digital Services License", + "licenseId": "ADSL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/AmazonDigitalServicesLicense" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AFL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AFL-1.1.json", + "referenceNumber": 106, + "name": "Academic Free License v1.1", + "licenseId": "AFL-1.1", + "seeAlso": [ + "http://opensource.linux-mirror.org/licenses/afl-1.1.txt", + "http://wayback.archive.org/web/20021004124254/http://www.opensource.org/licenses/academic.php" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AFL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AFL-1.2.json", + "referenceNumber": 628, + "name": "Academic Free License v1.2", + "licenseId": "AFL-1.2", + "seeAlso": [ + "http://opensource.linux-mirror.org/licenses/afl-1.2.txt", + "http://wayback.archive.org/web/20021204204652/http://www.opensource.org/licenses/academic.php" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AFL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AFL-2.0.json", + "referenceNumber": 366, + "name": "Academic Free License v2.0", + "licenseId": "AFL-2.0", + "seeAlso": [ + "http://wayback.archive.org/web/20060924134533/http://www.opensource.org/licenses/afl-2.0.txt" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AFL-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AFL-2.1.json", + "referenceNumber": 220, + "name": "Academic Free License v2.1", + "licenseId": "AFL-2.1", + "seeAlso": [ + "http://opensource.linux-mirror.org/licenses/afl-2.1.txt" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AFL-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AFL-3.0.json", + "referenceNumber": 599, + "name": "Academic Free License v3.0", + "licenseId": "AFL-3.0", + "seeAlso": [ + "http://www.rosenlaw.com/AFL3.0.htm", + "https://opensource.org/licenses/afl-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Afmparse.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Afmparse.json", + "referenceNumber": 172, + "name": "Afmparse License", + "licenseId": "Afmparse", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Afmparse" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AGPL-1.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/AGPL-1.0.json", + "referenceNumber": 374, + "name": "Affero General Public License v1.0", + "licenseId": "AGPL-1.0", + "seeAlso": [ + "http://www.affero.org/oagpl.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AGPL-1.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AGPL-1.0-only.json", + "referenceNumber": 310, + "name": "Affero General Public License v1.0 only", + "licenseId": "AGPL-1.0-only", + "seeAlso": [ + "http://www.affero.org/oagpl.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AGPL-1.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AGPL-1.0-or-later.json", + "referenceNumber": 418, + "name": "Affero General Public License v1.0 or later", + "licenseId": "AGPL-1.0-or-later", + "seeAlso": [ + "http://www.affero.org/oagpl.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AGPL-3.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/AGPL-3.0.json", + "referenceNumber": 631, + "name": "GNU Affero General Public License v3.0", + "licenseId": "AGPL-3.0", + "seeAlso": [ + "https://www.gnu.org/licenses/agpl.txt", + "https://opensource.org/licenses/AGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AGPL-3.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AGPL-3.0-only.json", + "referenceNumber": 495, + "name": "GNU Affero General Public License v3.0 only", + "licenseId": "AGPL-3.0-only", + "seeAlso": [ + "https://www.gnu.org/licenses/agpl.txt", + "https://opensource.org/licenses/AGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/AGPL-3.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AGPL-3.0-or-later.json", + "referenceNumber": 228, + "name": "GNU Affero General Public License v3.0 or later", + "licenseId": "AGPL-3.0-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/agpl.txt", + "https://opensource.org/licenses/AGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Aladdin.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Aladdin.json", + "referenceNumber": 35, + "name": "Aladdin Free Public License", + "licenseId": "Aladdin", + "seeAlso": [ + "http://pages.cs.wisc.edu/~ghost/doc/AFPL/6.01/Public.htm" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/AMDPLPA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AMDPLPA.json", + "referenceNumber": 100, + "name": "AMD\u0027s plpa_map.c License", + "licenseId": "AMDPLPA", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/AMD_plpa_map_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AML.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AML.json", + "referenceNumber": 2, + "name": "Apple MIT License", + "licenseId": "AML", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Apple_MIT_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AML-glslang.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AML-glslang.json", + "referenceNumber": 370, + "name": "AML glslang variant License", + "licenseId": "AML-glslang", + "seeAlso": [ + "https://github.com/KhronosGroup/glslang/blob/main/LICENSE.txt#L949", + "https://docs.omniverse.nvidia.com/install-guide/latest/common/licenses.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/AMPAS.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/AMPAS.json", + "referenceNumber": 267, + "name": "Academy of Motion Picture Arts and Sciences BSD", + "licenseId": "AMPAS", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/BSD#AMPASBSD" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ANTLR-PD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ANTLR-PD.json", + "referenceNumber": 586, + "name": "ANTLR Software Rights Notice", + "licenseId": "ANTLR-PD", + "seeAlso": [ + "http://www.antlr2.org/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ANTLR-PD-fallback.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ANTLR-PD-fallback.json", + "referenceNumber": 133, + "name": "ANTLR Software Rights Notice with license fallback", + "licenseId": "ANTLR-PD-fallback", + "seeAlso": [ + "http://www.antlr2.org/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Apache-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Apache-1.0.json", + "referenceNumber": 463, + "name": "Apache License 1.0", + "licenseId": "Apache-1.0", + "seeAlso": [ + "http://www.apache.org/licenses/LICENSE-1.0" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Apache-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Apache-1.1.json", + "referenceNumber": 627, + "name": "Apache License 1.1", + "licenseId": "Apache-1.1", + "seeAlso": [ + "http://apache.org/licenses/LICENSE-1.1", + "https://opensource.org/licenses/Apache-1.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Apache-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Apache-2.0.json", + "referenceNumber": 501, + "name": "Apache License 2.0", + "licenseId": "Apache-2.0", + "seeAlso": [ + "https://www.apache.org/licenses/LICENSE-2.0", + "https://opensource.org/licenses/Apache-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/APAFML.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/APAFML.json", + "referenceNumber": 376, + "name": "Adobe Postscript AFM License", + "licenseId": "APAFML", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/AdobePostscriptAFM" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/APL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/APL-1.0.json", + "referenceNumber": 226, + "name": "Adaptive Public License 1.0", + "licenseId": "APL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/APL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/App-s2p.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/App-s2p.json", + "referenceNumber": 123, + "name": "App::s2p License", + "licenseId": "App-s2p", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/App-s2p" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/APSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/APSL-1.0.json", + "referenceNumber": 536, + "name": "Apple Public Source License 1.0", + "licenseId": "APSL-1.0", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Apple_Public_Source_License_1.0" + ], + "isOsiApproved": true, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/APSL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/APSL-1.1.json", + "referenceNumber": 475, + "name": "Apple Public Source License 1.1", + "licenseId": "APSL-1.1", + "seeAlso": [ + "http://www.opensource.apple.com/source/IOSerialFamily/IOSerialFamily-7/APPLE_LICENSE" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/APSL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/APSL-1.2.json", + "referenceNumber": 547, + "name": "Apple Public Source License 1.2", + "licenseId": "APSL-1.2", + "seeAlso": [ + "http://www.samurajdata.se/opensource/mirror/licenses/apsl.php" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/APSL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/APSL-2.0.json", + "referenceNumber": 147, + "name": "Apple Public Source License 2.0", + "licenseId": "APSL-2.0", + "seeAlso": [ + "http://www.opensource.apple.com/license/apsl/" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Arphic-1999.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Arphic-1999.json", + "referenceNumber": 326, + "name": "Arphic Public License", + "licenseId": "Arphic-1999", + "seeAlso": [ + "http://ftp.gnu.org/gnu/non-gnu/chinese-fonts-truetype/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Artistic-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Artistic-1.0.json", + "referenceNumber": 278, + "name": "Artistic License 1.0", + "licenseId": "Artistic-1.0", + "seeAlso": [ + "https://opensource.org/licenses/Artistic-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/Artistic-1.0-cl8.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Artistic-1.0-cl8.json", + "referenceNumber": 234, + "name": "Artistic License 1.0 w/clause 8", + "licenseId": "Artistic-1.0-cl8", + "seeAlso": [ + "https://opensource.org/licenses/Artistic-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Artistic-1.0-Perl.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Artistic-1.0-Perl.json", + "referenceNumber": 634, + "name": "Artistic License 1.0 (Perl)", + "licenseId": "Artistic-1.0-Perl", + "seeAlso": [ + "http://dev.perl.org/licenses/artistic.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Artistic-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Artistic-2.0.json", + "referenceNumber": 222, + "name": "Artistic License 2.0", + "licenseId": "Artistic-2.0", + "seeAlso": [ + "http://www.perlfoundation.org/artistic_license_2_0", + "https://www.perlfoundation.org/artistic-license-20.html", + "https://opensource.org/licenses/artistic-license-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ASWF-Digital-Assets-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ASWF-Digital-Assets-1.0.json", + "referenceNumber": 64, + "name": "ASWF Digital Assets License version 1.0", + "licenseId": "ASWF-Digital-Assets-1.0", + "seeAlso": [ + "https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/aswf_digital_assets_license_v1.0.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ASWF-Digital-Assets-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ASWF-Digital-Assets-1.1.json", + "referenceNumber": 8, + "name": "ASWF Digital Assets License 1.1", + "licenseId": "ASWF-Digital-Assets-1.1", + "seeAlso": [ + "https://github.com/AcademySoftwareFoundation/foundation/blob/main/digital_assets/aswf_digital_assets_license_v1.1.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Baekmuk.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Baekmuk.json", + "referenceNumber": 512, + "name": "Baekmuk License", + "licenseId": "Baekmuk", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:Baekmuk?rd\u003dLicensing/Baekmuk" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Bahyph.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Bahyph.json", + "referenceNumber": 57, + "name": "Bahyph License", + "licenseId": "Bahyph", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Bahyph" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Barr.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Barr.json", + "referenceNumber": 425, + "name": "Barr License", + "licenseId": "Barr", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Barr" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/bcrypt-Solar-Designer.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/bcrypt-Solar-Designer.json", + "referenceNumber": 166, + "name": "bcrypt Solar Designer License", + "licenseId": "bcrypt-Solar-Designer", + "seeAlso": [ + "https://github.com/bcrypt-ruby/bcrypt-ruby/blob/master/ext/mri/crypt_blowfish.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Beerware.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Beerware.json", + "referenceNumber": 50, + "name": "Beerware License", + "licenseId": "Beerware", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Beerware", + "https://people.freebsd.org/~phk/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Bitstream-Charter.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Bitstream-Charter.json", + "referenceNumber": 236, + "name": "Bitstream Charter Font License", + "licenseId": "Bitstream-Charter", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Charter#License_Text", + "https://raw.githubusercontent.com/blackhole89/notekit/master/data/fonts/Charter%20license.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Bitstream-Vera.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Bitstream-Vera.json", + "referenceNumber": 421, + "name": "Bitstream Vera Font License", + "licenseId": "Bitstream-Vera", + "seeAlso": [ + "https://web.archive.org/web/20080207013128/http://www.gnome.org/fonts/", + "https://docubrain.com/sites/default/files/licenses/bitstream-vera.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BitTorrent-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BitTorrent-1.0.json", + "referenceNumber": 602, + "name": "BitTorrent Open Source License v1.0", + "licenseId": "BitTorrent-1.0", + "seeAlso": [ + "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/licenses/BitTorrent?r1\u003d1.1\u0026r2\u003d1.1.1.1\u0026diff_format\u003ds" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BitTorrent-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BitTorrent-1.1.json", + "referenceNumber": 161, + "name": "BitTorrent Open Source License v1.1", + "licenseId": "BitTorrent-1.1", + "seeAlso": [ + "http://directory.fsf.org/wiki/License:BitTorrentOSL1.1" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/blessing.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/blessing.json", + "referenceNumber": 618, + "name": "SQLite Blessing", + "licenseId": "blessing", + "seeAlso": [ + "https://www.sqlite.org/src/artifact/e33a4df7e32d742a?ln\u003d4-9", + "https://sqlite.org/src/artifact/df5091916dbb40e6" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BlueOak-1.0.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BlueOak-1.0.0.json", + "referenceNumber": 570, + "name": "Blue Oak Model License 1.0.0", + "licenseId": "BlueOak-1.0.0", + "seeAlso": [ + "https://blueoakcouncil.org/license/1.0.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Boehm-GC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Boehm-GC.json", + "referenceNumber": 15, + "name": "Boehm-Demers-Weiser GC License", + "licenseId": "Boehm-GC", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:MIT#Another_Minimal_variant_(found_in_libatomic_ops)", + "https://github.com/uim/libgcroots/blob/master/COPYING", + "https://github.com/ivmai/libatomic_ops/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Borceux.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Borceux.json", + "referenceNumber": 113, + "name": "Borceux license", + "licenseId": "Borceux", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Borceux" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Brian-Gladman-2-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Brian-Gladman-2-Clause.json", + "referenceNumber": 316, + "name": "Brian Gladman 2-Clause License", + "licenseId": "Brian-Gladman-2-Clause", + "seeAlso": [ + "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L140-L156", + "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Brian-Gladman-3-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Brian-Gladman-3-Clause.json", + "referenceNumber": 444, + "name": "Brian Gladman 3-Clause License", + "licenseId": "Brian-Gladman-3-Clause", + "seeAlso": [ + "https://github.com/SWI-Prolog/packages-clib/blob/master/sha1/brg_endian.h" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-1-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-1-Clause.json", + "referenceNumber": 308, + "name": "BSD 1-Clause License", + "licenseId": "BSD-1-Clause", + "seeAlso": [ + "https://svnweb.freebsd.org/base/head/include/ifaddrs.h?revision\u003d326823" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/BSD-2-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause.json", + "referenceNumber": 232, + "name": "BSD 2-Clause \"Simplified\" License", + "licenseId": "BSD-2-Clause", + "seeAlso": [ + "https://opensource.org/licenses/BSD-2-Clause" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BSD-2-Clause-Darwin.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-Darwin.json", + "referenceNumber": 555, + "name": "BSD 2-Clause - Ian Darwin variant", + "licenseId": "BSD-2-Clause-Darwin", + "seeAlso": [ + "https://github.com/file/file/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.json", + "referenceNumber": 56, + "name": "BSD 2-Clause FreeBSD License", + "licenseId": "BSD-2-Clause-FreeBSD", + "seeAlso": [ + "http://www.freebsd.org/copyright/freebsd-license.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BSD-2-Clause-NetBSD.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-NetBSD.json", + "referenceNumber": 530, + "name": "BSD 2-Clause NetBSD License", + "licenseId": "BSD-2-Clause-NetBSD", + "seeAlso": [ + "http://www.netbsd.org/about/redistribution.html#default" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BSD-2-Clause-Patent.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-Patent.json", + "referenceNumber": 200, + "name": "BSD-2-Clause Plus Patent License", + "licenseId": "BSD-2-Clause-Patent", + "seeAlso": [ + "https://opensource.org/licenses/BSDplusPatent" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/BSD-2-Clause-Views.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-2-Clause-Views.json", + "referenceNumber": 539, + "name": "BSD 2-Clause with views sentence", + "licenseId": "BSD-2-Clause-Views", + "seeAlso": [ + "http://www.freebsd.org/copyright/freebsd-license.html", + "https://people.freebsd.org/~ivoras/wine/patch-wine-nvidia.sh", + "https://github.com/protegeproject/protege/blob/master/license.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause.json", + "referenceNumber": 409, + "name": "BSD 3-Clause \"New\" or \"Revised\" License", + "licenseId": "BSD-3-Clause", + "seeAlso": [ + "https://opensource.org/licenses/BSD-3-Clause", + "https://www.eclipse.org/org/documents/edl-v10.php" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-acpica.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-acpica.json", + "referenceNumber": 306, + "name": "BSD 3-Clause acpica variant", + "licenseId": "BSD-3-Clause-acpica", + "seeAlso": [ + "https://github.com/acpica/acpica/blob/master/source/common/acfileio.c#L119" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-Attribution.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Attribution.json", + "referenceNumber": 127, + "name": "BSD with attribution", + "licenseId": "BSD-3-Clause-Attribution", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/BSD_with_Attribution" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-Clear.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Clear.json", + "referenceNumber": 251, + "name": "BSD 3-Clause Clear License", + "licenseId": "BSD-3-Clause-Clear", + "seeAlso": [ + "http://labs.metacarta.com/license-explanation.html#license" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-flex.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-flex.json", + "referenceNumber": 388, + "name": "BSD 3-Clause Flex variant", + "licenseId": "BSD-3-Clause-flex", + "seeAlso": [ + "https://github.com/westes/flex/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-HP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-HP.json", + "referenceNumber": 189, + "name": "Hewlett-Packard BSD variant license", + "licenseId": "BSD-3-Clause-HP", + "seeAlso": [ + "https://github.com/zdohnal/hplip/blob/master/COPYING#L939" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-LBNL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-LBNL.json", + "referenceNumber": 377, + "name": "Lawrence Berkeley National Labs BSD variant license", + "licenseId": "BSD-3-Clause-LBNL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/LBNLBSD" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-Modification.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Modification.json", + "referenceNumber": 89, + "name": "BSD 3-Clause Modification", + "licenseId": "BSD-3-Clause-Modification", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:BSD#Modification_Variant" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-No-Military-License.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Military-License.json", + "referenceNumber": 216, + "name": "BSD 3-Clause No Military License", + "licenseId": "BSD-3-Clause-No-Military-License", + "seeAlso": [ + "https://gitlab.syncad.com/hive/dhive/-/blob/master/LICENSE", + "https://github.com/greymass/swift-eosio/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.json", + "referenceNumber": 192, + "name": "BSD 3-Clause No Nuclear License", + "licenseId": "BSD-3-Clause-No-Nuclear-License", + "seeAlso": [ + "http://download.oracle.com/otn-pub/java/licenses/bsd.txt?AuthParam\u003d1467140197_43d516ce1776bd08a58235a7785be1cc" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.json", + "referenceNumber": 249, + "name": "BSD 3-Clause No Nuclear License 2014", + "licenseId": "BSD-3-Clause-No-Nuclear-License-2014", + "seeAlso": [ + "https://java.net/projects/javaeetutorial/pages/BerkeleyLicense" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.json", + "referenceNumber": 437, + "name": "BSD 3-Clause No Nuclear Warranty", + "licenseId": "BSD-3-Clause-No-Nuclear-Warranty", + "seeAlso": [ + "https://jogamp.org/git/?p\u003dgluegen.git;a\u003dblob_plain;f\u003dLICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.json", + "referenceNumber": 424, + "name": "BSD 3-Clause Open MPI variant", + "licenseId": "BSD-3-Clause-Open-MPI", + "seeAlso": [ + "https://www.open-mpi.org/community/license.php", + "http://www.netlib.org/lapack/LICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-3-Clause-Sun.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-3-Clause-Sun.json", + "referenceNumber": 596, + "name": "BSD 3-Clause Sun Microsystems", + "licenseId": "BSD-3-Clause-Sun", + "seeAlso": [ + "https://github.com/xmlark/msv/blob/b9316e2f2270bc1606952ea4939ec87fbba157f3/xsdlib/src/main/java/com/sun/msv/datatype/regexp/InternalImpl.java" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-4-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-4-Clause.json", + "referenceNumber": 453, + "name": "BSD 4-Clause \"Original\" or \"Old\" License", + "licenseId": "BSD-4-Clause", + "seeAlso": [ + "http://directory.fsf.org/wiki/License:BSD_4Clause" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BSD-4-Clause-Shortened.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-4-Clause-Shortened.json", + "referenceNumber": 46, + "name": "BSD 4 Clause Shortened", + "licenseId": "BSD-4-Clause-Shortened", + "seeAlso": [ + "https://metadata.ftp-master.debian.org/changelogs//main/a/arpwatch/arpwatch_2.1a15-7_copyright" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-4-Clause-UC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-4-Clause-UC.json", + "referenceNumber": 350, + "name": "BSD-4-Clause (University of California-Specific)", + "licenseId": "BSD-4-Clause-UC", + "seeAlso": [ + "http://www.freebsd.org/copyright/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-4.3RENO.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-4.3RENO.json", + "referenceNumber": 558, + "name": "BSD 4.3 RENO License", + "licenseId": "BSD-4.3RENO", + "seeAlso": [ + "https://sourceware.org/git/?p\u003dbinutils-gdb.git;a\u003dblob;f\u003dlibiberty/strcasecmp.c;h\u003d131d81c2ce7881fa48c363dc5bf5fb302c61ce0b;hb\u003dHEAD", + "https://git.openldap.org/openldap/openldap/-/blob/master/COPYRIGHT#L55-63" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-4.3TAHOE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-4.3TAHOE.json", + "referenceNumber": 372, + "name": "BSD 4.3 TAHOE License", + "licenseId": "BSD-4.3TAHOE", + "seeAlso": [ + "https://github.com/389ds/389-ds-base/blob/main/ldap/include/sysexits-compat.h#L15", + "https://git.savannah.gnu.org/cgit/indent.git/tree/doc/indent.texi?id\u003da74c6b4ee49397cf330b333da1042bffa60ed14f#n1788" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Advertising-Acknowledgement.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Advertising-Acknowledgement.json", + "referenceNumber": 466, + "name": "BSD Advertising Acknowledgement License", + "licenseId": "BSD-Advertising-Acknowledgement", + "seeAlso": [ + "https://github.com/python-excel/xlrd/blob/master/LICENSE#L33" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Attribution-HPND-disclaimer.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Attribution-HPND-disclaimer.json", + "referenceNumber": 434, + "name": "BSD with Attribution and HPND disclaimer", + "licenseId": "BSD-Attribution-HPND-disclaimer", + "seeAlso": [ + "https://github.com/cyrusimap/cyrus-sasl/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Inferno-Nettverk.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Inferno-Nettverk.json", + "referenceNumber": 423, + "name": "BSD-Inferno-Nettverk", + "licenseId": "BSD-Inferno-Nettverk", + "seeAlso": [ + "https://www.inet.no/dante/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Protection.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Protection.json", + "referenceNumber": 569, + "name": "BSD Protection License", + "licenseId": "BSD-Protection", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/BSD_Protection_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Source-beginning-file.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Source-beginning-file.json", + "referenceNumber": 486, + "name": "BSD Source Code Attribution - beginning of file variant", + "licenseId": "BSD-Source-beginning-file", + "seeAlso": [ + "https://github.com/lattera/freebsd/blob/master/sys/cam/cam.c#L4" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Source-Code.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Source-Code.json", + "referenceNumber": 36, + "name": "BSD Source Code Attribution", + "licenseId": "BSD-Source-Code", + "seeAlso": [ + "https://github.com/robbiehanson/CocoaHTTPServer/blob/master/LICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Systemics.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Systemics.json", + "referenceNumber": 260, + "name": "Systemics BSD variant license", + "licenseId": "BSD-Systemics", + "seeAlso": [ + "https://metacpan.org/release/DPARIS/Crypt-DES-2.07/source/COPYRIGHT" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSD-Systemics-W3Works.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSD-Systemics-W3Works.json", + "referenceNumber": 398, + "name": "Systemics W3Works BSD variant license", + "licenseId": "BSD-Systemics-W3Works", + "seeAlso": [ + "https://metacpan.org/release/DPARIS/Crypt-Blowfish-2.14/source/COPYRIGHT#L7" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/BSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BSL-1.0.json", + "referenceNumber": 600, + "name": "Boost Software License 1.0", + "licenseId": "BSL-1.0", + "seeAlso": [ + "http://www.boost.org/LICENSE_1_0.txt", + "https://opensource.org/licenses/BSL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/BUSL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/BUSL-1.1.json", + "referenceNumber": 380, + "name": "Business Source License 1.1", + "licenseId": "BUSL-1.1", + "seeAlso": [ + "https://mariadb.com/bsl11/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/bzip2-1.0.5.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/bzip2-1.0.5.json", + "referenceNumber": 283, + "name": "bzip2 and libbzip2 License v1.0.5", + "licenseId": "bzip2-1.0.5", + "seeAlso": [ + "https://sourceware.org/bzip2/1.0.5/bzip2-manual-1.0.5.html", + "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/bzip2-1.0.6.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/bzip2-1.0.6.json", + "referenceNumber": 206, + "name": "bzip2 and libbzip2 License v1.0.6", + "licenseId": "bzip2-1.0.6", + "seeAlso": [ + "https://sourceware.org/git/?p\u003dbzip2.git;a\u003dblob;f\u003dLICENSE;hb\u003dbzip2-1.0.6", + "http://bzip.org/1.0.5/bzip2-manual-1.0.5.html", + "https://sourceware.org/cgit/valgrind/tree/mpi/libmpiwrap.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/C-UDA-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/C-UDA-1.0.json", + "referenceNumber": 551, + "name": "Computational Use of Data Agreement v1.0", + "licenseId": "C-UDA-1.0", + "seeAlso": [ + "https://github.com/microsoft/Computational-Use-of-Data-Agreement/blob/master/C-UDA-1.0.md", + "https://cdla.dev/computational-use-of-data-agreement-v1-0/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CAL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CAL-1.0.json", + "referenceNumber": 630, + "name": "Cryptographic Autonomy License 1.0", + "licenseId": "CAL-1.0", + "seeAlso": [ + "http://cryptographicautonomylicense.com/license-text.html", + "https://opensource.org/licenses/CAL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CAL-1.0-Combined-Work-Exception.json", + "referenceNumber": 158, + "name": "Cryptographic Autonomy License 1.0 (Combined Work Exception)", + "licenseId": "CAL-1.0-Combined-Work-Exception", + "seeAlso": [ + "http://cryptographicautonomylicense.com/license-text.html", + "https://opensource.org/licenses/CAL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Caldera.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Caldera.json", + "referenceNumber": 282, + "name": "Caldera License", + "licenseId": "Caldera", + "seeAlso": [ + "http://www.lemis.com/grog/UNIX/ancient-source-all.pdf" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Caldera-no-preamble.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Caldera-no-preamble.json", + "referenceNumber": 262, + "name": "Caldera License (without preamble)", + "licenseId": "Caldera-no-preamble", + "seeAlso": [ + "https://github.com/apache/apr/blob/trunk/LICENSE#L298C6-L298C29" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CATOSL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CATOSL-1.1.json", + "referenceNumber": 319, + "name": "Computer Associates Trusted Open Source License 1.1", + "licenseId": "CATOSL-1.1", + "seeAlso": [ + "https://opensource.org/licenses/CATOSL-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CC-BY-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-1.0.json", + "referenceNumber": 384, + "name": "Creative Commons Attribution 1.0 Generic", + "licenseId": "CC-BY-1.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by/1.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-2.0.json", + "referenceNumber": 69, + "name": "Creative Commons Attribution 2.0 Generic", + "licenseId": "CC-BY-2.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by/2.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-2.5.json", + "referenceNumber": 482, + "name": "Creative Commons Attribution 2.5 Generic", + "licenseId": "CC-BY-2.5", + "seeAlso": [ + "https://creativecommons.org/licenses/by/2.5/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-2.5-AU.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-2.5-AU.json", + "referenceNumber": 348, + "name": "Creative Commons Attribution 2.5 Australia", + "licenseId": "CC-BY-2.5-AU", + "seeAlso": [ + "https://creativecommons.org/licenses/by/2.5/au/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0.json", + "referenceNumber": 562, + "name": "Creative Commons Attribution 3.0 Unported", + "licenseId": "CC-BY-3.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0-AT.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-AT.json", + "referenceNumber": 314, + "name": "Creative Commons Attribution 3.0 Austria", + "licenseId": "CC-BY-3.0-AT", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/at/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0-AU.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-AU.json", + "referenceNumber": 235, + "name": "Creative Commons Attribution 3.0 Australia", + "licenseId": "CC-BY-3.0-AU", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/au/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-DE.json", + "referenceNumber": 110, + "name": "Creative Commons Attribution 3.0 Germany", + "licenseId": "CC-BY-3.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0-IGO.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-IGO.json", + "referenceNumber": 359, + "name": "Creative Commons Attribution 3.0 IGO", + "licenseId": "CC-BY-3.0-IGO", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/igo/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0-NL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-NL.json", + "referenceNumber": 130, + "name": "Creative Commons Attribution 3.0 Netherlands", + "licenseId": "CC-BY-3.0-NL", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/nl/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-3.0-US.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-3.0-US.json", + "referenceNumber": 38, + "name": "Creative Commons Attribution 3.0 United States", + "licenseId": "CC-BY-3.0-US", + "seeAlso": [ + "https://creativecommons.org/licenses/by/3.0/us/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-4.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-4.0.json", + "referenceNumber": 122, + "name": "Creative Commons Attribution 4.0 International", + "licenseId": "CC-BY-4.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by/4.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-1.0.json", + "referenceNumber": 29, + "name": "Creative Commons Attribution Non Commercial 1.0 Generic", + "licenseId": "CC-BY-NC-1.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc/1.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-2.0.json", + "referenceNumber": 588, + "name": "Creative Commons Attribution Non Commercial 2.0 Generic", + "licenseId": "CC-BY-NC-2.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc/2.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-2.5.json", + "referenceNumber": 400, + "name": "Creative Commons Attribution Non Commercial 2.5 Generic", + "licenseId": "CC-BY-NC-2.5", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc/2.5/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-3.0.json", + "referenceNumber": 104, + "name": "Creative Commons Attribution Non Commercial 3.0 Unported", + "licenseId": "CC-BY-NC-3.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc/3.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-3.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-3.0-DE.json", + "referenceNumber": 351, + "name": "Creative Commons Attribution Non Commercial 3.0 Germany", + "licenseId": "CC-BY-NC-3.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc/3.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-4.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-4.0.json", + "referenceNumber": 353, + "name": "Creative Commons Attribution Non Commercial 4.0 International", + "licenseId": "CC-BY-NC-4.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc/4.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-1.0.json", + "referenceNumber": 454, + "name": "Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic", + "licenseId": "CC-BY-NC-ND-1.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd-nc/1.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-2.0.json", + "referenceNumber": 53, + "name": "Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic", + "licenseId": "CC-BY-NC-ND-2.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-nd/2.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-2.5.json", + "referenceNumber": 328, + "name": "Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic", + "licenseId": "CC-BY-NC-ND-2.5", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-nd/2.5/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-3.0.json", + "referenceNumber": 70, + "name": "Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported", + "licenseId": "CC-BY-NC-ND-3.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-nd/3.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-DE.json", + "referenceNumber": 47, + "name": "Creative Commons Attribution Non Commercial No Derivatives 3.0 Germany", + "licenseId": "CC-BY-NC-ND-3.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-nd/3.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-3.0-IGO.json", + "referenceNumber": 213, + "name": "Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO", + "licenseId": "CC-BY-NC-ND-3.0-IGO", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-nd/3.0/igo/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-ND-4.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-ND-4.0.json", + "referenceNumber": 550, + "name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "licenseId": "CC-BY-NC-ND-4.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-nd/4.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-1.0.json", + "referenceNumber": 99, + "name": "Creative Commons Attribution Non Commercial Share Alike 1.0 Generic", + "licenseId": "CC-BY-NC-SA-1.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/1.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0.json", + "referenceNumber": 491, + "name": "Creative Commons Attribution Non Commercial Share Alike 2.0 Generic", + "licenseId": "CC-BY-NC-SA-2.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/2.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-DE.json", + "referenceNumber": 246, + "name": "Creative Commons Attribution Non Commercial Share Alike 2.0 Germany", + "licenseId": "CC-BY-NC-SA-2.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/2.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-FR.json", + "referenceNumber": 368, + "name": "Creative Commons Attribution-NonCommercial-ShareAlike 2.0 France", + "licenseId": "CC-BY-NC-SA-2.0-FR", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/2.0/fr/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.0-UK.json", + "referenceNumber": 451, + "name": "Creative Commons Attribution Non Commercial Share Alike 2.0 England and Wales", + "licenseId": "CC-BY-NC-SA-2.0-UK", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/2.0/uk/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-2.5.json", + "referenceNumber": 352, + "name": "Creative Commons Attribution Non Commercial Share Alike 2.5 Generic", + "licenseId": "CC-BY-NC-SA-2.5", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/2.5/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-3.0.json", + "referenceNumber": 41, + "name": "Creative Commons Attribution Non Commercial Share Alike 3.0 Unported", + "licenseId": "CC-BY-NC-SA-3.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/3.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-DE.json", + "referenceNumber": 582, + "name": "Creative Commons Attribution Non Commercial Share Alike 3.0 Germany", + "licenseId": "CC-BY-NC-SA-3.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/3.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-3.0-IGO.json", + "referenceNumber": 205, + "name": "Creative Commons Attribution Non Commercial Share Alike 3.0 IGO", + "licenseId": "CC-BY-NC-SA-3.0-IGO", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/3.0/igo/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-NC-SA-4.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-NC-SA-4.0.json", + "referenceNumber": 610, + "name": "Creative Commons Attribution Non Commercial Share Alike 4.0 International", + "licenseId": "CC-BY-NC-SA-4.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-ND-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-1.0.json", + "referenceNumber": 18, + "name": "Creative Commons Attribution No Derivatives 1.0 Generic", + "licenseId": "CC-BY-ND-1.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd/1.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-ND-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-2.0.json", + "referenceNumber": 614, + "name": "Creative Commons Attribution No Derivatives 2.0 Generic", + "licenseId": "CC-BY-ND-2.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd/2.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-ND-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-2.5.json", + "referenceNumber": 540, + "name": "Creative Commons Attribution No Derivatives 2.5 Generic", + "licenseId": "CC-BY-ND-2.5", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd/2.5/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-ND-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-3.0.json", + "referenceNumber": 544, + "name": "Creative Commons Attribution No Derivatives 3.0 Unported", + "licenseId": "CC-BY-ND-3.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd/3.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-ND-3.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-3.0-DE.json", + "referenceNumber": 355, + "name": "Creative Commons Attribution No Derivatives 3.0 Germany", + "licenseId": "CC-BY-ND-3.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd/3.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-ND-4.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-ND-4.0.json", + "referenceNumber": 545, + "name": "Creative Commons Attribution No Derivatives 4.0 International", + "licenseId": "CC-BY-ND-4.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-nd/4.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-1.0.json", + "referenceNumber": 242, + "name": "Creative Commons Attribution Share Alike 1.0 Generic", + "licenseId": "CC-BY-SA-1.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/1.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.0.json", + "referenceNumber": 349, + "name": "Creative Commons Attribution Share Alike 2.0 Generic", + "licenseId": "CC-BY-SA-2.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/2.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-2.0-UK.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.0-UK.json", + "referenceNumber": 197, + "name": "Creative Commons Attribution Share Alike 2.0 England and Wales", + "licenseId": "CC-BY-SA-2.0-UK", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/2.0/uk/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-2.1-JP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.1-JP.json", + "referenceNumber": 162, + "name": "Creative Commons Attribution Share Alike 2.1 Japan", + "licenseId": "CC-BY-SA-2.1-JP", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/2.1/jp/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-2.5.json", + "referenceNumber": 626, + "name": "Creative Commons Attribution Share Alike 2.5 Generic", + "licenseId": "CC-BY-SA-2.5", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/2.5/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0.json", + "referenceNumber": 244, + "name": "Creative Commons Attribution Share Alike 3.0 Unported", + "licenseId": "CC-BY-SA-3.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/3.0/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-3.0-AT.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0-AT.json", + "referenceNumber": 292, + "name": "Creative Commons Attribution Share Alike 3.0 Austria", + "licenseId": "CC-BY-SA-3.0-AT", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/3.0/at/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-3.0-DE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0-DE.json", + "referenceNumber": 317, + "name": "Creative Commons Attribution Share Alike 3.0 Germany", + "licenseId": "CC-BY-SA-3.0-DE", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/3.0/de/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-3.0-IGO.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-3.0-IGO.json", + "referenceNumber": 139, + "name": "Creative Commons Attribution-ShareAlike 3.0 IGO", + "licenseId": "CC-BY-SA-3.0-IGO", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/3.0/igo/legalcode" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC-BY-SA-4.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-BY-SA-4.0.json", + "referenceNumber": 438, + "name": "Creative Commons Attribution Share Alike 4.0 International", + "licenseId": "CC-BY-SA-4.0", + "seeAlso": [ + "https://creativecommons.org/licenses/by-sa/4.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CC-PDDC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC-PDDC.json", + "referenceNumber": 291, + "name": "Creative Commons Public Domain Dedication and Certification", + "licenseId": "CC-PDDC", + "seeAlso": [ + "https://creativecommons.org/licenses/publicdomain/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CC0-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CC0-1.0.json", + "referenceNumber": 285, + "name": "Creative Commons Zero v1.0 Universal", + "licenseId": "CC0-1.0", + "seeAlso": [ + "https://creativecommons.org/publicdomain/zero/1.0/legalcode" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CDDL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CDDL-1.0.json", + "referenceNumber": 154, + "name": "Common Development and Distribution License 1.0", + "licenseId": "CDDL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/cddl1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CDDL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CDDL-1.1.json", + "referenceNumber": 529, + "name": "Common Development and Distribution License 1.1", + "licenseId": "CDDL-1.1", + "seeAlso": [ + "http://glassfish.java.net/public/CDDL+GPL_1_1.html", + "https://javaee.github.io/glassfish/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CDL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CDL-1.0.json", + "referenceNumber": 243, + "name": "Common Documentation License 1.0", + "licenseId": "CDL-1.0", + "seeAlso": [ + "http://www.opensource.apple.com/cdl/", + "https://fedoraproject.org/wiki/Licensing/Common_Documentation_License", + "https://www.gnu.org/licenses/license-list.html#ACDL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CDLA-Permissive-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CDLA-Permissive-1.0.json", + "referenceNumber": 477, + "name": "Community Data License Agreement Permissive 1.0", + "licenseId": "CDLA-Permissive-1.0", + "seeAlso": [ + "https://cdla.io/permissive-1-0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CDLA-Permissive-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CDLA-Permissive-2.0.json", + "referenceNumber": 335, + "name": "Community Data License Agreement Permissive 2.0", + "licenseId": "CDLA-Permissive-2.0", + "seeAlso": [ + "https://cdla.dev/permissive-2-0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CDLA-Sharing-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CDLA-Sharing-1.0.json", + "referenceNumber": 548, + "name": "Community Data License Agreement Sharing 1.0", + "licenseId": "CDLA-Sharing-1.0", + "seeAlso": [ + "https://cdla.io/sharing-1-0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CECILL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CECILL-1.0.json", + "referenceNumber": 60, + "name": "CeCILL Free Software License Agreement v1.0", + "licenseId": "CECILL-1.0", + "seeAlso": [ + "http://www.cecill.info/licences/Licence_CeCILL_V1-fr.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CECILL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CECILL-1.1.json", + "referenceNumber": 344, + "name": "CeCILL Free Software License Agreement v1.1", + "licenseId": "CECILL-1.1", + "seeAlso": [ + "http://www.cecill.info/licences/Licence_CeCILL_V1.1-US.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CECILL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CECILL-2.0.json", + "referenceNumber": 410, + "name": "CeCILL Free Software License Agreement v2.0", + "licenseId": "CECILL-2.0", + "seeAlso": [ + "http://www.cecill.info/licences/Licence_CeCILL_V2-en.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CECILL-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CECILL-2.1.json", + "referenceNumber": 174, + "name": "CeCILL Free Software License Agreement v2.1", + "licenseId": "CECILL-2.1", + "seeAlso": [ + "http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CECILL-B.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CECILL-B.json", + "referenceNumber": 256, + "name": "CeCILL-B Free Software License Agreement", + "licenseId": "CECILL-B", + "seeAlso": [ + "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CECILL-C.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CECILL-C.json", + "referenceNumber": 52, + "name": "CeCILL-C Free Software License Agreement", + "licenseId": "CECILL-C", + "seeAlso": [ + "http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CERN-OHL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CERN-OHL-1.1.json", + "referenceNumber": 615, + "name": "CERN Open Hardware Licence v1.1", + "licenseId": "CERN-OHL-1.1", + "seeAlso": [ + "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.1" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CERN-OHL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CERN-OHL-1.2.json", + "referenceNumber": 324, + "name": "CERN Open Hardware Licence v1.2", + "licenseId": "CERN-OHL-1.2", + "seeAlso": [ + "https://www.ohwr.org/project/licenses/wikis/cern-ohl-v1.2" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CERN-OHL-P-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CERN-OHL-P-2.0.json", + "referenceNumber": 402, + "name": "CERN Open Hardware Licence Version 2 - Permissive", + "licenseId": "CERN-OHL-P-2.0", + "seeAlso": [ + "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CERN-OHL-S-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CERN-OHL-S-2.0.json", + "referenceNumber": 513, + "name": "CERN Open Hardware Licence Version 2 - Strongly Reciprocal", + "licenseId": "CERN-OHL-S-2.0", + "seeAlso": [ + "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CERN-OHL-W-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CERN-OHL-W-2.0.json", + "referenceNumber": 237, + "name": "CERN Open Hardware Licence Version 2 - Weakly Reciprocal", + "licenseId": "CERN-OHL-W-2.0", + "seeAlso": [ + "https://www.ohwr.org/project/cernohl/wikis/Documents/CERN-OHL-version-2" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CFITSIO.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CFITSIO.json", + "referenceNumber": 151, + "name": "CFITSIO License", + "licenseId": "CFITSIO", + "seeAlso": [ + "https://heasarc.gsfc.nasa.gov/docs/software/fitsio/c/f_user/node9.html", + "https://heasarc.gsfc.nasa.gov/docs/software/ftools/fv/doc/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/check-cvs.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/check-cvs.json", + "referenceNumber": 334, + "name": "check-cvs License", + "licenseId": "check-cvs", + "seeAlso": [ + "http://cvs.savannah.gnu.org/viewvc/cvs/ccvs/contrib/check_cvs.in?revision\u003d1.1.4.3\u0026view\u003dmarkup\u0026pathrev\u003dcvs1-11-23#l2" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/checkmk.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/checkmk.json", + "referenceNumber": 111, + "name": "Checkmk License", + "licenseId": "checkmk", + "seeAlso": [ + "https://github.com/libcheck/check/blob/master/checkmk/checkmk.in" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ClArtistic.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ClArtistic.json", + "referenceNumber": 441, + "name": "Clarified Artistic License", + "licenseId": "ClArtistic", + "seeAlso": [ + "http://gianluca.dellavedova.org/2011/01/03/clarified-artistic-license/", + "http://www.ncftp.com/ncftp/doc/LICENSE.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Clips.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Clips.json", + "referenceNumber": 167, + "name": "Clips License", + "licenseId": "Clips", + "seeAlso": [ + "https://github.com/DrItanium/maya/blob/master/LICENSE.CLIPS" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CMU-Mach.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CMU-Mach.json", + "referenceNumber": 492, + "name": "CMU Mach License", + "licenseId": "CMU-Mach", + "seeAlso": [ + "https://www.cs.cmu.edu/~410/licenses.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CMU-Mach-nodoc.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CMU-Mach-nodoc.json", + "referenceNumber": 318, + "name": "CMU Mach - no notices-in-documentation variant", + "licenseId": "CMU-Mach-nodoc", + "seeAlso": [ + "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L718-L728", + "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CNRI-Jython.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CNRI-Jython.json", + "referenceNumber": 203, + "name": "CNRI Jython License", + "licenseId": "CNRI-Jython", + "seeAlso": [ + "http://www.jython.org/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CNRI-Python.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CNRI-Python.json", + "referenceNumber": 218, + "name": "CNRI Python License", + "licenseId": "CNRI-Python", + "seeAlso": [ + "https://opensource.org/licenses/CNRI-Python" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CNRI-Python-GPL-Compatible.json", + "referenceNumber": 391, + "name": "CNRI Python Open Source GPL Compatible License Agreement", + "licenseId": "CNRI-Python-GPL-Compatible", + "seeAlso": [ + "http://www.python.org/download/releases/1.6.1/download_win/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/COIL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/COIL-1.0.json", + "referenceNumber": 375, + "name": "Copyfree Open Innovation License", + "licenseId": "COIL-1.0", + "seeAlso": [ + "https://coil.apotheon.org/plaintext/01.0.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Community-Spec-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Community-Spec-1.0.json", + "referenceNumber": 357, + "name": "Community Specification License 1.0", + "licenseId": "Community-Spec-1.0", + "seeAlso": [ + "https://github.com/CommunitySpecification/1.0/blob/master/1._Community_Specification_License-v1.md" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Condor-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Condor-1.1.json", + "referenceNumber": 385, + "name": "Condor Public License v1.1", + "licenseId": "Condor-1.1", + "seeAlso": [ + "http://research.cs.wisc.edu/condor/license.html#condor", + "http://web.archive.org/web/20111123062036/http://research.cs.wisc.edu/condor/license.html#condor" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/copyleft-next-0.3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/copyleft-next-0.3.0.json", + "referenceNumber": 340, + "name": "copyleft-next 0.3.0", + "licenseId": "copyleft-next-0.3.0", + "seeAlso": [ + "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/copyleft-next-0.3.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/copyleft-next-0.3.1.json", + "referenceNumber": 553, + "name": "copyleft-next 0.3.1", + "licenseId": "copyleft-next-0.3.1", + "seeAlso": [ + "https://github.com/copyleft-next/copyleft-next/blob/master/Releases/copyleft-next-0.3.1" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Cornell-Lossless-JPEG.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Cornell-Lossless-JPEG.json", + "referenceNumber": 542, + "name": "Cornell Lossless JPEG License", + "licenseId": "Cornell-Lossless-JPEG", + "seeAlso": [ + "https://android.googlesource.com/platform/external/dng_sdk/+/refs/heads/master/source/dng_lossless_jpeg.cpp#16", + "https://www.mssl.ucl.ac.uk/~mcrw/src/20050920/proto.h", + "https://gitlab.freedesktop.org/libopenraw/libopenraw/blob/master/lib/ljpegdecompressor.cpp#L32" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CPAL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CPAL-1.0.json", + "referenceNumber": 223, + "name": "Common Public Attribution License 1.0", + "licenseId": "CPAL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/CPAL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CPL-1.0.json", + "referenceNumber": 181, + "name": "Common Public License 1.0", + "licenseId": "CPL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/CPL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/CPOL-1.02.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CPOL-1.02.json", + "referenceNumber": 176, + "name": "Code Project Open License 1.02", + "licenseId": "CPOL-1.02", + "seeAlso": [ + "http://www.codeproject.com/info/cpol10.aspx" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/Cronyx.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Cronyx.json", + "referenceNumber": 303, + "name": "Cronyx License", + "licenseId": "Cronyx", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/font/alias/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/font/cronyx-cyrillic/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/font/misc-cyrillic/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/font/screen-cyrillic/-/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Crossword.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Crossword.json", + "referenceNumber": 304, + "name": "Crossword License", + "licenseId": "Crossword", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Crossword" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CrystalStacker.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CrystalStacker.json", + "referenceNumber": 522, + "name": "CrystalStacker License", + "licenseId": "CrystalStacker", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:CrystalStacker?rd\u003dLicensing/CrystalStacker" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/CUA-OPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/CUA-OPL-1.0.json", + "referenceNumber": 313, + "name": "CUA Office Public License v1.0", + "licenseId": "CUA-OPL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/CUA-OPL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Cube.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Cube.json", + "referenceNumber": 126, + "name": "Cube License", + "licenseId": "Cube", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Cube" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/curl.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/curl.json", + "referenceNumber": 429, + "name": "curl License", + "licenseId": "curl", + "seeAlso": [ + "https://github.com/bagder/curl/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/D-FSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/D-FSL-1.0.json", + "referenceNumber": 31, + "name": "Deutsche Freie Software Lizenz", + "licenseId": "D-FSL-1.0", + "seeAlso": [ + "http://www.dipp.nrw.de/d-fsl/lizenzen/", + "http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/de/D-FSL-1_0_de.txt", + "http://www.dipp.nrw.de/d-fsl/index_html/lizenzen/en/D-FSL-1_0_en.txt", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/deutsche-freie-software-lizenz", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/german-free-software-license", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_de.txt/at_download/file", + "https://www.hbz-nrw.de/produkte/open-access/lizenzen/dfsl/D-FSL-1_0_en.txt/at_download/file" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DEC-3-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DEC-3-Clause.json", + "referenceNumber": 620, + "name": "DEC 3-Clause License", + "licenseId": "DEC-3-Clause", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/xserver/-/blob/master/COPYING?ref_type\u003dheads#L239" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/diffmark.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/diffmark.json", + "referenceNumber": 365, + "name": "diffmark license", + "licenseId": "diffmark", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/diffmark" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DL-DE-BY-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DL-DE-BY-2.0.json", + "referenceNumber": 363, + "name": "Data licence Germany – attribution – version 2.0", + "licenseId": "DL-DE-BY-2.0", + "seeAlso": [ + "https://www.govdata.de/dl-de/by-2-0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DL-DE-ZERO-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DL-DE-ZERO-2.0.json", + "referenceNumber": 497, + "name": "Data licence Germany – zero – version 2.0", + "licenseId": "DL-DE-ZERO-2.0", + "seeAlso": [ + "https://www.govdata.de/dl-de/zero-2-0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DOC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DOC.json", + "referenceNumber": 82, + "name": "DOC License", + "licenseId": "DOC", + "seeAlso": [ + "http://www.cs.wustl.edu/~schmidt/ACE-copying.html", + "https://www.dre.vanderbilt.edu/~schmidt/ACE-copying.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Dotseqn.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Dotseqn.json", + "referenceNumber": 148, + "name": "Dotseqn License", + "licenseId": "Dotseqn", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Dotseqn" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DRL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DRL-1.0.json", + "referenceNumber": 623, + "name": "Detection Rule License 1.0", + "licenseId": "DRL-1.0", + "seeAlso": [ + "https://github.com/Neo23x0/sigma/blob/master/LICENSE.Detection.Rules.md" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DRL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DRL-1.1.json", + "referenceNumber": 259, + "name": "Detection Rule License 1.1", + "licenseId": "DRL-1.1", + "seeAlso": [ + "https://github.com/SigmaHQ/Detection-Rule-License/blob/6ec7fbde6101d101b5b5d1fcb8f9b69fbc76c04a/LICENSE.Detection.Rules.md" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/DSDP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/DSDP.json", + "referenceNumber": 549, + "name": "DSDP License", + "licenseId": "DSDP", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/DSDP" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/dtoa.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/dtoa.json", + "referenceNumber": 74, + "name": "David M. Gay dtoa License", + "licenseId": "dtoa", + "seeAlso": [ + "https://github.com/SWI-Prolog/swipl-devel/blob/master/src/os/dtoa.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/dvipdfm.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/dvipdfm.json", + "referenceNumber": 309, + "name": "dvipdfm License", + "licenseId": "dvipdfm", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/dvipdfm" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ECL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ECL-1.0.json", + "referenceNumber": 40, + "name": "Educational Community License v1.0", + "licenseId": "ECL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/ECL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/ECL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ECL-2.0.json", + "referenceNumber": 224, + "name": "Educational Community License v2.0", + "licenseId": "ECL-2.0", + "seeAlso": [ + "https://opensource.org/licenses/ECL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/eCos-2.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/eCos-2.0.json", + "referenceNumber": 173, + "name": "eCos license version 2.0", + "licenseId": "eCos-2.0", + "seeAlso": [ + "https://www.gnu.org/licenses/ecos-license.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/EFL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EFL-1.0.json", + "referenceNumber": 329, + "name": "Eiffel Forum License v1.0", + "licenseId": "EFL-1.0", + "seeAlso": [ + "http://www.eiffel-nice.org/license/forum.txt", + "https://opensource.org/licenses/EFL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/EFL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EFL-2.0.json", + "referenceNumber": 535, + "name": "Eiffel Forum License v2.0", + "licenseId": "EFL-2.0", + "seeAlso": [ + "http://www.eiffel-nice.org/license/eiffel-forum-license-2.html", + "https://opensource.org/licenses/EFL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/eGenix.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/eGenix.json", + "referenceNumber": 102, + "name": "eGenix.com Public License 1.1.0", + "licenseId": "eGenix", + "seeAlso": [ + "http://www.egenix.com/products/eGenix.com-Public-License-1.1.0.pdf", + "https://fedoraproject.org/wiki/Licensing/eGenix.com_Public_License_1.1.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Elastic-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Elastic-2.0.json", + "referenceNumber": 21, + "name": "Elastic License 2.0", + "licenseId": "Elastic-2.0", + "seeAlso": [ + "https://www.elastic.co/licensing/elastic-license", + "https://github.com/elastic/elasticsearch/blob/master/licenses/ELASTIC-LICENSE-2.0.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Entessa.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Entessa.json", + "referenceNumber": 87, + "name": "Entessa Public License v1.0", + "licenseId": "Entessa", + "seeAlso": [ + "https://opensource.org/licenses/Entessa" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/EPICS.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EPICS.json", + "referenceNumber": 523, + "name": "EPICS Open License", + "licenseId": "EPICS", + "seeAlso": [ + "https://epics.anl.gov/license/open.php" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/EPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EPL-1.0.json", + "referenceNumber": 229, + "name": "Eclipse Public License 1.0", + "licenseId": "EPL-1.0", + "seeAlso": [ + "http://www.eclipse.org/legal/epl-v10.html", + "https://opensource.org/licenses/EPL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/EPL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EPL-2.0.json", + "referenceNumber": 143, + "name": "Eclipse Public License 2.0", + "licenseId": "EPL-2.0", + "seeAlso": [ + "https://www.eclipse.org/legal/epl-2.0", + "https://www.opensource.org/licenses/EPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ErlPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ErlPL-1.1.json", + "referenceNumber": 592, + "name": "Erlang Public License v1.1", + "licenseId": "ErlPL-1.1", + "seeAlso": [ + "http://www.erlang.org/EPLICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/etalab-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/etalab-2.0.json", + "referenceNumber": 299, + "name": "Etalab Open License 2.0", + "licenseId": "etalab-2.0", + "seeAlso": [ + "https://github.com/DISIC/politique-de-contribution-open-source/blob/master/LICENSE.pdf", + "https://raw.githubusercontent.com/DISIC/politique-de-contribution-open-source/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/EUDatagrid.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EUDatagrid.json", + "referenceNumber": 191, + "name": "EU DataGrid Software License", + "licenseId": "EUDatagrid", + "seeAlso": [ + "http://eu-datagrid.web.cern.ch/eu-datagrid/license.html", + "https://opensource.org/licenses/EUDatagrid" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/EUPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EUPL-1.0.json", + "referenceNumber": 392, + "name": "European Union Public License 1.0", + "licenseId": "EUPL-1.0", + "seeAlso": [ + "http://ec.europa.eu/idabc/en/document/7330.html", + "http://ec.europa.eu/idabc/servlets/Doc027f.pdf?id\u003d31096" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/EUPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EUPL-1.1.json", + "referenceNumber": 26, + "name": "European Union Public License 1.1", + "licenseId": "EUPL-1.1", + "seeAlso": [ + "https://joinup.ec.europa.eu/software/page/eupl/licence-eupl", + "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl1.1.-licence-en_0.pdf", + "https://opensource.org/licenses/EUPL-1.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/EUPL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/EUPL-1.2.json", + "referenceNumber": 34, + "name": "European Union Public License 1.2", + "licenseId": "EUPL-1.2", + "seeAlso": [ + "https://joinup.ec.europa.eu/page/eupl-text-11-12", + "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/eupl_v1.2_en.pdf", + "https://joinup.ec.europa.eu/sites/default/files/custom-page/attachment/2020-03/EUPL-1.2%20EN.txt", + "https://joinup.ec.europa.eu/sites/default/files/inline-files/EUPL%20v1_2%20EN(1).txt", + "http://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri\u003dCELEX:32017D0863", + "https://opensource.org/licenses/EUPL-1.2" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Eurosym.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Eurosym.json", + "referenceNumber": 584, + "name": "Eurosym License", + "licenseId": "Eurosym", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Eurosym" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Fair.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Fair.json", + "referenceNumber": 93, + "name": "Fair License", + "licenseId": "Fair", + "seeAlso": [ + "https://web.archive.org/web/20150926120323/http://fairlicense.org/", + "https://opensource.org/licenses/Fair" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/FBM.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FBM.json", + "referenceNumber": 227, + "name": "Fuzzy Bitmap License", + "licenseId": "FBM", + "seeAlso": [ + "https://github.com/SWI-Prolog/packages-xpce/blob/161a40cd82004f731ba48024f9d30af388a7edf5/src/img/gifwrite.c#L21-L26" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FDK-AAC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FDK-AAC.json", + "referenceNumber": 323, + "name": "Fraunhofer FDK AAC Codec Library", + "licenseId": "FDK-AAC", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/FDK-AAC", + "https://directory.fsf.org/wiki/License:Fdk" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Ferguson-Twofish.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Ferguson-Twofish.json", + "referenceNumber": 447, + "name": "Ferguson Twofish License", + "licenseId": "Ferguson-Twofish", + "seeAlso": [ + "https://github.com/wernerd/ZRTPCPP/blob/6b3cd8e6783642292bad0c21e3e5e5ce45ff3e03/cryptcommon/twofish.c#L113C3-L127" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Frameworx-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Frameworx-1.0.json", + "referenceNumber": 152, + "name": "Frameworx Open License 1.0", + "licenseId": "Frameworx-1.0", + "seeAlso": [ + "https://opensource.org/licenses/Frameworx-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/FreeBSD-DOC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FreeBSD-DOC.json", + "referenceNumber": 73, + "name": "FreeBSD Documentation License", + "licenseId": "FreeBSD-DOC", + "seeAlso": [ + "https://www.freebsd.org/copyright/freebsd-doc-license/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FreeImage.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FreeImage.json", + "referenceNumber": 131, + "name": "FreeImage Public License v1.0", + "licenseId": "FreeImage", + "seeAlso": [ + "http://freeimage.sourceforge.net/freeimage-license.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FSFAP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FSFAP.json", + "referenceNumber": 273, + "name": "FSF All Permissive License", + "licenseId": "FSFAP", + "seeAlso": [ + "https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/FSFAP-no-warranty-disclaimer.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FSFAP-no-warranty-disclaimer.json", + "referenceNumber": 67, + "name": "FSF All Permissive License (without Warranty)", + "licenseId": "FSFAP-no-warranty-disclaimer", + "seeAlso": [ + "https://git.savannah.gnu.org/cgit/wget.git/tree/util/trunc.c?h\u003dv1.21.3\u0026id\u003d40747a11e44ced5a8ac628a41f879ced3e2ebce9#n6" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FSFUL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FSFUL.json", + "referenceNumber": 577, + "name": "FSF Unlimited License", + "licenseId": "FSFUL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FSFULLR.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FSFULLR.json", + "referenceNumber": 96, + "name": "FSF Unlimited License (with License Retention)", + "licenseId": "FSFULLR", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/FSF_Unlimited_License#License_Retention_Variant" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FSFULLRWD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FSFULLRWD.json", + "referenceNumber": 456, + "name": "FSF Unlimited License (With License Retention and Warranty Disclaimer)", + "licenseId": "FSFULLRWD", + "seeAlso": [ + "https://lists.gnu.org/archive/html/autoconf/2012-04/msg00061.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/FTL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/FTL.json", + "referenceNumber": 519, + "name": "Freetype Project License", + "licenseId": "FTL", + "seeAlso": [ + "http://freetype.fis.uniroma2.it/FTL.TXT", + "http://git.savannah.gnu.org/cgit/freetype/freetype2.git/tree/docs/FTL.TXT", + "http://gitlab.freedesktop.org/freetype/freetype/-/raw/master/docs/FTL.TXT" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Furuseth.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Furuseth.json", + "referenceNumber": 604, + "name": "Furuseth License", + "licenseId": "Furuseth", + "seeAlso": [ + "https://git.openldap.org/openldap/openldap/-/blob/master/COPYRIGHT?ref_type\u003dheads#L39-51" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/fwlw.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/fwlw.json", + "referenceNumber": 258, + "name": "fwlw License", + "licenseId": "fwlw", + "seeAlso": [ + "https://mirrors.nic.cz/tex-archive/macros/latex/contrib/fwlw/README" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GCR-docs.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GCR-docs.json", + "referenceNumber": 155, + "name": "Gnome GCR Documentation License", + "licenseId": "GCR-docs", + "seeAlso": [ + "https://github.com/GNOME/gcr/blob/master/docs/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GD.json", + "referenceNumber": 92, + "name": "GD License", + "licenseId": "GD", + "seeAlso": [ + "https://libgd.github.io/manuals/2.3.0/files/license-txt.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1.json", + "referenceNumber": 195, + "name": "GNU Free Documentation License v1.1", + "licenseId": "GFDL-1.1", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1-invariants-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-invariants-only.json", + "referenceNumber": 346, + "name": "GNU Free Documentation License v1.1 only - invariants", + "licenseId": "GFDL-1.1-invariants-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1-invariants-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-invariants-or-later.json", + "referenceNumber": 269, + "name": "GNU Free Documentation License v1.1 or later - invariants", + "licenseId": "GFDL-1.1-invariants-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1-no-invariants-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-no-invariants-only.json", + "referenceNumber": 6, + "name": "GNU Free Documentation License v1.1 only - no invariants", + "licenseId": "GFDL-1.1-no-invariants-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-no-invariants-or-later.json", + "referenceNumber": 7, + "name": "GNU Free Documentation License v1.1 or later - no invariants", + "licenseId": "GFDL-1.1-no-invariants-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-only.json", + "referenceNumber": 264, + "name": "GNU Free Documentation License v1.1 only", + "licenseId": "GFDL-1.1-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.1-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.1-or-later.json", + "referenceNumber": 196, + "name": "GNU Free Documentation License v1.1 or later", + "licenseId": "GFDL-1.1-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.1.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2.json", + "referenceNumber": 97, + "name": "GNU Free Documentation License v1.2", + "licenseId": "GFDL-1.2", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2-invariants-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-invariants-only.json", + "referenceNumber": 611, + "name": "GNU Free Documentation License v1.2 only - invariants", + "licenseId": "GFDL-1.2-invariants-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2-invariants-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-invariants-or-later.json", + "referenceNumber": 464, + "name": "GNU Free Documentation License v1.2 or later - invariants", + "licenseId": "GFDL-1.2-invariants-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2-no-invariants-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-no-invariants-only.json", + "referenceNumber": 75, + "name": "GNU Free Documentation License v1.2 only - no invariants", + "licenseId": "GFDL-1.2-no-invariants-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-no-invariants-or-later.json", + "referenceNumber": 14, + "name": "GNU Free Documentation License v1.2 or later - no invariants", + "licenseId": "GFDL-1.2-no-invariants-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-only.json", + "referenceNumber": 322, + "name": "GNU Free Documentation License v1.2 only", + "licenseId": "GFDL-1.2-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.2-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.2-or-later.json", + "referenceNumber": 594, + "name": "GNU Free Documentation License v1.2 or later", + "licenseId": "GFDL-1.2-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/fdl-1.2.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3.json", + "referenceNumber": 538, + "name": "GNU Free Documentation License v1.3", + "licenseId": "GFDL-1.3", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3-invariants-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-invariants-only.json", + "referenceNumber": 571, + "name": "GNU Free Documentation License v1.3 only - invariants", + "licenseId": "GFDL-1.3-invariants-only", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3-invariants-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-invariants-or-later.json", + "referenceNumber": 300, + "name": "GNU Free Documentation License v1.3 or later - invariants", + "licenseId": "GFDL-1.3-invariants-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3-no-invariants-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-no-invariants-only.json", + "referenceNumber": 101, + "name": "GNU Free Documentation License v1.3 only - no invariants", + "licenseId": "GFDL-1.3-no-invariants-only", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-no-invariants-or-later.json", + "referenceNumber": 330, + "name": "GNU Free Documentation License v1.3 or later - no invariants", + "licenseId": "GFDL-1.3-no-invariants-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-only.json", + "referenceNumber": 457, + "name": "GNU Free Documentation License v1.3 only", + "licenseId": "GFDL-1.3-only", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GFDL-1.3-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GFDL-1.3-or-later.json", + "referenceNumber": 472, + "name": "GNU Free Documentation License v1.3 or later", + "licenseId": "GFDL-1.3-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/fdl-1.3.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Giftware.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Giftware.json", + "referenceNumber": 449, + "name": "Giftware License", + "licenseId": "Giftware", + "seeAlso": [ + "http://liballeg.org/license.html#allegro-4-the-giftware-license" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GL2PS.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GL2PS.json", + "referenceNumber": 338, + "name": "GL2PS License", + "licenseId": "GL2PS", + "seeAlso": [ + "http://www.geuz.org/gl2ps/COPYING.GL2PS" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Glide.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Glide.json", + "referenceNumber": 215, + "name": "3dfx Glide License", + "licenseId": "Glide", + "seeAlso": [ + "http://www.users.on.net/~triforce/glidexp/COPYING.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Glulxe.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Glulxe.json", + "referenceNumber": 289, + "name": "Glulxe License", + "licenseId": "Glulxe", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Glulxe" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GLWTPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GLWTPL.json", + "referenceNumber": 576, + "name": "Good Luck With That Public License", + "licenseId": "GLWTPL", + "seeAlso": [ + "https://github.com/me-shaon/GLWTPL/commit/da5f6bc734095efbacb442c0b31e33a65b9d6e85" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/gnuplot.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/gnuplot.json", + "referenceNumber": 268, + "name": "gnuplot License", + "licenseId": "gnuplot", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Gnuplot" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-1.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-1.0.json", + "referenceNumber": 601, + "name": "GNU General Public License v1.0 only", + "licenseId": "GPL-1.0", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-1.0+.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-1.0+.json", + "referenceNumber": 442, + "name": "GNU General Public License v1.0 or later", + "licenseId": "GPL-1.0+", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-1.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GPL-1.0-only.json", + "referenceNumber": 527, + "name": "GNU General Public License v1.0 only", + "licenseId": "GPL-1.0-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-1.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GPL-1.0-or-later.json", + "referenceNumber": 0, + "name": "GNU General Public License v1.0 or later", + "licenseId": "GPL-1.0-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-1.0-standalone.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0.json", + "referenceNumber": 473, + "name": "GNU General Public License v2.0 only", + "licenseId": "GPL-2.0", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "https://opensource.org/licenses/GPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0+.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0+.json", + "referenceNumber": 502, + "name": "GNU General Public License v2.0 or later", + "licenseId": "GPL-2.0+", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "https://opensource.org/licenses/GPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-only.json", + "referenceNumber": 404, + "name": "GNU General Public License v2.0 only", + "licenseId": "GPL-2.0-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt", + "https://opensource.org/licenses/GPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-or-later.json", + "referenceNumber": 389, + "name": "GNU General Public License v2.0 or later", + "licenseId": "GPL-2.0-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html", + "https://opensource.org/licenses/GPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.json", + "referenceNumber": 333, + "name": "GNU General Public License v2.0 w/Autoconf exception", + "licenseId": "GPL-2.0-with-autoconf-exception", + "seeAlso": [ + "http://ac-archive.sourceforge.net/doc/copyright.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-with-bison-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-bison-exception.json", + "referenceNumber": 117, + "name": "GNU General Public License v2.0 w/Bison exception", + "licenseId": "GPL-2.0-with-bison-exception", + "seeAlso": [ + "http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id\u003d193d7c7054ba7197b0789e14965b739162319b5e#n141" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.json", + "referenceNumber": 144, + "name": "GNU General Public License v2.0 w/Classpath exception", + "licenseId": "GPL-2.0-with-classpath-exception", + "seeAlso": [ + "https://www.gnu.org/software/classpath/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-with-font-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-font-exception.json", + "referenceNumber": 286, + "name": "GNU General Public License v2.0 w/Font exception", + "licenseId": "GPL-2.0-with-font-exception", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-faq.html#FontException" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.json", + "referenceNumber": 54, + "name": "GNU General Public License v2.0 w/GCC Runtime Library exception", + "licenseId": "GPL-2.0-with-GCC-exception", + "seeAlso": [ + "https://gcc.gnu.org/git/?p\u003dgcc.git;a\u003dblob;f\u003dgcc/libgcc1.c;h\u003d762f5143fc6eed57b6797c82710f3538aa52b40b;hb\u003dcb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-3.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-3.0.json", + "referenceNumber": 233, + "name": "GNU General Public License v3.0 only", + "licenseId": "GPL-3.0", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-3.0-standalone.html", + "https://opensource.org/licenses/GPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-3.0+.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-3.0+.json", + "referenceNumber": 201, + "name": "GNU General Public License v3.0 or later", + "licenseId": "GPL-3.0+", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-3.0-standalone.html", + "https://opensource.org/licenses/GPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-3.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GPL-3.0-only.json", + "referenceNumber": 339, + "name": "GNU General Public License v3.0 only", + "licenseId": "GPL-3.0-only", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-3.0-standalone.html", + "https://opensource.org/licenses/GPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-3.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/GPL-3.0-or-later.json", + "referenceNumber": 109, + "name": "GNU General Public License v3.0 or later", + "licenseId": "GPL-3.0-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-3.0-standalone.html", + "https://opensource.org/licenses/GPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.json", + "referenceNumber": 121, + "name": "GNU General Public License v3.0 w/Autoconf exception", + "licenseId": "GPL-3.0-with-autoconf-exception", + "seeAlso": [ + "https://www.gnu.org/licenses/autoconf-exception-3.0.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.json", + "referenceNumber": 331, + "name": "GNU General Public License v3.0 w/GCC Runtime Library exception", + "licenseId": "GPL-3.0-with-GCC-exception", + "seeAlso": [ + "https://www.gnu.org/licenses/gcc-exception-3.1.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Graphics-Gems.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Graphics-Gems.json", + "referenceNumber": 68, + "name": "Graphics Gems License", + "licenseId": "Graphics-Gems", + "seeAlso": [ + "https://github.com/erich666/GraphicsGems/blob/master/LICENSE.md" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/gSOAP-1.3b.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/gSOAP-1.3b.json", + "referenceNumber": 633, + "name": "gSOAP Public License v1.3b", + "licenseId": "gSOAP-1.3b", + "seeAlso": [ + "http://www.cs.fsu.edu/~engelen/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/gtkbook.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/gtkbook.json", + "referenceNumber": 341, + "name": "gtkbook License", + "licenseId": "gtkbook", + "seeAlso": [ + "https://github.com/slogan621/gtkbook", + "https://github.com/oetiker/rrdtool-1.x/blob/master/src/plbasename.c#L8-L11" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HaskellReport.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HaskellReport.json", + "referenceNumber": 138, + "name": "Haskell Language Report License", + "licenseId": "HaskellReport", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Haskell_Language_Report_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/hdparm.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/hdparm.json", + "referenceNumber": 467, + "name": "hdparm License", + "licenseId": "hdparm", + "seeAlso": [ + "https://github.com/Distrotech/hdparm/blob/4517550db29a91420fb2b020349523b1b4512df2/LICENSE.TXT" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Hippocratic-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Hippocratic-2.1.json", + "referenceNumber": 609, + "name": "Hippocratic License 2.1", + "licenseId": "Hippocratic-2.1", + "seeAlso": [ + "https://firstdonoharm.dev/version/2/1/license.html", + "https://github.com/EthicalSource/hippocratic-license/blob/58c0e646d64ff6fbee275bfe2b9492f914e3ab2a/LICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HP-1986.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HP-1986.json", + "referenceNumber": 39, + "name": "Hewlett-Packard 1986 License", + "licenseId": "HP-1986", + "seeAlso": [ + "https://sourceware.org/git/?p\u003dnewlib-cygwin.git;a\u003dblob;f\u003dnewlib/libc/machine/hppa/memchr.S;h\u003d1cca3e5e8867aa4bffef1f75a5c1bba25c0c441e;hb\u003dHEAD#l2" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HP-1989.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HP-1989.json", + "referenceNumber": 578, + "name": "Hewlett-Packard 1989 License", + "licenseId": "HP-1989", + "seeAlso": [ + "https://github.com/bleargh45/Data-UUID/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND.json", + "referenceNumber": 624, + "name": "Historical Permission Notice and Disclaimer", + "licenseId": "HPND", + "seeAlso": [ + "https://opensource.org/licenses/HPND", + "http://lists.opensource.org/pipermail/license-discuss_lists.opensource.org/2002-November/006304.html" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/HPND-DEC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-DEC.json", + "referenceNumber": 115, + "name": "Historical Permission Notice and Disclaimer - DEC variant", + "licenseId": "HPND-DEC", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/app/xkbcomp/-/blob/master/COPYING?ref_type\u003dheads#L69" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-doc.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-doc.json", + "referenceNumber": 30, + "name": "Historical Permission Notice and Disclaimer - documentation variant", + "licenseId": "HPND-doc", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/lib/libxext/-/blob/master/COPYING?ref_type\u003dheads#L185-197", + "https://gitlab.freedesktop.org/xorg/lib/libxtst/-/blob/master/COPYING?ref_type\u003dheads#L70-77" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-doc-sell.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-doc-sell.json", + "referenceNumber": 184, + "name": "Historical Permission Notice and Disclaimer - documentation sell variant", + "licenseId": "HPND-doc-sell", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/lib/libxtst/-/blob/master/COPYING?ref_type\u003dheads#L108-117", + "https://gitlab.freedesktop.org/xorg/lib/libxext/-/blob/master/COPYING?ref_type\u003dheads#L153-162" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-export-US.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-export-US.json", + "referenceNumber": 336, + "name": "HPND with US Government export control warning", + "licenseId": "HPND-export-US", + "seeAlso": [ + "https://www.kermitproject.org/ck90.html#source" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-export-US-modify.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-export-US-modify.json", + "referenceNumber": 261, + "name": "HPND with US Government export control warning and modification rqmt", + "licenseId": "HPND-export-US-modify", + "seeAlso": [ + "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L1157-L1182", + "https://github.com/pythongssapi/k5test/blob/v0.10.3/K5TEST-LICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-Fenneberg-Livingston.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-Fenneberg-Livingston.json", + "referenceNumber": 305, + "name": "Historical Permission Notice and Disclaimer - Fenneberg-Livingston variant", + "licenseId": "HPND-Fenneberg-Livingston", + "seeAlso": [ + "https://github.com/FreeRADIUS/freeradius-client/blob/master/COPYRIGHT#L32", + "https://github.com/radcli/radcli/blob/master/COPYRIGHT#L34" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-INRIA-IMAG.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-INRIA-IMAG.json", + "referenceNumber": 10, + "name": "Historical Permission Notice and Disclaimer - INRIA-IMAG variant", + "licenseId": "HPND-INRIA-IMAG", + "seeAlso": [ + "https://github.com/ppp-project/ppp/blob/master/pppd/ipv6cp.c#L75-L83" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-Kevlin-Henney.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-Kevlin-Henney.json", + "referenceNumber": 462, + "name": "Historical Permission Notice and Disclaimer - Kevlin Henney variant", + "licenseId": "HPND-Kevlin-Henney", + "seeAlso": [ + "https://github.com/mruby/mruby/blob/83d12f8d52522cdb7c8cc46fad34821359f453e6/mrbgems/mruby-dir/src/Win/dirent.c#L127-L140" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-Markus-Kuhn.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-Markus-Kuhn.json", + "referenceNumber": 367, + "name": "Historical Permission Notice and Disclaimer - Markus Kuhn variant", + "licenseId": "HPND-Markus-Kuhn", + "seeAlso": [ + "https://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c", + "https://sourceware.org/git/?p\u003dbinutils-gdb.git;a\u003dblob;f\u003dreadline/readline/support/wcwidth.c;h\u003d0f5ec995796f4813abbcf4972aec0378ab74722a;hb\u003dHEAD#l55" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-MIT-disclaimer.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-MIT-disclaimer.json", + "referenceNumber": 345, + "name": "Historical Permission Notice and Disclaimer with MIT disclaimer", + "licenseId": "HPND-MIT-disclaimer", + "seeAlso": [ + "https://metacpan.org/release/NLNETLABS/Net-DNS-SEC-1.22/source/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-Pbmplus.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-Pbmplus.json", + "referenceNumber": 204, + "name": "Historical Permission Notice and Disclaimer - Pbmplus variant", + "licenseId": "HPND-Pbmplus", + "seeAlso": [ + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/netpbm.c#l8" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-sell-MIT-disclaimer-xserver.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-sell-MIT-disclaimer-xserver.json", + "referenceNumber": 532, + "name": "Historical Permission Notice and Disclaimer - sell xserver variant with MIT disclaimer", + "licenseId": "HPND-sell-MIT-disclaimer-xserver", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/xserver/-/blob/master/COPYING?ref_type\u003dheads#L1781" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-sell-regexpr.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-sell-regexpr.json", + "referenceNumber": 572, + "name": "Historical Permission Notice and Disclaimer - sell regexpr variant", + "licenseId": "HPND-sell-regexpr", + "seeAlso": [ + "https://gitlab.com/bacula-org/bacula/-/blob/Branch-11.0/bacula/LICENSE-FOSS?ref_type\u003dheads#L245" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-sell-variant.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-sell-variant.json", + "referenceNumber": 414, + "name": "Historical Permission Notice and Disclaimer - sell variant", + "licenseId": "HPND-sell-variant", + "seeAlso": [ + "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/net/sunrpc/auth_gss/gss_generic_token.c?h\u003dv4.19" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-sell-variant-MIT-disclaimer.json", + "referenceNumber": 51, + "name": "HPND sell variant with MIT disclaimer", + "licenseId": "HPND-sell-variant-MIT-disclaimer", + "seeAlso": [ + "https://github.com/sigmavirus24/x11-ssh-askpass/blob/master/README" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HPND-UC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HPND-UC.json", + "referenceNumber": 107, + "name": "Historical Permission Notice and Disclaimer - University of California variant", + "licenseId": "HPND-UC", + "seeAlso": [ + "https://core.tcl-lang.org/tk/file?name\u003dcompat/unistd.h" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/HTMLTIDY.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/HTMLTIDY.json", + "referenceNumber": 474, + "name": "HTML Tidy License", + "licenseId": "HTMLTIDY", + "seeAlso": [ + "https://github.com/htacg/tidy-html5/blob/next/README/LICENSE.md" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/IBM-pibs.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/IBM-pibs.json", + "referenceNumber": 417, + "name": "IBM PowerPC Initialization and Boot Software", + "licenseId": "IBM-pibs", + "seeAlso": [ + "http://git.denx.de/?p\u003du-boot.git;a\u003dblob;f\u003darch/powerpc/cpu/ppc4xx/miiphy.c;h\u003d297155fdafa064b955e53e9832de93bfb0cfb85b;hb\u003d9fab4bf4cc077c21e43941866f3f2c196f28670d" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ICU.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ICU.json", + "referenceNumber": 153, + "name": "ICU License", + "licenseId": "ICU", + "seeAlso": [ + "http://source.icu-project.org/repos/icu/icu/trunk/license.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/IEC-Code-Components-EULA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/IEC-Code-Components-EULA.json", + "referenceNumber": 481, + "name": "IEC Code Components End-user licence agreement", + "licenseId": "IEC-Code-Components-EULA", + "seeAlso": [ + "https://www.iec.ch/webstore/custserv/pdf/CC-EULA.pdf", + "https://www.iec.ch/CCv1", + "https://www.iec.ch/copyright" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/IJG.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/IJG.json", + "referenceNumber": 90, + "name": "Independent JPEG Group License", + "licenseId": "IJG", + "seeAlso": [ + "http://dev.w3.org/cvsweb/Amaya/libjpeg/Attic/README?rev\u003d1.2" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/IJG-short.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/IJG-short.json", + "referenceNumber": 520, + "name": "Independent JPEG Group License - short", + "licenseId": "IJG-short", + "seeAlso": [ + "https://sourceforge.net/p/xmedcon/code/ci/master/tree/libs/ljpg/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ImageMagick.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ImageMagick.json", + "referenceNumber": 557, + "name": "ImageMagick License", + "licenseId": "ImageMagick", + "seeAlso": [ + "http://www.imagemagick.org/script/license.php" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/iMatix.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/iMatix.json", + "referenceNumber": 307, + "name": "iMatix Standard Function Library Agreement", + "licenseId": "iMatix", + "seeAlso": [ + "http://legacy.imatix.com/html/sfl/sfl4.htm#license" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Imlib2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Imlib2.json", + "referenceNumber": 280, + "name": "Imlib2 License", + "licenseId": "Imlib2", + "seeAlso": [ + "http://trac.enlightenment.org/e/browser/trunk/imlib2/COPYING", + "https://git.enlightenment.org/legacy/imlib2.git/tree/COPYING" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Info-ZIP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Info-ZIP.json", + "referenceNumber": 136, + "name": "Info-ZIP License", + "licenseId": "Info-ZIP", + "seeAlso": [ + "http://www.info-zip.org/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Inner-Net-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Inner-Net-2.0.json", + "referenceNumber": 277, + "name": "Inner Net License v2.0", + "licenseId": "Inner-Net-2.0", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Inner_Net_License", + "https://sourceware.org/git/?p\u003dglibc.git;a\u003dblob;f\u003dLICENSES;h\u003d530893b1dc9ea00755603c68fb36bd4fc38a7be8;hb\u003dHEAD#l207" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Intel.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Intel.json", + "referenceNumber": 187, + "name": "Intel Open Source License", + "licenseId": "Intel", + "seeAlso": [ + "https://opensource.org/licenses/Intel" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Intel-ACPI.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Intel-ACPI.json", + "referenceNumber": 554, + "name": "Intel ACPI Software License Agreement", + "licenseId": "Intel-ACPI", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Intel_ACPI_Software_License_Agreement" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Interbase-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Interbase-1.0.json", + "referenceNumber": 632, + "name": "Interbase Public License v1.0", + "licenseId": "Interbase-1.0", + "seeAlso": [ + "https://web.archive.org/web/20060319014854/http://info.borland.com/devsupport/interbase/opensource/IPL.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/IPA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/IPA.json", + "referenceNumber": 411, + "name": "IPA Font License", + "licenseId": "IPA", + "seeAlso": [ + "https://opensource.org/licenses/IPA" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/IPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/IPL-1.0.json", + "referenceNumber": 508, + "name": "IBM Public License v1.0", + "licenseId": "IPL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/IPL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ISC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ISC.json", + "referenceNumber": 483, + "name": "ISC License", + "licenseId": "ISC", + "seeAlso": [ + "https://www.isc.org/licenses/", + "https://www.isc.org/downloads/software-support-policy/isc-license/", + "https://opensource.org/licenses/ISC" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ISC-Veillard.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ISC-Veillard.json", + "referenceNumber": 446, + "name": "ISC Veillard variant", + "licenseId": "ISC-Veillard", + "seeAlso": [ + "https://raw.githubusercontent.com/GNOME/libxml2/4c2e7c651f6c2f0d1a74f350cbda95f7df3e7017/hash.c", + "https://github.com/GNOME/libxml2/blob/master/dict.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Jam.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Jam.json", + "referenceNumber": 4, + "name": "Jam License", + "licenseId": "Jam", + "seeAlso": [ + "https://www.boost.org/doc/libs/1_35_0/doc/html/jam.html", + "https://web.archive.org/web/20160330173339/https://swarm.workshop.perforce.com/files/guest/perforce_software/jam/src/README" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/JasPer-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/JasPer-2.0.json", + "referenceNumber": 593, + "name": "JasPer License", + "licenseId": "JasPer-2.0", + "seeAlso": [ + "http://www.ece.uvic.ca/~mdadams/jasper/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/JPL-image.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/JPL-image.json", + "referenceNumber": 379, + "name": "JPL Image Use Policy", + "licenseId": "JPL-image", + "seeAlso": [ + "https://www.jpl.nasa.gov/jpl-image-use-policy" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/JPNIC.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/JPNIC.json", + "referenceNumber": 103, + "name": "Japan Network Information Center License", + "licenseId": "JPNIC", + "seeAlso": [ + "https://gitlab.isc.org/isc-projects/bind9/blob/master/COPYRIGHT#L366" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/JSON.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/JSON.json", + "referenceNumber": 219, + "name": "JSON License", + "licenseId": "JSON", + "seeAlso": [ + "http://www.json.org/license.html" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/Kastrup.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Kastrup.json", + "referenceNumber": 406, + "name": "Kastrup License", + "licenseId": "Kastrup", + "seeAlso": [ + "https://ctan.math.utah.edu/ctan/tex-archive/macros/generic/kastrup/binhex.dtx" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Kazlib.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Kazlib.json", + "referenceNumber": 257, + "name": "Kazlib License", + "licenseId": "Kazlib", + "seeAlso": [ + "http://git.savannah.gnu.org/cgit/kazlib.git/tree/except.c?id\u003d0062df360c2d17d57f6af19b0e444c51feb99036" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Knuth-CTAN.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Knuth-CTAN.json", + "referenceNumber": 514, + "name": "Knuth CTAN License", + "licenseId": "Knuth-CTAN", + "seeAlso": [ + "https://ctan.org/license/knuth" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LAL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LAL-1.2.json", + "referenceNumber": 621, + "name": "Licence Art Libre 1.2", + "licenseId": "LAL-1.2", + "seeAlso": [ + "http://artlibre.org/licence/lal/licence-art-libre-12/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LAL-1.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LAL-1.3.json", + "referenceNumber": 182, + "name": "Licence Art Libre 1.3", + "licenseId": "LAL-1.3", + "seeAlso": [ + "https://artlibre.org/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Latex2e.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Latex2e.json", + "referenceNumber": 254, + "name": "Latex2e License", + "licenseId": "Latex2e", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Latex2e" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Latex2e-translated-notice.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Latex2e-translated-notice.json", + "referenceNumber": 435, + "name": "Latex2e with translated notice permission", + "licenseId": "Latex2e-translated-notice", + "seeAlso": [ + "https://git.savannah.gnu.org/cgit/indent.git/tree/doc/indent.texi?id\u003da74c6b4ee49397cf330b333da1042bffa60ed14f#n74" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Leptonica.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Leptonica.json", + "referenceNumber": 294, + "name": "Leptonica License", + "licenseId": "Leptonica", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Leptonica" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.0.json", + "referenceNumber": 452, + "name": "GNU Library General Public License v2 only", + "licenseId": "LGPL-2.0", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.0+.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.0+.json", + "referenceNumber": 342, + "name": "GNU Library General Public License v2 or later", + "licenseId": "LGPL-2.0+", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.0-only.json", + "referenceNumber": 563, + "name": "GNU Library General Public License v2 only", + "licenseId": "LGPL-2.0-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.0-or-later.json", + "referenceNumber": 575, + "name": "GNU Library General Public License v2 or later", + "licenseId": "LGPL-2.0-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.0-standalone.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.1.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.1.json", + "referenceNumber": 394, + "name": "GNU Lesser General Public License v2.1 only", + "licenseId": "LGPL-2.1", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", + "https://opensource.org/licenses/LGPL-2.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.1+.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.1+.json", + "referenceNumber": 12, + "name": "GNU Lesser General Public License v2.1 or later", + "licenseId": "LGPL-2.1+", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", + "https://opensource.org/licenses/LGPL-2.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.1-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.1-only.json", + "referenceNumber": 180, + "name": "GNU Lesser General Public License v2.1 only", + "licenseId": "LGPL-2.1-only", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", + "https://opensource.org/licenses/LGPL-2.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-2.1-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPL-2.1-or-later.json", + "referenceNumber": 422, + "name": "GNU Lesser General Public License v2.1 or later", + "licenseId": "LGPL-2.1-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/old-licenses/lgpl-2.1-standalone.html", + "https://opensource.org/licenses/LGPL-2.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-3.0.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/LGPL-3.0.json", + "referenceNumber": 636, + "name": "GNU Lesser General Public License v3.0 only", + "licenseId": "LGPL-3.0", + "seeAlso": [ + "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", + "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", + "https://opensource.org/licenses/LGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-3.0+.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/LGPL-3.0+.json", + "referenceNumber": 255, + "name": "GNU Lesser General Public License v3.0 or later", + "licenseId": "LGPL-3.0+", + "seeAlso": [ + "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", + "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", + "https://opensource.org/licenses/LGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-3.0-only.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPL-3.0-only.json", + "referenceNumber": 83, + "name": "GNU Lesser General Public License v3.0 only", + "licenseId": "LGPL-3.0-only", + "seeAlso": [ + "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", + "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", + "https://opensource.org/licenses/LGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPL-3.0-or-later.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPL-3.0-or-later.json", + "referenceNumber": 396, + "name": "GNU Lesser General Public License v3.0 or later", + "licenseId": "LGPL-3.0-or-later", + "seeAlso": [ + "https://www.gnu.org/licenses/lgpl-3.0-standalone.html", + "https://www.gnu.org/licenses/lgpl+gpl-3.0.txt", + "https://opensource.org/licenses/LGPL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LGPLLR.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LGPLLR.json", + "referenceNumber": 135, + "name": "Lesser General Public License For Linguistic Resources", + "licenseId": "LGPLLR", + "seeAlso": [ + "http://www-igm.univ-mlv.fr/~unitex/lgpllr.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Libpng.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Libpng.json", + "referenceNumber": 140, + "name": "libpng License", + "licenseId": "Libpng", + "seeAlso": [ + "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/libpng-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/libpng-2.0.json", + "referenceNumber": 212, + "name": "PNG Reference Library version 2", + "licenseId": "libpng-2.0", + "seeAlso": [ + "http://www.libpng.org/pub/png/src/libpng-LICENSE.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/libselinux-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/libselinux-1.0.json", + "referenceNumber": 266, + "name": "libselinux public domain notice", + "licenseId": "libselinux-1.0", + "seeAlso": [ + "https://github.com/SELinuxProject/selinux/blob/master/libselinux/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/libtiff.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/libtiff.json", + "referenceNumber": 20, + "name": "libtiff License", + "licenseId": "libtiff", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/libtiff" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/libutil-David-Nugent.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/libutil-David-Nugent.json", + "referenceNumber": 393, + "name": "libutil David Nugent License", + "licenseId": "libutil-David-Nugent", + "seeAlso": [ + "http://web.mit.edu/freebsd/head/lib/libutil/login_ok.3", + "https://cgit.freedesktop.org/libbsd/tree/man/setproctitle.3bsd" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LiLiQ-P-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LiLiQ-P-1.1.json", + "referenceNumber": 534, + "name": "Licence Libre du Québec – Permissive version 1.1", + "licenseId": "LiLiQ-P-1.1", + "seeAlso": [ + "https://forge.gouv.qc.ca/licence/fr/liliq-v1-1/", + "http://opensource.org/licenses/LiLiQ-P-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LiLiQ-R-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LiLiQ-R-1.1.json", + "referenceNumber": 65, + "name": "Licence Libre du Québec – Réciprocité version 1.1", + "licenseId": "LiLiQ-R-1.1", + "seeAlso": [ + "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-liliq-r-v1-1/", + "http://opensource.org/licenses/LiLiQ-R-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LiLiQ-Rplus-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LiLiQ-Rplus-1.1.json", + "referenceNumber": 500, + "name": "Licence Libre du Québec – Réciprocité forte version 1.1", + "licenseId": "LiLiQ-Rplus-1.1", + "seeAlso": [ + "https://www.forge.gouv.qc.ca/participez/licence-logicielle/licence-libre-du-quebec-liliq-en-francais/licence-libre-du-quebec-reciprocite-forte-liliq-r-v1-1/", + "http://opensource.org/licenses/LiLiQ-Rplus-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Linux-man-pages-1-para.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-1-para.json", + "referenceNumber": 188, + "name": "Linux man-pages - 1 paragraph", + "licenseId": "Linux-man-pages-1-para", + "seeAlso": [ + "https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/getcpu.2#n4" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Linux-man-pages-copyleft.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-copyleft.json", + "referenceNumber": 496, + "name": "Linux man-pages Copyleft", + "licenseId": "Linux-man-pages-copyleft", + "seeAlso": [ + "https://www.kernel.org/doc/man-pages/licenses.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Linux-man-pages-copyleft-2-para.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-copyleft-2-para.json", + "referenceNumber": 460, + "name": "Linux man-pages Copyleft - 2 paragraphs", + "licenseId": "Linux-man-pages-copyleft-2-para", + "seeAlso": [ + "https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/move_pages.2#n5", + "https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/migrate_pages.2#n8" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Linux-man-pages-copyleft-var.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Linux-man-pages-copyleft-var.json", + "referenceNumber": 105, + "name": "Linux man-pages Copyleft Variant", + "licenseId": "Linux-man-pages-copyleft-var", + "seeAlso": [ + "https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/man2/set_mempolicy.2#n5" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Linux-OpenIB.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Linux-OpenIB.json", + "referenceNumber": 487, + "name": "Linux Kernel Variant of OpenIB.org license", + "licenseId": "Linux-OpenIB", + "seeAlso": [ + "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/infiniband/core/sa.h" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LOOP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LOOP.json", + "referenceNumber": 263, + "name": "Common Lisp LOOP License", + "licenseId": "LOOP", + "seeAlso": [ + "https://gitlab.com/embeddable-common-lisp/ecl/-/blob/develop/src/lsp/loop.lsp", + "http://git.savannah.gnu.org/cgit/gcl.git/tree/gcl/lsp/gcl_loop.lsp?h\u003dVersion_2_6_13pre", + "https://sourceforge.net/p/sbcl/sbcl/ci/master/tree/src/code/loop.lisp", + "https://github.com/cl-adams/adams/blob/master/LICENSE.md", + "https://github.com/blakemcbride/eclipse-lisp/blob/master/lisp/loop.lisp", + "https://gitlab.common-lisp.net/cmucl/cmucl/-/blob/master/src/code/loop.lisp" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LPD-document.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPD-document.json", + "referenceNumber": 271, + "name": "LPD Documentation License", + "licenseId": "LPD-document", + "seeAlso": [ + "https://github.com/Cyan4973/xxHash/blob/dev/doc/xxhash_spec.md", + "https://www.ietf.org/rfc/rfc1952.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPL-1.0.json", + "referenceNumber": 468, + "name": "Lucent Public License Version 1.0", + "licenseId": "LPL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/LPL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/LPL-1.02.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPL-1.02.json", + "referenceNumber": 436, + "name": "Lucent Public License v1.02", + "licenseId": "LPL-1.02", + "seeAlso": [ + "http://plan9.bell-labs.com/plan9/license.html", + "https://opensource.org/licenses/LPL-1.02" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LPPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPPL-1.0.json", + "referenceNumber": 112, + "name": "LaTeX Project Public License v1.0", + "licenseId": "LPPL-1.0", + "seeAlso": [ + "http://www.latex-project.org/lppl/lppl-1-0.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LPPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPPL-1.1.json", + "referenceNumber": 386, + "name": "LaTeX Project Public License v1.1", + "licenseId": "LPPL-1.1", + "seeAlso": [ + "http://www.latex-project.org/lppl/lppl-1-1.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LPPL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPPL-1.2.json", + "referenceNumber": 517, + "name": "LaTeX Project Public License v1.2", + "licenseId": "LPPL-1.2", + "seeAlso": [ + "http://www.latex-project.org/lppl/lppl-1-2.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LPPL-1.3a.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPPL-1.3a.json", + "referenceNumber": 478, + "name": "LaTeX Project Public License v1.3a", + "licenseId": "LPPL-1.3a", + "seeAlso": [ + "http://www.latex-project.org/lppl/lppl-1-3a.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/LPPL-1.3c.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LPPL-1.3c.json", + "referenceNumber": 85, + "name": "LaTeX Project Public License v1.3c", + "licenseId": "LPPL-1.3c", + "seeAlso": [ + "http://www.latex-project.org/lppl/lppl-1-3c.txt", + "https://opensource.org/licenses/LPPL-1.3c" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/lsof.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/lsof.json", + "referenceNumber": 157, + "name": "lsof License", + "licenseId": "lsof", + "seeAlso": [ + "https://github.com/lsof-org/lsof/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Lucida-Bitmap-Fonts.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Lucida-Bitmap-Fonts.json", + "referenceNumber": 62, + "name": "Lucida Bitmap Fonts License", + "licenseId": "Lucida-Bitmap-Fonts", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/font/bh-100dpi/-/blob/master/COPYING?ref_type\u003dheads" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LZMA-SDK-9.11-to-9.20.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LZMA-SDK-9.11-to-9.20.json", + "referenceNumber": 378, + "name": "LZMA SDK License (versions 9.11 to 9.20)", + "licenseId": "LZMA-SDK-9.11-to-9.20", + "seeAlso": [ + "https://www.7-zip.org/sdk.html", + "https://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/LZMA-SDK-9.22.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/LZMA-SDK-9.22.json", + "referenceNumber": 253, + "name": "LZMA SDK License (versions 9.22 and beyond)", + "licenseId": "LZMA-SDK-9.22", + "seeAlso": [ + "https://www.7-zip.org/sdk.html", + "https://sourceforge.net/projects/sevenzip/files/LZMA%20SDK/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Mackerras-3-Clause.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Mackerras-3-Clause.json", + "referenceNumber": 42, + "name": "Mackerras 3-Clause License", + "licenseId": "Mackerras-3-Clause", + "seeAlso": [ + "https://github.com/ppp-project/ppp/blob/master/pppd/chap_ms.c#L6-L28" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Mackerras-3-Clause-acknowledgment.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Mackerras-3-Clause-acknowledgment.json", + "referenceNumber": 605, + "name": "Mackerras 3-Clause - acknowledgment variant", + "licenseId": "Mackerras-3-Clause-acknowledgment", + "seeAlso": [ + "https://github.com/ppp-project/ppp/blob/master/pppd/auth.c#L6-L28" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/magaz.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/magaz.json", + "referenceNumber": 279, + "name": "magaz License", + "licenseId": "magaz", + "seeAlso": [ + "https://mirrors.nic.cz/tex-archive/macros/latex/contrib/magaz/magaz.tex" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/mailprio.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/mailprio.json", + "referenceNumber": 225, + "name": "mailprio License", + "licenseId": "mailprio", + "seeAlso": [ + "https://fossies.org/linux/sendmail/contrib/mailprio" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MakeIndex.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MakeIndex.json", + "referenceNumber": 22, + "name": "MakeIndex License", + "licenseId": "MakeIndex", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MakeIndex" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Martin-Birgmeier.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Martin-Birgmeier.json", + "referenceNumber": 382, + "name": "Martin Birgmeier License", + "licenseId": "Martin-Birgmeier", + "seeAlso": [ + "https://github.com/Perl/perl5/blob/blead/util.c#L6136" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/McPhee-slideshow.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/McPhee-slideshow.json", + "referenceNumber": 288, + "name": "McPhee Slideshow License", + "licenseId": "McPhee-slideshow", + "seeAlso": [ + "https://mirror.las.iastate.edu/tex-archive/graphics/metapost/contrib/macros/slideshow/slideshow.mp" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/metamail.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/metamail.json", + "referenceNumber": 567, + "name": "metamail License", + "licenseId": "metamail", + "seeAlso": [ + "https://github.com/Dual-Life/mime-base64/blob/master/Base64.xs#L12" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Minpack.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Minpack.json", + "referenceNumber": 179, + "name": "Minpack License", + "licenseId": "Minpack", + "seeAlso": [ + "http://www.netlib.org/minpack/disclaimer", + "https://gitlab.com/libeigen/eigen/-/blob/master/COPYING.MINPACK" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MirOS.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MirOS.json", + "referenceNumber": 23, + "name": "The MirOS Licence", + "licenseId": "MirOS", + "seeAlso": [ + "https://opensource.org/licenses/MirOS" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/MIT.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT.json", + "referenceNumber": 124, + "name": "MIT License", + "licenseId": "MIT", + "seeAlso": [ + "https://opensource.org/license/mit/" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/MIT-0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-0.json", + "referenceNumber": 238, + "name": "MIT No Attribution", + "licenseId": "MIT-0", + "seeAlso": [ + "https://github.com/aws/mit-0", + "https://romanrm.net/mit-zero", + "https://github.com/awsdocs/aws-cloud9-user-guide/blob/master/LICENSE-SAMPLECODE" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/MIT-advertising.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-advertising.json", + "referenceNumber": 77, + "name": "Enlightenment License (e16)", + "licenseId": "MIT-advertising", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MIT_With_Advertising" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-CMU.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-CMU.json", + "referenceNumber": 415, + "name": "CMU License", + "licenseId": "MIT-CMU", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:MIT?rd\u003dLicensing/MIT#CMU_Style", + "https://github.com/python-pillow/Pillow/blob/fffb426092c8db24a5f4b6df243a8a3c01fb63cd/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-enna.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-enna.json", + "referenceNumber": 129, + "name": "enna License", + "licenseId": "MIT-enna", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MIT#enna" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-feh.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-feh.json", + "referenceNumber": 37, + "name": "feh License", + "licenseId": "MIT-feh", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MIT#feh" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-Festival.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-Festival.json", + "referenceNumber": 595, + "name": "MIT Festival Variant", + "licenseId": "MIT-Festival", + "seeAlso": [ + "https://github.com/festvox/flite/blob/master/COPYING", + "https://github.com/festvox/speech_tools/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-Modern-Variant.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-Modern-Variant.json", + "referenceNumber": 44, + "name": "MIT License Modern Variant", + "licenseId": "MIT-Modern-Variant", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:MIT#Modern_Variants", + "https://ptolemy.berkeley.edu/copyright.htm", + "https://pirlwww.lpl.arizona.edu/resources/guide/software/PerlTk/Tixlic.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/MIT-open-group.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-open-group.json", + "referenceNumber": 543, + "name": "MIT Open Group variant", + "licenseId": "MIT-open-group", + "seeAlso": [ + "https://gitlab.freedesktop.org/xorg/app/iceauth/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/app/xvinfo/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/app/xsetroot/-/blob/master/COPYING", + "https://gitlab.freedesktop.org/xorg/app/xauth/-/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-testregex.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-testregex.json", + "referenceNumber": 250, + "name": "MIT testregex Variant", + "licenseId": "MIT-testregex", + "seeAlso": [ + "https://github.com/dotnet/runtime/blob/55e1ac7c07df62c4108d4acedf78f77574470ce5/src/libraries/System.Text.RegularExpressions/tests/FunctionalTests/AttRegexTests.cs#L12-L28" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MIT-Wu.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MIT-Wu.json", + "referenceNumber": 608, + "name": "MIT Tom Wu Variant", + "licenseId": "MIT-Wu", + "seeAlso": [ + "https://github.com/chromium/octane/blob/master/crypto.js" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MITNFA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MITNFA.json", + "referenceNumber": 526, + "name": "MIT +no-false-attribs license", + "licenseId": "MITNFA", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MITNFA" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MMIXware.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MMIXware.json", + "referenceNumber": 252, + "name": "MMIXware License", + "licenseId": "MMIXware", + "seeAlso": [ + "https://gitlab.lrz.de/mmix/mmixware/-/blob/master/boilerplate.w" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Motosoto.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Motosoto.json", + "referenceNumber": 448, + "name": "Motosoto License", + "licenseId": "Motosoto", + "seeAlso": [ + "https://opensource.org/licenses/Motosoto" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/MPEG-SSG.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MPEG-SSG.json", + "referenceNumber": 202, + "name": "MPEG Software Simulation", + "licenseId": "MPEG-SSG", + "seeAlso": [ + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/converter/ppm/ppmtompeg/jrevdct.c#l1189" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/mpi-permissive.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/mpi-permissive.json", + "referenceNumber": 114, + "name": "mpi Permissive License", + "licenseId": "mpi-permissive", + "seeAlso": [ + "https://sources.debian.org/src/openmpi/4.1.0-10/ompi/debuggers/msgq_interface.h/?hl\u003d19#L19" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/mpich2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/mpich2.json", + "referenceNumber": 164, + "name": "mpich2 License", + "licenseId": "mpich2", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/MIT" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MPL-1.0.json", + "referenceNumber": 499, + "name": "Mozilla Public License 1.0", + "licenseId": "MPL-1.0", + "seeAlso": [ + "http://www.mozilla.org/MPL/MPL-1.0.html", + "https://opensource.org/licenses/MPL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/MPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MPL-1.1.json", + "referenceNumber": 183, + "name": "Mozilla Public License 1.1", + "licenseId": "MPL-1.1", + "seeAlso": [ + "http://www.mozilla.org/MPL/MPL-1.1.html", + "https://opensource.org/licenses/MPL-1.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/MPL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MPL-2.0.json", + "referenceNumber": 573, + "name": "Mozilla Public License 2.0", + "licenseId": "MPL-2.0", + "seeAlso": [ + "https://www.mozilla.org/MPL/2.0/", + "https://opensource.org/licenses/MPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.json", + "referenceNumber": 397, + "name": "Mozilla Public License 2.0 (no copyleft exception)", + "licenseId": "MPL-2.0-no-copyleft-exception", + "seeAlso": [ + "https://www.mozilla.org/MPL/2.0/", + "https://opensource.org/licenses/MPL-2.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/mplus.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/mplus.json", + "referenceNumber": 160, + "name": "mplus Font License", + "licenseId": "mplus", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:Mplus?rd\u003dLicensing/mplus" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MS-LPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MS-LPL.json", + "referenceNumber": 199, + "name": "Microsoft Limited Public License", + "licenseId": "MS-LPL", + "seeAlso": [ + "https://www.openhub.net/licenses/mslpl", + "https://github.com/gabegundy/atlserver/blob/master/License.txt", + "https://en.wikipedia.org/wiki/Shared_Source_Initiative#Microsoft_Limited_Public_License_(Ms-LPL)" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MS-PL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MS-PL.json", + "referenceNumber": 485, + "name": "Microsoft Public License", + "licenseId": "MS-PL", + "seeAlso": [ + "http://www.microsoft.com/opensource/licenses.mspx", + "https://opensource.org/licenses/MS-PL" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/MS-RL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MS-RL.json", + "referenceNumber": 284, + "name": "Microsoft Reciprocal License", + "licenseId": "MS-RL", + "seeAlso": [ + "http://www.microsoft.com/opensource/licenses.mspx", + "https://opensource.org/licenses/MS-RL" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/MTLL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MTLL.json", + "referenceNumber": 387, + "name": "Matrix Template Library License", + "licenseId": "MTLL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Matrix_Template_Library_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MulanPSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MulanPSL-1.0.json", + "referenceNumber": 407, + "name": "Mulan Permissive Software License, Version 1", + "licenseId": "MulanPSL-1.0", + "seeAlso": [ + "https://license.coscl.org.cn/MulanPSL/", + "https://github.com/yuwenlong/longphp/blob/25dfb70cc2a466dc4bb55ba30901cbce08d164b5/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/MulanPSL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/MulanPSL-2.0.json", + "referenceNumber": 439, + "name": "Mulan Permissive Software License, Version 2", + "licenseId": "MulanPSL-2.0", + "seeAlso": [ + "https://license.coscl.org.cn/MulanPSL2" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Multics.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Multics.json", + "referenceNumber": 465, + "name": "Multics License", + "licenseId": "Multics", + "seeAlso": [ + "https://opensource.org/licenses/Multics" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Mup.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Mup.json", + "referenceNumber": 607, + "name": "Mup License", + "licenseId": "Mup", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Mup" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NAIST-2003.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NAIST-2003.json", + "referenceNumber": 265, + "name": "Nara Institute of Science and Technology License (2003)", + "licenseId": "NAIST-2003", + "seeAlso": [ + "https://enterprise.dejacode.com/licenses/public/naist-2003/#license-text", + "https://github.com/nodejs/node/blob/4a19cc8947b1bba2b2d27816ec3d0edf9b28e503/LICENSE#L343" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NASA-1.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NASA-1.3.json", + "referenceNumber": 507, + "name": "NASA Open Source Agreement 1.3", + "licenseId": "NASA-1.3", + "seeAlso": [ + "http://ti.arc.nasa.gov/opensource/nosa/", + "https://opensource.org/licenses/NASA-1.3" + ], + "isOsiApproved": true, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/Naumen.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Naumen.json", + "referenceNumber": 221, + "name": "Naumen Public License", + "licenseId": "Naumen", + "seeAlso": [ + "https://opensource.org/licenses/Naumen" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/NBPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NBPL-1.0.json", + "referenceNumber": 61, + "name": "Net Boolean Public License v1", + "licenseId": "NBPL-1.0", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d37b4b3f6cc4bf34e1d3dec61e69914b9819d8894" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NCGL-UK-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NCGL-UK-2.0.json", + "referenceNumber": 443, + "name": "Non-Commercial Government Licence", + "licenseId": "NCGL-UK-2.0", + "seeAlso": [ + "http://www.nationalarchives.gov.uk/doc/non-commercial-government-licence/version/2/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NCSA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NCSA.json", + "referenceNumber": 45, + "name": "University of Illinois/NCSA Open Source License", + "licenseId": "NCSA", + "seeAlso": [ + "http://otm.illinois.edu/uiuc_openSource", + "https://opensource.org/licenses/NCSA" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Net-SNMP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Net-SNMP.json", + "referenceNumber": 71, + "name": "Net-SNMP License", + "licenseId": "Net-SNMP", + "seeAlso": [ + "http://net-snmp.sourceforge.net/about/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NetCDF.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NetCDF.json", + "referenceNumber": 119, + "name": "NetCDF license", + "licenseId": "NetCDF", + "seeAlso": [ + "http://www.unidata.ucar.edu/software/netcdf/copyright.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Newsletr.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Newsletr.json", + "referenceNumber": 616, + "name": "Newsletr License", + "licenseId": "Newsletr", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Newsletr" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NGPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NGPL.json", + "referenceNumber": 248, + "name": "Nethack General Public License", + "licenseId": "NGPL", + "seeAlso": [ + "https://opensource.org/licenses/NGPL" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/NICTA-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NICTA-1.0.json", + "referenceNumber": 48, + "name": "NICTA Public Software License, Version 1.0", + "licenseId": "NICTA-1.0", + "seeAlso": [ + "https://opensource.apple.com/source/mDNSResponder/mDNSResponder-320.10/mDNSPosix/nss_ReadMe.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NIST-PD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NIST-PD.json", + "referenceNumber": 209, + "name": "NIST Public Domain Notice", + "licenseId": "NIST-PD", + "seeAlso": [ + "https://github.com/tcheneau/simpleRPL/blob/e645e69e38dd4e3ccfeceb2db8cba05b7c2e0cd3/LICENSE.txt", + "https://github.com/tcheneau/Routing/blob/f09f46fcfe636107f22f2c98348188a65a135d98/README.md" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NIST-PD-fallback.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NIST-PD-fallback.json", + "referenceNumber": 49, + "name": "NIST Public Domain Notice with license fallback", + "licenseId": "NIST-PD-fallback", + "seeAlso": [ + "https://github.com/usnistgov/jsip/blob/59700e6926cbe96c5cdae897d9a7d2656b42abe3/LICENSE", + "https://github.com/usnistgov/fipy/blob/86aaa5c2ba2c6f1be19593c5986071cf6568cc34/LICENSE.rst" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NIST-Software.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NIST-Software.json", + "referenceNumber": 94, + "name": "NIST Software License", + "licenseId": "NIST-Software", + "seeAlso": [ + "https://github.com/open-quantum-safe/liboqs/blob/40b01fdbb270f8614fde30e65d30e9da18c02393/src/common/rand/rand_nist.c#L1-L15" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NLOD-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NLOD-1.0.json", + "referenceNumber": 217, + "name": "Norwegian Licence for Open Government Data (NLOD) 1.0", + "licenseId": "NLOD-1.0", + "seeAlso": [ + "http://data.norge.no/nlod/en/1.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NLOD-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NLOD-2.0.json", + "referenceNumber": 373, + "name": "Norwegian Licence for Open Government Data (NLOD) 2.0", + "licenseId": "NLOD-2.0", + "seeAlso": [ + "http://data.norge.no/nlod/en/2.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NLPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NLPL.json", + "referenceNumber": 66, + "name": "No Limit Public License", + "licenseId": "NLPL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/NLPL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Nokia.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Nokia.json", + "referenceNumber": 128, + "name": "Nokia Open Source License", + "licenseId": "Nokia", + "seeAlso": [ + "https://opensource.org/licenses/nokia" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/NOSL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NOSL.json", + "referenceNumber": 1, + "name": "Netizen Open Source License", + "licenseId": "NOSL", + "seeAlso": [ + "http://bits.netizen.com.au/licenses/NOSL/nosl.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Noweb.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Noweb.json", + "referenceNumber": 476, + "name": "Noweb License", + "licenseId": "Noweb", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Noweb" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NPL-1.0.json", + "referenceNumber": 210, + "name": "Netscape Public License v1.0", + "licenseId": "NPL-1.0", + "seeAlso": [ + "http://www.mozilla.org/MPL/NPL/1.0/" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/NPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NPL-1.1.json", + "referenceNumber": 337, + "name": "Netscape Public License v1.1", + "licenseId": "NPL-1.1", + "seeAlso": [ + "http://www.mozilla.org/MPL/NPL/1.1/" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/NPOSL-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NPOSL-3.0.json", + "referenceNumber": 635, + "name": "Non-Profit Open Software License 3.0", + "licenseId": "NPOSL-3.0", + "seeAlso": [ + "https://opensource.org/licenses/NOSL3.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/NRL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NRL.json", + "referenceNumber": 369, + "name": "NRL License", + "licenseId": "NRL", + "seeAlso": [ + "http://web.mit.edu/network/isakmp/nrllicense.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/NTP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NTP.json", + "referenceNumber": 470, + "name": "NTP License", + "licenseId": "NTP", + "seeAlso": [ + "https://opensource.org/licenses/NTP" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/NTP-0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/NTP-0.json", + "referenceNumber": 186, + "name": "NTP No Attribution", + "licenseId": "NTP-0", + "seeAlso": [ + "https://github.com/tytso/e2fsprogs/blob/master/lib/et/et_name.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Nunit.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/Nunit.json", + "referenceNumber": 471, + "name": "Nunit License", + "licenseId": "Nunit", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Nunit" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/O-UDA-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/O-UDA-1.0.json", + "referenceNumber": 118, + "name": "Open Use of Data Agreement v1.0", + "licenseId": "O-UDA-1.0", + "seeAlso": [ + "https://github.com/microsoft/Open-Use-of-Data-Agreement/blob/v1.0/O-UDA-1.0.md", + "https://cdla.dev/open-use-of-data-agreement-v1-0/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OCCT-PL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OCCT-PL.json", + "referenceNumber": 521, + "name": "Open CASCADE Technology Public License", + "licenseId": "OCCT-PL", + "seeAlso": [ + "http://www.opencascade.com/content/occt-public-license" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OCLC-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OCLC-2.0.json", + "referenceNumber": 566, + "name": "OCLC Research Public License 2.0", + "licenseId": "OCLC-2.0", + "seeAlso": [ + "http://www.oclc.org/research/activities/software/license/v2final.htm", + "https://opensource.org/licenses/OCLC-2.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/ODbL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ODbL-1.0.json", + "referenceNumber": 589, + "name": "Open Data Commons Open Database License v1.0", + "licenseId": "ODbL-1.0", + "seeAlso": [ + "http://www.opendatacommons.org/licenses/odbl/1.0/", + "https://opendatacommons.org/licenses/odbl/1-0/" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ODC-By-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ODC-By-1.0.json", + "referenceNumber": 141, + "name": "Open Data Commons Attribution License v1.0", + "licenseId": "ODC-By-1.0", + "seeAlso": [ + "https://opendatacommons.org/licenses/by/1.0/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OFFIS.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFFIS.json", + "referenceNumber": 603, + "name": "OFFIS License", + "licenseId": "OFFIS", + "seeAlso": [ + "https://sourceforge.net/p/xmedcon/code/ci/master/tree/libs/dicom/README" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OFL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFL-1.0.json", + "referenceNumber": 91, + "name": "SIL Open Font License 1.0", + "licenseId": "OFL-1.0", + "seeAlso": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL10_web" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OFL-1.0-no-RFN.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFL-1.0-no-RFN.json", + "referenceNumber": 149, + "name": "SIL Open Font License 1.0 with no Reserved Font Name", + "licenseId": "OFL-1.0-no-RFN", + "seeAlso": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL10_web" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OFL-1.0-RFN.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFL-1.0-RFN.json", + "referenceNumber": 568, + "name": "SIL Open Font License 1.0 with Reserved Font Name", + "licenseId": "OFL-1.0-RFN", + "seeAlso": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL10_web" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OFL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFL-1.1.json", + "referenceNumber": 163, + "name": "SIL Open Font License 1.1", + "licenseId": "OFL-1.1", + "seeAlso": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL_web", + "https://opensource.org/licenses/OFL-1.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OFL-1.1-no-RFN.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFL-1.1-no-RFN.json", + "referenceNumber": 270, + "name": "SIL Open Font License 1.1 with no Reserved Font Name", + "licenseId": "OFL-1.1-no-RFN", + "seeAlso": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL_web", + "https://opensource.org/licenses/OFL-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/OFL-1.1-RFN.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OFL-1.1-RFN.json", + "referenceNumber": 80, + "name": "SIL Open Font License 1.1 with Reserved Font Name", + "licenseId": "OFL-1.1-RFN", + "seeAlso": [ + "http://scripts.sil.org/cms/scripts/page.php?item_id\u003dOFL_web", + "https://opensource.org/licenses/OFL-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/OGC-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGC-1.0.json", + "referenceNumber": 86, + "name": "OGC Software License, Version 1.0", + "licenseId": "OGC-1.0", + "seeAlso": [ + "https://www.ogc.org/ogc/software/1.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OGDL-Taiwan-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGDL-Taiwan-1.0.json", + "referenceNumber": 347, + "name": "Taiwan Open Government Data License, version 1.0", + "licenseId": "OGDL-Taiwan-1.0", + "seeAlso": [ + "https://data.gov.tw/license" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OGL-Canada-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGL-Canada-2.0.json", + "referenceNumber": 506, + "name": "Open Government Licence - Canada", + "licenseId": "OGL-Canada-2.0", + "seeAlso": [ + "https://open.canada.ca/en/open-government-licence-canada" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OGL-UK-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGL-UK-1.0.json", + "referenceNumber": 245, + "name": "Open Government Licence v1.0", + "licenseId": "OGL-UK-1.0", + "seeAlso": [ + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/1/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OGL-UK-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGL-UK-2.0.json", + "referenceNumber": 399, + "name": "Open Government Licence v2.0", + "licenseId": "OGL-UK-2.0", + "seeAlso": [ + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/2/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OGL-UK-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGL-UK-3.0.json", + "referenceNumber": 142, + "name": "Open Government Licence v3.0", + "licenseId": "OGL-UK-3.0", + "seeAlso": [ + "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OGTSL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OGTSL.json", + "referenceNumber": 214, + "name": "Open Group Test Suite License", + "licenseId": "OGTSL", + "seeAlso": [ + "http://www.opengroup.org/testing/downloads/The_Open_Group_TSL.txt", + "https://opensource.org/licenses/OGTSL" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/OLDAP-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-1.1.json", + "referenceNumber": 565, + "name": "Open LDAP Public License v1.1", + "licenseId": "OLDAP-1.1", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d806557a5ad59804ef3a44d5abfbe91d706b0791f" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-1.2.json", + "referenceNumber": 321, + "name": "Open LDAP Public License v1.2", + "licenseId": "OLDAP-1.2", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d42b0383c50c299977b5893ee695cf4e486fb0dc7" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-1.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-1.3.json", + "referenceNumber": 312, + "name": "Open LDAP Public License v1.3", + "licenseId": "OLDAP-1.3", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003de5f8117f0ce088d0bd7a8e18ddf37eaa40eb09b1" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-1.4.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-1.4.json", + "referenceNumber": 120, + "name": "Open LDAP Public License v1.4", + "licenseId": "OLDAP-1.4", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003dc9f95c2f3f2ffb5e0ae55fe7388af75547660941" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.0.json", + "referenceNumber": 450, + "name": "Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B)", + "licenseId": "OLDAP-2.0", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003dcbf50f4e1185a21abd4c0a54d3f4341fe28f36ea" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.0.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.0.1.json", + "referenceNumber": 59, + "name": "Open LDAP Public License v2.0.1", + "licenseId": "OLDAP-2.0.1", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003db6d68acd14e51ca3aab4428bf26522aa74873f0e" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.1.json", + "referenceNumber": 458, + "name": "Open LDAP Public License v2.1", + "licenseId": "OLDAP-2.1", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003db0d176738e96a0d3b9f85cb51e140a86f21be715" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.2.json", + "referenceNumber": 175, + "name": "Open LDAP Public License v2.2", + "licenseId": "OLDAP-2.2", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d470b0c18ec67621c85881b2733057fecf4a1acc3" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.2.1.json", + "referenceNumber": 32, + "name": "Open LDAP Public License v2.2.1", + "licenseId": "OLDAP-2.2.1", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d4bc786f34b50aa301be6f5600f58a980070f481e" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.2.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.2.2.json", + "referenceNumber": 293, + "name": "Open LDAP Public License 2.2.2", + "licenseId": "OLDAP-2.2.2", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003ddf2cc1e21eb7c160695f5b7cffd6296c151ba188" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.3.json", + "referenceNumber": 405, + "name": "Open LDAP Public License v2.3", + "licenseId": "OLDAP-2.3", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003dd32cf54a32d581ab475d23c810b0a7fbaf8d63c3" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.4.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.4.json", + "referenceNumber": 619, + "name": "Open LDAP Public License v2.4", + "licenseId": "OLDAP-2.4", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003dcd1284c4a91a8a380d904eee68d1583f989ed386" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.5.json", + "referenceNumber": 426, + "name": "Open LDAP Public License v2.5", + "licenseId": "OLDAP-2.5", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d6852b9d90022e8593c98205413380536b1b5a7cf" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.6.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.6.json", + "referenceNumber": 9, + "name": "Open LDAP Public License v2.6", + "licenseId": "OLDAP-2.6", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d1cae062821881f41b73012ba816434897abf4205" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.7.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.7.json", + "referenceNumber": 178, + "name": "Open LDAP Public License v2.7", + "licenseId": "OLDAP-2.7", + "seeAlso": [ + "http://www.openldap.org/devel/gitweb.cgi?p\u003dopenldap.git;a\u003dblob;f\u003dLICENSE;hb\u003d47c2415c1df81556eeb39be6cad458ef87c534a2" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OLDAP-2.8.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLDAP-2.8.json", + "referenceNumber": 132, + "name": "Open LDAP Public License v2.8", + "licenseId": "OLDAP-2.8", + "seeAlso": [ + "http://www.openldap.org/software/release/license.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/OLFL-1.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OLFL-1.3.json", + "referenceNumber": 556, + "name": "Open Logistics Foundation License Version 1.3", + "licenseId": "OLFL-1.3", + "seeAlso": [ + "https://openlogisticsfoundation.org/licenses/", + "https://opensource.org/license/olfl-1-3/" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/OML.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OML.json", + "referenceNumber": 325, + "name": "Open Market License", + "licenseId": "OML", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Open_Market_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OpenPBS-2.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OpenPBS-2.3.json", + "referenceNumber": 490, + "name": "OpenPBS v2.3 Software License", + "licenseId": "OpenPBS-2.3", + "seeAlso": [ + "https://github.com/adaptivecomputing/torque/blob/master/PBS_License.txt", + "https://www.mcs.anl.gov/research/projects/openpbs/PBS_License.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OpenSSL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OpenSSL.json", + "referenceNumber": 564, + "name": "OpenSSL License", + "licenseId": "OpenSSL", + "seeAlso": [ + "http://www.openssl.org/source/license.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OpenSSL-standalone.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OpenSSL-standalone.json", + "referenceNumber": 597, + "name": "OpenSSL License - standalone", + "licenseId": "OpenSSL-standalone", + "seeAlso": [ + "https://library.netapp.com/ecm/ecm_download_file/ECMP1196395", + "https://hstechdocs.helpsystems.com/manuals/globalscape/archive/cuteftp6/open_ssl_license_agreement.htm" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OpenVision.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OpenVision.json", + "referenceNumber": 590, + "name": "OpenVision License", + "licenseId": "OpenVision", + "seeAlso": [ + "https://github.com/krb5/krb5/blob/krb5-1.21.2-final/NOTICE#L66-L98", + "https://web.mit.edu/kerberos/krb5-1.21/doc/mitK5license.html", + "https://fedoraproject.org/wiki/Licensing:MIT#OpenVision_Variant" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OPL-1.0.json", + "referenceNumber": 116, + "name": "Open Public License v1.0", + "licenseId": "OPL-1.0", + "seeAlso": [ + "http://old.koalateam.com/jackaroo/OPL_1_0.TXT", + "https://fedoraproject.org/wiki/Licensing/Open_Public_License" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/OPL-UK-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OPL-UK-3.0.json", + "referenceNumber": 276, + "name": "United Kingdom Open Parliament Licence v3.0", + "licenseId": "OPL-UK-3.0", + "seeAlso": [ + "https://www.parliament.uk/site-information/copyright-parliament/open-parliament-licence/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OPUBL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OPUBL-1.0.json", + "referenceNumber": 479, + "name": "Open Publication License v1.0", + "licenseId": "OPUBL-1.0", + "seeAlso": [ + "http://opencontent.org/openpub/", + "https://www.debian.org/opl", + "https://www.ctan.org/license/opl" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/OSET-PL-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OSET-PL-2.1.json", + "referenceNumber": 19, + "name": "OSET Public License version 2.1", + "licenseId": "OSET-PL-2.1", + "seeAlso": [ + "http://www.osetfoundation.org/public-license", + "https://opensource.org/licenses/OPL-2.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/OSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OSL-1.0.json", + "referenceNumber": 511, + "name": "Open Software License 1.0", + "licenseId": "OSL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/OSL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OSL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OSL-1.1.json", + "referenceNumber": 327, + "name": "Open Software License 1.1", + "licenseId": "OSL-1.1", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/OSL1.1" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OSL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OSL-2.0.json", + "referenceNumber": 579, + "name": "Open Software License 2.0", + "licenseId": "OSL-2.0", + "seeAlso": [ + "http://web.archive.org/web/20041020171434/http://www.rosenlaw.com/osl2.0.html" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OSL-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OSL-2.1.json", + "referenceNumber": 480, + "name": "Open Software License 2.1", + "licenseId": "OSL-2.1", + "seeAlso": [ + "http://web.archive.org/web/20050212003940/http://www.rosenlaw.com/osl21.htm", + "https://opensource.org/licenses/OSL-2.1" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/OSL-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/OSL-3.0.json", + "referenceNumber": 72, + "name": "Open Software License 3.0", + "licenseId": "OSL-3.0", + "seeAlso": [ + "https://web.archive.org/web/20120101081418/http://rosenlaw.com:80/OSL3.0.htm", + "https://opensource.org/licenses/OSL-3.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/PADL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PADL.json", + "referenceNumber": 145, + "name": "PADL License", + "licenseId": "PADL", + "seeAlso": [ + "https://git.openldap.org/openldap/openldap/-/blob/master/libraries/libldap/os-local.c?ref_type\u003dheads#L19-23" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Parity-6.0.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Parity-6.0.0.json", + "referenceNumber": 546, + "name": "The Parity Public License 6.0.0", + "licenseId": "Parity-6.0.0", + "seeAlso": [ + "https://paritylicense.com/versions/6.0.0.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Parity-7.0.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Parity-7.0.0.json", + "referenceNumber": 281, + "name": "The Parity Public License 7.0.0", + "licenseId": "Parity-7.0.0", + "seeAlso": [ + "https://paritylicense.com/versions/7.0.0.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/PDDL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PDDL-1.0.json", + "referenceNumber": 231, + "name": "Open Data Commons Public Domain Dedication \u0026 License 1.0", + "licenseId": "PDDL-1.0", + "seeAlso": [ + "http://opendatacommons.org/licenses/pddl/1.0/", + "https://opendatacommons.org/licenses/pddl/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/PHP-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PHP-3.0.json", + "referenceNumber": 622, + "name": "PHP License v3.0", + "licenseId": "PHP-3.0", + "seeAlso": [ + "http://www.php.net/license/3_0.txt", + "https://opensource.org/licenses/PHP-3.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/PHP-3.01.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PHP-3.01.json", + "referenceNumber": 11, + "name": "PHP License v3.01", + "licenseId": "PHP-3.01", + "seeAlso": [ + "http://www.php.net/license/3_01.txt" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Pixar.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Pixar.json", + "referenceNumber": 240, + "name": "Pixar License", + "licenseId": "Pixar", + "seeAlso": [ + "https://github.com/PixarAnimationStudios/OpenSubdiv/raw/v3_5_0/LICENSE.txt", + "https://graphics.pixar.com/opensubdiv/docs/license.html", + "https://github.com/PixarAnimationStudios/OpenSubdiv/blob/v3_5_0/opensubdiv/version.cpp#L2-L22" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Plexus.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Plexus.json", + "referenceNumber": 354, + "name": "Plexus Classworlds License", + "licenseId": "Plexus", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Plexus_Classworlds_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/pnmstitch.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/pnmstitch.json", + "referenceNumber": 76, + "name": "pnmstitch License", + "licenseId": "pnmstitch", + "seeAlso": [ + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/editor/pnmstitch.c#l2" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PolyForm-Noncommercial-1.0.0.json", + "referenceNumber": 343, + "name": "PolyForm Noncommercial License 1.0.0", + "licenseId": "PolyForm-Noncommercial-1.0.0", + "seeAlso": [ + "https://polyformproject.org/licenses/noncommercial/1.0.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/PolyForm-Small-Business-1.0.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PolyForm-Small-Business-1.0.0.json", + "referenceNumber": 455, + "name": "PolyForm Small Business License 1.0.0", + "licenseId": "PolyForm-Small-Business-1.0.0", + "seeAlso": [ + "https://polyformproject.org/licenses/small-business/1.0.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/PostgreSQL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PostgreSQL.json", + "referenceNumber": 390, + "name": "PostgreSQL License", + "licenseId": "PostgreSQL", + "seeAlso": [ + "http://www.postgresql.org/about/licence", + "https://opensource.org/licenses/PostgreSQL" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/PSF-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/PSF-2.0.json", + "referenceNumber": 381, + "name": "Python Software Foundation License 2.0", + "licenseId": "PSF-2.0", + "seeAlso": [ + "https://opensource.org/licenses/Python-2.0" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/psfrag.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/psfrag.json", + "referenceNumber": 150, + "name": "psfrag License", + "licenseId": "psfrag", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/psfrag" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/psutils.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/psutils.json", + "referenceNumber": 146, + "name": "psutils License", + "licenseId": "psutils", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/psutils" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Python-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Python-2.0.json", + "referenceNumber": 383, + "name": "Python License 2.0", + "licenseId": "Python-2.0", + "seeAlso": [ + "https://opensource.org/licenses/Python-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Python-2.0.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Python-2.0.1.json", + "referenceNumber": 559, + "name": "Python License 2.0.1", + "licenseId": "Python-2.0.1", + "seeAlso": [ + "https://www.python.org/download/releases/2.0.1/license/", + "https://docs.python.org/3/license.html", + "https://github.com/python/cpython/blob/main/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/python-ldap.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/python-ldap.json", + "referenceNumber": 581, + "name": "Python ldap License", + "licenseId": "python-ldap", + "seeAlso": [ + "https://github.com/python-ldap/python-ldap/blob/main/LICENCE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Qhull.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Qhull.json", + "referenceNumber": 241, + "name": "Qhull License", + "licenseId": "Qhull", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Qhull" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/QPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/QPL-1.0.json", + "referenceNumber": 459, + "name": "Q Public License 1.0", + "licenseId": "QPL-1.0", + "seeAlso": [ + "http://doc.qt.nokia.com/3.3/license.html", + "https://opensource.org/licenses/QPL-1.0", + "https://doc.qt.io/archives/3.3/license.html" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/QPL-1.0-INRIA-2004.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/QPL-1.0-INRIA-2004.json", + "referenceNumber": 537, + "name": "Q Public License 1.0 - INRIA 2004 variant", + "licenseId": "QPL-1.0-INRIA-2004", + "seeAlso": [ + "https://github.com/maranget/hevea/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/radvd.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/radvd.json", + "referenceNumber": 5, + "name": "radvd License", + "licenseId": "radvd", + "seeAlso": [ + "https://github.com/radvd-project/radvd/blob/master/COPYRIGHT" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Rdisc.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Rdisc.json", + "referenceNumber": 591, + "name": "Rdisc License", + "licenseId": "Rdisc", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Rdisc_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/RHeCos-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/RHeCos-1.1.json", + "referenceNumber": 484, + "name": "Red Hat eCos Public License v1.1", + "licenseId": "RHeCos-1.1", + "seeAlso": [ + "http://ecos.sourceware.org/old-license.html" + ], + "isOsiApproved": false, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/RPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/RPL-1.1.json", + "referenceNumber": 613, + "name": "Reciprocal Public License 1.1", + "licenseId": "RPL-1.1", + "seeAlso": [ + "https://opensource.org/licenses/RPL-1.1" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/RPL-1.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/RPL-1.5.json", + "referenceNumber": 531, + "name": "Reciprocal Public License 1.5", + "licenseId": "RPL-1.5", + "seeAlso": [ + "https://opensource.org/licenses/RPL-1.5" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/RPSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/RPSL-1.0.json", + "referenceNumber": 168, + "name": "RealNetworks Public Source License v1.0", + "licenseId": "RPSL-1.0", + "seeAlso": [ + "https://helixcommunity.org/content/rpsl", + "https://opensource.org/licenses/RPSL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/RSA-MD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/RSA-MD.json", + "referenceNumber": 515, + "name": "RSA Message-Digest License", + "licenseId": "RSA-MD", + "seeAlso": [ + "http://www.faqs.org/rfcs/rfc1321.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/RSCPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/RSCPL.json", + "referenceNumber": 580, + "name": "Ricoh Source Code Public License", + "licenseId": "RSCPL", + "seeAlso": [ + "http://wayback.archive.org/web/20060715140826/http://www.risource.org/RPL/RPL-1.0A.shtml", + "https://opensource.org/licenses/RSCPL" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Ruby.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Ruby.json", + "referenceNumber": 528, + "name": "Ruby License", + "licenseId": "Ruby", + "seeAlso": [ + "https://www.ruby-lang.org/en/about/license.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/SAX-PD.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SAX-PD.json", + "referenceNumber": 169, + "name": "Sax Public Domain Notice", + "licenseId": "SAX-PD", + "seeAlso": [ + "http://www.saxproject.org/copying.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SAX-PD-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SAX-PD-2.0.json", + "referenceNumber": 585, + "name": "Sax Public Domain Notice 2.0", + "licenseId": "SAX-PD-2.0", + "seeAlso": [ + "http://www.saxproject.org/copying.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Saxpath.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Saxpath.json", + "referenceNumber": 430, + "name": "Saxpath License", + "licenseId": "Saxpath", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Saxpath_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SCEA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SCEA.json", + "referenceNumber": 230, + "name": "SCEA Shared Source License", + "licenseId": "SCEA", + "seeAlso": [ + "http://research.scea.com/scea_shared_source_license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SchemeReport.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SchemeReport.json", + "referenceNumber": 552, + "name": "Scheme Language Report License", + "licenseId": "SchemeReport", + "seeAlso": [], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Sendmail.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Sendmail.json", + "referenceNumber": 427, + "name": "Sendmail License", + "licenseId": "Sendmail", + "seeAlso": [ + "http://www.sendmail.com/pdfs/open_source/sendmail_license.pdf", + "https://web.archive.org/web/20160322142305/https://www.sendmail.com/pdfs/open_source/sendmail_license.pdf" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Sendmail-8.23.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Sendmail-8.23.json", + "referenceNumber": 24, + "name": "Sendmail License 8.23", + "licenseId": "Sendmail-8.23", + "seeAlso": [ + "https://www.proofpoint.com/sites/default/files/sendmail-license.pdf", + "https://web.archive.org/web/20181003101040/https://www.proofpoint.com/sites/default/files/sendmail-license.pdf" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SGI-B-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SGI-B-1.0.json", + "referenceNumber": 25, + "name": "SGI Free Software License B v1.0", + "licenseId": "SGI-B-1.0", + "seeAlso": [ + "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.1.0.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SGI-B-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SGI-B-1.1.json", + "referenceNumber": 16, + "name": "SGI Free Software License B v1.1", + "licenseId": "SGI-B-1.1", + "seeAlso": [ + "http://oss.sgi.com/projects/FreeB/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SGI-B-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SGI-B-2.0.json", + "referenceNumber": 431, + "name": "SGI Free Software License B v2.0", + "licenseId": "SGI-B-2.0", + "seeAlso": [ + "http://oss.sgi.com/projects/FreeB/SGIFreeSWLicB.2.0.pdf" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/SGI-OpenGL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SGI-OpenGL.json", + "referenceNumber": 408, + "name": "SGI OpenGL License", + "licenseId": "SGI-OpenGL", + "seeAlso": [ + "https://gitlab.freedesktop.org/mesa/glw/-/blob/master/README?ref_type\u003dheads" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SGP4.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SGP4.json", + "referenceNumber": 461, + "name": "SGP4 Permission Notice", + "licenseId": "SGP4", + "seeAlso": [ + "https://celestrak.org/publications/AIAA/2006-6753/faq.php" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SHL-0.5.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SHL-0.5.json", + "referenceNumber": 298, + "name": "Solderpad Hardware License v0.5", + "licenseId": "SHL-0.5", + "seeAlso": [ + "https://solderpad.org/licenses/SHL-0.5/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SHL-0.51.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SHL-0.51.json", + "referenceNumber": 504, + "name": "Solderpad Hardware License, Version 0.51", + "licenseId": "SHL-0.51", + "seeAlso": [ + "https://solderpad.org/licenses/SHL-0.51/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SimPL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SimPL-2.0.json", + "referenceNumber": 617, + "name": "Simple Public License 2.0", + "licenseId": "SimPL-2.0", + "seeAlso": [ + "https://opensource.org/licenses/SimPL-2.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/SISSL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SISSL.json", + "referenceNumber": 525, + "name": "Sun Industry Standards Source License v1.1", + "licenseId": "SISSL", + "seeAlso": [ + "http://www.openoffice.org/licenses/sissl_license.html", + "https://opensource.org/licenses/SISSL" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/SISSL-1.2.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SISSL-1.2.json", + "referenceNumber": 493, + "name": "Sun Industry Standards Source License v1.2", + "licenseId": "SISSL-1.2", + "seeAlso": [ + "http://gridscheduler.sourceforge.net/Gridengine_SISSL_license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SL.json", + "referenceNumber": 190, + "name": "SL License", + "licenseId": "SL", + "seeAlso": [ + "https://github.com/mtoyoda/sl/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Sleepycat.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Sleepycat.json", + "referenceNumber": 239, + "name": "Sleepycat License", + "licenseId": "Sleepycat", + "seeAlso": [ + "https://opensource.org/licenses/Sleepycat" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/SMLNJ.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SMLNJ.json", + "referenceNumber": 63, + "name": "Standard ML of New Jersey License", + "licenseId": "SMLNJ", + "seeAlso": [ + "https://www.smlnj.org/license.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/SMPPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SMPPL.json", + "referenceNumber": 193, + "name": "Secure Messaging Protocol Public License", + "licenseId": "SMPPL", + "seeAlso": [ + "https://github.com/dcblake/SMP/blob/master/Documentation/License.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SNIA.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SNIA.json", + "referenceNumber": 211, + "name": "SNIA Public License 1.1", + "licenseId": "SNIA", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/SNIA_Public_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/snprintf.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/snprintf.json", + "referenceNumber": 159, + "name": "snprintf License", + "licenseId": "snprintf", + "seeAlso": [ + "https://github.com/openssh/openssh-portable/blob/master/openbsd-compat/bsd-snprintf.c#L2" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/softSurfer.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/softSurfer.json", + "referenceNumber": 489, + "name": "softSurfer License", + "licenseId": "softSurfer", + "seeAlso": [ + "https://github.com/mm2/Little-CMS/blob/master/src/cmssm.c#L207", + "https://fedoraproject.org/wiki/Licensing/softSurfer" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Soundex.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Soundex.json", + "referenceNumber": 43, + "name": "Soundex License", + "licenseId": "Soundex", + "seeAlso": [ + "https://metacpan.org/release/RJBS/Text-Soundex-3.05/source/Soundex.pm#L3-11" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Spencer-86.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Spencer-86.json", + "referenceNumber": 469, + "name": "Spencer License 86", + "licenseId": "Spencer-86", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Spencer-94.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Spencer-94.json", + "referenceNumber": 583, + "name": "Spencer License 94", + "licenseId": "Spencer-94", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Henry_Spencer_Reg-Ex_Library_License", + "https://metacpan.org/release/KNOK/File-MMagic-1.30/source/COPYING#L28" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Spencer-99.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Spencer-99.json", + "referenceNumber": 420, + "name": "Spencer License 99", + "licenseId": "Spencer-99", + "seeAlso": [ + "http://www.opensource.apple.com/source/tcl/tcl-5/tcl/generic/regfronts.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SPL-1.0.json", + "referenceNumber": 3, + "name": "Sun Public License v1.0", + "licenseId": "SPL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/SPL-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ssh-keyscan.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ssh-keyscan.json", + "referenceNumber": 84, + "name": "ssh-keyscan License", + "licenseId": "ssh-keyscan", + "seeAlso": [ + "https://github.com/openssh/openssh-portable/blob/master/LICENCE#L82" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SSH-OpenSSH.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SSH-OpenSSH.json", + "referenceNumber": 364, + "name": "SSH OpenSSH license", + "licenseId": "SSH-OpenSSH", + "seeAlso": [ + "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/LICENCE#L10" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SSH-short.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SSH-short.json", + "referenceNumber": 428, + "name": "SSH short notice", + "licenseId": "SSH-short", + "seeAlso": [ + "https://github.com/openssh/openssh-portable/blob/1b11ea7c58cd5c59838b5fa574cd456d6047b2d4/pathnames.h", + "http://web.mit.edu/kolya/.f/root/athena.mit.edu/sipb.mit.edu/project/openssh/OldFiles/src/openssh-2.9.9p2/ssh-add.1", + "https://joinup.ec.europa.eu/svn/lesoll/trunk/italc/lib/src/dsa_key.cpp" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SSLeay-standalone.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SSLeay-standalone.json", + "referenceNumber": 419, + "name": "SSLeay License - standalone", + "licenseId": "SSLeay-standalone", + "seeAlso": [ + "https://www.tq-group.com/filedownloads/files/software-license-conditions/OriginalSSLeay/OriginalSSLeay.pdf" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SSPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SSPL-1.0.json", + "referenceNumber": 156, + "name": "Server Side Public License, v 1", + "licenseId": "SSPL-1.0", + "seeAlso": [ + "https://www.mongodb.com/licensing/server-side-public-license" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/StandardML-NJ.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/StandardML-NJ.json", + "referenceNumber": 510, + "name": "Standard ML of New Jersey License", + "licenseId": "StandardML-NJ", + "seeAlso": [ + "https://www.smlnj.org/license.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/SugarCRM-1.1.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SugarCRM-1.1.3.json", + "referenceNumber": 33, + "name": "SugarCRM Public License v1.1.3", + "licenseId": "SugarCRM-1.1.3", + "seeAlso": [ + "http://www.sugarcrm.com/crm/SPL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Sun-PPP.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Sun-PPP.json", + "referenceNumber": 598, + "name": "Sun PPP License", + "licenseId": "Sun-PPP", + "seeAlso": [ + "https://github.com/ppp-project/ppp/blob/master/pppd/eap.c#L7-L16" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SunPro.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SunPro.json", + "referenceNumber": 95, + "name": "SunPro License", + "licenseId": "SunPro", + "seeAlso": [ + "https://github.com/freebsd/freebsd-src/blob/main/lib/msun/src/e_acosh.c", + "https://github.com/freebsd/freebsd-src/blob/main/lib/msun/src/e_lgammal.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/SWL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/SWL.json", + "referenceNumber": 360, + "name": "Scheme Widget Library (SWL) Software License Agreement", + "licenseId": "SWL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/SWL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/swrule.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/swrule.json", + "referenceNumber": 362, + "name": "swrule License", + "licenseId": "swrule", + "seeAlso": [ + "https://ctan.math.utah.edu/ctan/tex-archive/macros/generic/misc/swrule.sty" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Symlinks.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Symlinks.json", + "referenceNumber": 488, + "name": "Symlinks License", + "licenseId": "Symlinks", + "seeAlso": [ + "https://www.mail-archive.com/debian-bugs-rc@lists.debian.org/msg11494.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TAPR-OHL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TAPR-OHL-1.0.json", + "referenceNumber": 403, + "name": "TAPR Open Hardware License v1.0", + "licenseId": "TAPR-OHL-1.0", + "seeAlso": [ + "https://www.tapr.org/OHL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TCL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TCL.json", + "referenceNumber": 494, + "name": "TCL/TK License", + "licenseId": "TCL", + "seeAlso": [ + "http://www.tcl.tk/software/tcltk/license.html", + "https://fedoraproject.org/wiki/Licensing/TCL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TCP-wrappers.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TCP-wrappers.json", + "referenceNumber": 194, + "name": "TCP Wrappers License", + "licenseId": "TCP-wrappers", + "seeAlso": [ + "http://rc.quest.com/topics/openssh/license.php#tcpwrappers" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TermReadKey.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TermReadKey.json", + "referenceNumber": 412, + "name": "TermReadKey License", + "licenseId": "TermReadKey", + "seeAlso": [ + "https://github.com/jonathanstowe/TermReadKey/blob/master/README#L9-L10" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TGPPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TGPPL-1.0.json", + "referenceNumber": 208, + "name": "Transitive Grace Period Public Licence 1.0", + "licenseId": "TGPPL-1.0", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/TGPPL", + "https://tahoe-lafs.org/trac/tahoe-lafs/browser/trunk/COPYING.TGPPL.rst" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TMate.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TMate.json", + "referenceNumber": 541, + "name": "TMate Open Source License", + "licenseId": "TMate", + "seeAlso": [ + "http://svnkit.com/license.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TORQUE-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TORQUE-1.1.json", + "referenceNumber": 332, + "name": "TORQUE v2.5+ Software License v1.1", + "licenseId": "TORQUE-1.1", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/TORQUEv1.1" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TOSL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TOSL.json", + "referenceNumber": 574, + "name": "Trusster Open Source License", + "licenseId": "TOSL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/TOSL" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TPDL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TPDL.json", + "referenceNumber": 302, + "name": "Time::ParseDate License", + "licenseId": "TPDL", + "seeAlso": [ + "https://metacpan.org/pod/Time::ParseDate#LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TPL-1.0.json", + "referenceNumber": 134, + "name": "THOR Public License 1.0", + "licenseId": "TPL-1.0", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing:ThorPublicLicense" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TTWL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TTWL.json", + "referenceNumber": 28, + "name": "Text-Tabs+Wrap License", + "licenseId": "TTWL", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/TTWL", + "https://github.com/ap/Text-Tabs/blob/master/lib.modern/Text/Tabs.pm#L148" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TTYP0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TTYP0.json", + "referenceNumber": 207, + "name": "TTYP0 License", + "licenseId": "TTYP0", + "seeAlso": [ + "https://people.mpi-inf.mpg.de/~uwe/misc/uw-ttyp0/" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TU-Berlin-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TU-Berlin-1.0.json", + "referenceNumber": 98, + "name": "Technische Universitaet Berlin License 1.0", + "licenseId": "TU-Berlin-1.0", + "seeAlso": [ + "https://github.com/swh/ladspa/blob/7bf6f3799fdba70fda297c2d8fd9f526803d9680/gsm/COPYRIGHT" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/TU-Berlin-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/TU-Berlin-2.0.json", + "referenceNumber": 533, + "name": "Technische Universitaet Berlin License 2.0", + "licenseId": "TU-Berlin-2.0", + "seeAlso": [ + "https://github.com/CorsixTH/deps/blob/fd339a9f526d1d9c9f01ccf39e438a015da50035/licences/libgsm.txt" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/UCAR.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/UCAR.json", + "referenceNumber": 371, + "name": "UCAR License", + "licenseId": "UCAR", + "seeAlso": [ + "https://github.com/Unidata/UDUNITS-2/blob/master/COPYRIGHT" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/UCL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/UCL-1.0.json", + "referenceNumber": 88, + "name": "Upstream Compatibility License v1.0", + "licenseId": "UCL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/UCL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/ulem.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ulem.json", + "referenceNumber": 401, + "name": "ulem License", + "licenseId": "ulem", + "seeAlso": [ + "https://mirrors.ctan.org/macros/latex/contrib/ulem/README" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/UMich-Merit.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/UMich-Merit.json", + "referenceNumber": 413, + "name": "Michigan/Merit Networks License", + "licenseId": "UMich-Merit", + "seeAlso": [ + "https://github.com/radcli/radcli/blob/master/COPYRIGHT#L64" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Unicode-3.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Unicode-3.0.json", + "referenceNumber": 287, + "name": "Unicode License v3", + "licenseId": "Unicode-3.0", + "seeAlso": [ + "https://www.unicode.org/license.txt" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Unicode-DFS-2015.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Unicode-DFS-2015.json", + "referenceNumber": 137, + "name": "Unicode License Agreement - Data Files and Software (2015)", + "licenseId": "Unicode-DFS-2015", + "seeAlso": [ + "https://web.archive.org/web/20151224134844/http://unicode.org/copyright.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Unicode-DFS-2016.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Unicode-DFS-2016.json", + "referenceNumber": 295, + "name": "Unicode License Agreement - Data Files and Software (2016)", + "licenseId": "Unicode-DFS-2016", + "seeAlso": [ + "https://www.unicode.org/license.txt", + "http://web.archive.org/web/20160823201924/http://www.unicode.org/copyright.html#License", + "http://www.unicode.org/copyright.html" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/Unicode-TOU.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Unicode-TOU.json", + "referenceNumber": 432, + "name": "Unicode Terms of Use", + "licenseId": "Unicode-TOU", + "seeAlso": [ + "http://web.archive.org/web/20140704074106/http://www.unicode.org/copyright.html", + "http://www.unicode.org/copyright.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/UnixCrypt.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/UnixCrypt.json", + "referenceNumber": 275, + "name": "UnixCrypt License", + "licenseId": "UnixCrypt", + "seeAlso": [ + "https://foss.heptapod.net/python-libs/passlib/-/blob/branch/stable/LICENSE#L70", + "https://opensource.apple.com/source/JBoss/JBoss-737/jboss-all/jetty/src/main/org/mortbay/util/UnixCrypt.java.auto.html", + "https://archive.eclipse.org/jetty/8.0.1.v20110908/xref/org/eclipse/jetty/http/security/UnixCrypt.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Unlicense.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Unlicense.json", + "referenceNumber": 58, + "name": "The Unlicense", + "licenseId": "Unlicense", + "seeAlso": [ + "https://unlicense.org/" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/UPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/UPL-1.0.json", + "referenceNumber": 165, + "name": "Universal Permissive License v1.0", + "licenseId": "UPL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/UPL" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/URT-RLE.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/URT-RLE.json", + "referenceNumber": 416, + "name": "Utah Raster Toolkit Run Length Encoded License", + "licenseId": "URT-RLE", + "seeAlso": [ + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/converter/other/pnmtorle.c", + "https://sourceforge.net/p/netpbm/code/HEAD/tree/super_stable/converter/other/rletopnm.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Vim.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Vim.json", + "referenceNumber": 296, + "name": "Vim License", + "licenseId": "Vim", + "seeAlso": [ + "http://vimdoc.sourceforge.net/htmldoc/uganda.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/VOSTROM.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/VOSTROM.json", + "referenceNumber": 516, + "name": "VOSTROM Public License for Open Source", + "licenseId": "VOSTROM", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/VOSTROM" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/VSL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/VSL-1.0.json", + "referenceNumber": 440, + "name": "Vovida Software License v1.0", + "licenseId": "VSL-1.0", + "seeAlso": [ + "https://opensource.org/licenses/VSL-1.0" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/W3C.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/W3C.json", + "referenceNumber": 13, + "name": "W3C Software Notice and License (2002-12-31)", + "licenseId": "W3C", + "seeAlso": [ + "http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html", + "https://opensource.org/licenses/W3C" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/W3C-19980720.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/W3C-19980720.json", + "referenceNumber": 625, + "name": "W3C Software Notice and License (1998-07-20)", + "licenseId": "W3C-19980720", + "seeAlso": [ + "http://www.w3.org/Consortium/Legal/copyright-software-19980720.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/W3C-20150513.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/W3C-20150513.json", + "referenceNumber": 524, + "name": "W3C Software Notice and Document License (2015-05-13)", + "licenseId": "W3C-20150513", + "seeAlso": [ + "https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/w3m.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/w3m.json", + "referenceNumber": 509, + "name": "w3m License", + "licenseId": "w3m", + "seeAlso": [ + "https://github.com/tats/w3m/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Watcom-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Watcom-1.0.json", + "referenceNumber": 81, + "name": "Sybase Open Watcom Public License 1.0", + "licenseId": "Watcom-1.0", + "seeAlso": [ + "https://opensource.org/licenses/Watcom-1.0" + ], + "isOsiApproved": true, + "isFsfLibre": false + }, + { + "reference": "https://spdx.org/licenses/Widget-Workshop.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Widget-Workshop.json", + "referenceNumber": 503, + "name": "Widget Workshop License", + "licenseId": "Widget-Workshop", + "seeAlso": [ + "https://github.com/novnc/noVNC/blob/master/core/crypto/des.js#L24" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Wsuipa.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Wsuipa.json", + "referenceNumber": 612, + "name": "Wsuipa License", + "licenseId": "Wsuipa", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Wsuipa" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/WTFPL.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/WTFPL.json", + "referenceNumber": 315, + "name": "Do What The F*ck You Want To Public License", + "licenseId": "WTFPL", + "seeAlso": [ + "http://www.wtfpl.net/about/", + "http://sam.zoy.org/wtfpl/COPYING" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/wxWindows.html", + "isDeprecatedLicenseId": true, + "detailsUrl": "https://spdx.org/licenses/wxWindows.json", + "referenceNumber": 274, + "name": "wxWindows Library License", + "licenseId": "wxWindows", + "seeAlso": [ + "https://opensource.org/licenses/WXwindows" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/X11.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/X11.json", + "referenceNumber": 518, + "name": "X11 License", + "licenseId": "X11", + "seeAlso": [ + "http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/X11-distribute-modifications-variant.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/X11-distribute-modifications-variant.json", + "referenceNumber": 587, + "name": "X11 License Distribution Modification Variant", + "licenseId": "X11-distribute-modifications-variant", + "seeAlso": [ + "https://github.com/mirror/ncurses/blob/master/COPYING" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Xdebug-1.03.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Xdebug-1.03.json", + "referenceNumber": 198, + "name": "Xdebug License v 1.03", + "licenseId": "Xdebug-1.03", + "seeAlso": [ + "https://github.com/xdebug/xdebug/blob/master/LICENSE" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Xerox.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Xerox.json", + "referenceNumber": 320, + "name": "Xerox License", + "licenseId": "Xerox", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Xerox" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Xfig.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Xfig.json", + "referenceNumber": 171, + "name": "Xfig License", + "licenseId": "Xfig", + "seeAlso": [ + "https://github.com/Distrotech/transfig/blob/master/transfig/transfig.c", + "https://fedoraproject.org/wiki/Licensing:MIT#Xfig_Variant", + "https://sourceforge.net/p/mcj/xfig/ci/master/tree/src/Makefile.am" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/XFree86-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/XFree86-1.1.json", + "referenceNumber": 247, + "name": "XFree86 License 1.1", + "licenseId": "XFree86-1.1", + "seeAlso": [ + "http://www.xfree86.org/current/LICENSE4.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/xinetd.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/xinetd.json", + "referenceNumber": 17, + "name": "xinetd License", + "licenseId": "xinetd", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Xinetd_License" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/xkeyboard-config-Zinoviev.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/xkeyboard-config-Zinoviev.json", + "referenceNumber": 445, + "name": "xkeyboard-config Zinoviev License", + "licenseId": "xkeyboard-config-Zinoviev", + "seeAlso": [ + "https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config/-/blob/master/COPYING?ref_type\u003dheads#L178" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/xlock.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/xlock.json", + "referenceNumber": 361, + "name": "xlock License", + "licenseId": "xlock", + "seeAlso": [ + "https://fossies.org/linux/tiff/contrib/ras/ras2tif.c" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Xnet.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Xnet.json", + "referenceNumber": 125, + "name": "X.Net License", + "licenseId": "Xnet", + "seeAlso": [ + "https://opensource.org/licenses/Xnet" + ], + "isOsiApproved": true + }, + { + "reference": "https://spdx.org/licenses/xpp.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/xpp.json", + "referenceNumber": 55, + "name": "XPP License", + "licenseId": "xpp", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/xpp" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/XSkat.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/XSkat.json", + "referenceNumber": 356, + "name": "XSkat License", + "licenseId": "XSkat", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/XSkat_License" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/YPL-1.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/YPL-1.0.json", + "referenceNumber": 27, + "name": "Yahoo! Public License v1.0", + "licenseId": "YPL-1.0", + "seeAlso": [ + "http://www.zimbra.com/license/yahoo_public_license_1.0.html" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/YPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/YPL-1.1.json", + "referenceNumber": 170, + "name": "Yahoo! Public License v1.1", + "licenseId": "YPL-1.1", + "seeAlso": [ + "http://www.zimbra.com/license/yahoo_public_license_1.1.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Zed.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Zed.json", + "referenceNumber": 505, + "name": "Zed License", + "licenseId": "Zed", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/Zed" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Zeeff.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Zeeff.json", + "referenceNumber": 177, + "name": "Zeeff License", + "licenseId": "Zeeff", + "seeAlso": [ + "ftp://ftp.tin.org/pub/news/utils/newsx/newsx-1.6.tar.gz" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Zend-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Zend-2.0.json", + "referenceNumber": 290, + "name": "Zend License v2.0", + "licenseId": "Zend-2.0", + "seeAlso": [ + "https://web.archive.org/web/20130517195954/http://www.zend.com/license/2_00.txt" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Zimbra-1.3.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Zimbra-1.3.json", + "referenceNumber": 561, + "name": "Zimbra Public License v1.3", + "licenseId": "Zimbra-1.3", + "seeAlso": [ + "http://web.archive.org/web/20100302225219/http://www.zimbra.com/license/zimbra-public-license-1-3.html" + ], + "isOsiApproved": false, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/Zimbra-1.4.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Zimbra-1.4.json", + "referenceNumber": 185, + "name": "Zimbra Public License v1.4", + "licenseId": "Zimbra-1.4", + "seeAlso": [ + "http://www.zimbra.com/legal/zimbra-public-license-1-4" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/Zlib.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/Zlib.json", + "referenceNumber": 606, + "name": "zlib License", + "licenseId": "Zlib", + "seeAlso": [ + "http://www.zlib.net/zlib_license.html", + "https://opensource.org/licenses/Zlib" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/zlib-acknowledgement.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/zlib-acknowledgement.json", + "referenceNumber": 560, + "name": "zlib/libpng License with Acknowledgement", + "licenseId": "zlib-acknowledgement", + "seeAlso": [ + "https://fedoraproject.org/wiki/Licensing/ZlibWithAcknowledgement" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ZPL-1.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ZPL-1.1.json", + "referenceNumber": 79, + "name": "Zope Public License 1.1", + "licenseId": "ZPL-1.1", + "seeAlso": [ + "http://old.zope.org/Resources/License/ZPL-1.1" + ], + "isOsiApproved": false + }, + { + "reference": "https://spdx.org/licenses/ZPL-2.0.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ZPL-2.0.json", + "referenceNumber": 629, + "name": "Zope Public License 2.0", + "licenseId": "ZPL-2.0", + "seeAlso": [ + "http://old.zope.org/Resources/License/ZPL-2.0", + "https://opensource.org/licenses/ZPL-2.0" + ], + "isOsiApproved": true, + "isFsfLibre": true + }, + { + "reference": "https://spdx.org/licenses/ZPL-2.1.html", + "isDeprecatedLicenseId": false, + "detailsUrl": "https://spdx.org/licenses/ZPL-2.1.json", + "referenceNumber": 301, + "name": "Zope Public License 2.1", + "licenseId": "ZPL-2.1", + "seeAlso": [ + "http://old.zope.org/Resources/ZPL/" + ], + "isOsiApproved": true, + "isFsfLibre": true + } + ], + "releaseDate": "2024-02-08" +} \ No newline at end of file diff --git a/pkg/licenses/files/licenses_spdx_exception.json b/pkg/licenses/files/licenses_spdx_exception.json new file mode 100644 index 0000000..e2ad728 --- /dev/null +++ b/pkg/licenses/files/licenses_spdx_exception.json @@ -0,0 +1,772 @@ +{ + "licenseListVersion": "3.23", + "exceptions": [ + { + "reference": "./389-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./389-exception.html", + "referenceNumber": 41, + "name": "389 Directory Server Exception", + "licenseExceptionId": "389-exception", + "seeAlso": [ + "http://directory.fedoraproject.org/wiki/GPL_Exception_License_Text", + "https://web.archive.org/web/20080828121337/http://directory.fedoraproject.org/wiki/GPL_Exception_License_Text" + ] + }, + { + "reference": "./Asterisk-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Asterisk-exception.html", + "referenceNumber": 25, + "name": "Asterisk exception", + "licenseExceptionId": "Asterisk-exception", + "seeAlso": [ + "https://github.com/asterisk/libpri/blob/7f91151e6bd10957c746c031c1f4a030e8146e9a/pri.c#L22", + "https://github.com/asterisk/libss7/blob/03e81bcd0d28ff25d4c77c78351ddadc82ff5c3f/ss7.c#L24" + ] + }, + { + "reference": "./Autoconf-exception-2.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Autoconf-exception-2.0.html", + "referenceNumber": 47, + "name": "Autoconf exception 2.0", + "licenseExceptionId": "Autoconf-exception-2.0", + "seeAlso": [ + "http://ac-archive.sourceforge.net/doc/copyright.html", + "http://ftp.gnu.org/gnu/autoconf/autoconf-2.59.tar.gz" + ] + }, + { + "reference": "./Autoconf-exception-3.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Autoconf-exception-3.0.html", + "referenceNumber": 18, + "name": "Autoconf exception 3.0", + "licenseExceptionId": "Autoconf-exception-3.0", + "seeAlso": [ + "http://www.gnu.org/licenses/autoconf-exception-3.0.html" + ] + }, + { + "reference": "./Autoconf-exception-generic.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Autoconf-exception-generic.html", + "referenceNumber": 1, + "name": "Autoconf generic exception", + "licenseExceptionId": "Autoconf-exception-generic", + "seeAlso": [ + "https://launchpad.net/ubuntu/precise/+source/xmltooling/+copyright", + "https://tracker.debian.org/media/packages/s/sipwitch/copyright-1.9.15-3", + "https://opensource.apple.com/source/launchd/launchd-258.1/launchd/compile.auto.html", + "https://git.savannah.gnu.org/gitweb/?p\u003dgnulib.git;a\u003dblob;f\u003dgnulib-tool;h\u003d029a8cf377ad8d8f2d9e54061bf2f20496ad2eef;hb\u003d73c74ba0197e6566da6882c87b1adee63e24d75c#l407" + ] + }, + { + "reference": "./Autoconf-exception-generic-3.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Autoconf-exception-generic-3.0.html", + "referenceNumber": 58, + "name": "Autoconf generic exception for GPL-3.0", + "licenseExceptionId": "Autoconf-exception-generic-3.0", + "seeAlso": [ + "https://src.fedoraproject.org/rpms/redhat-rpm-config/blob/rawhide/f/config.guess" + ] + }, + { + "reference": "./Autoconf-exception-macro.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Autoconf-exception-macro.html", + "referenceNumber": 29, + "name": "Autoconf macro exception", + "licenseExceptionId": "Autoconf-exception-macro", + "seeAlso": [ + "https://github.com/freedesktop/xorg-macros/blob/39f07f7db58ebbf3dcb64a2bf9098ed5cf3d1223/xorg-macros.m4.in", + "https://www.gnu.org/software/autoconf-archive/ax_pthread.html", + "https://launchpad.net/ubuntu/precise/+source/xmltooling/+copyright" + ] + }, + { + "reference": "./Bison-exception-1.24.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Bison-exception-1.24.html", + "referenceNumber": 53, + "name": "Bison exception 1.24", + "licenseExceptionId": "Bison-exception-1.24", + "seeAlso": [ + "https://github.com/arineng/rwhoisd/blob/master/rwhoisd/mkdb/y.tab.c#L180" + ] + }, + { + "reference": "./Bison-exception-2.2.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Bison-exception-2.2.html", + "referenceNumber": 19, + "name": "Bison exception 2.2", + "licenseExceptionId": "Bison-exception-2.2", + "seeAlso": [ + "http://git.savannah.gnu.org/cgit/bison.git/tree/data/yacc.c?id\u003d193d7c7054ba7197b0789e14965b739162319b5e#n141" + ] + }, + { + "reference": "./Bootloader-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Bootloader-exception.html", + "referenceNumber": 44, + "name": "Bootloader Distribution Exception", + "licenseExceptionId": "Bootloader-exception", + "seeAlso": [ + "https://github.com/pyinstaller/pyinstaller/blob/develop/COPYING.txt" + ] + }, + { + "reference": "./Classpath-exception-2.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Classpath-exception-2.0.html", + "referenceNumber": 56, + "name": "Classpath exception 2.0", + "licenseExceptionId": "Classpath-exception-2.0", + "seeAlso": [ + "http://www.gnu.org/software/classpath/license.html", + "https://fedoraproject.org/wiki/Licensing/GPL_Classpath_Exception" + ] + }, + { + "reference": "./CLISP-exception-2.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./CLISP-exception-2.0.html", + "referenceNumber": 59, + "name": "CLISP exception 2.0", + "licenseExceptionId": "CLISP-exception-2.0", + "seeAlso": [ + "http://sourceforge.net/p/clisp/clisp/ci/default/tree/COPYRIGHT" + ] + }, + { + "reference": "./cryptsetup-OpenSSL-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./cryptsetup-OpenSSL-exception.html", + "referenceNumber": 30, + "name": "cryptsetup OpenSSL exception", + "licenseExceptionId": "cryptsetup-OpenSSL-exception", + "seeAlso": [ + "https://gitlab.com/cryptsetup/cryptsetup/-/blob/main/COPYING", + "https://gitlab.nic.cz/datovka/datovka/-/blob/develop/COPYING", + "https://github.com/nbs-system/naxsi/blob/951123ad456bdf5ac94e8d8819342fe3d49bc002/naxsi_src/naxsi_raw.c", + "http://web.mit.edu/jgross/arch/amd64_deb60/bin/mosh" + ] + }, + { + "reference": "./DigiRule-FOSS-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./DigiRule-FOSS-exception.html", + "referenceNumber": 26, + "name": "DigiRule FOSS License Exception", + "licenseExceptionId": "DigiRule-FOSS-exception", + "seeAlso": [ + "http://www.digirulesolutions.com/drupal/foss" + ] + }, + { + "reference": "./eCos-exception-2.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./eCos-exception-2.0.html", + "referenceNumber": 31, + "name": "eCos exception 2.0", + "licenseExceptionId": "eCos-exception-2.0", + "seeAlso": [ + "http://ecos.sourceware.org/license-overview.html" + ] + }, + { + "reference": "./Fawkes-Runtime-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Fawkes-Runtime-exception.html", + "referenceNumber": 11, + "name": "Fawkes Runtime Exception", + "licenseExceptionId": "Fawkes-Runtime-exception", + "seeAlso": [ + "http://www.fawkesrobotics.org/about/license/" + ] + }, + { + "reference": "./FLTK-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./FLTK-exception.html", + "referenceNumber": 37, + "name": "FLTK exception", + "licenseExceptionId": "FLTK-exception", + "seeAlso": [ + "http://www.fltk.org/COPYING.php" + ] + }, + { + "reference": "./fmt-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./fmt-exception.html", + "referenceNumber": 35, + "name": "fmt exception", + "licenseExceptionId": "fmt-exception", + "seeAlso": [ + "https://github.com/fmtlib/fmt/blob/master/LICENSE", + "https://github.com/fmtlib/fmt/blob/2eb363297b24cd71a68ccfb20ff755430f17e60f/LICENSE#L22C1-L27C62" + ] + }, + { + "reference": "./Font-exception-2.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Font-exception-2.0.html", + "referenceNumber": 38, + "name": "Font exception 2.0", + "licenseExceptionId": "Font-exception-2.0", + "seeAlso": [ + "http://www.gnu.org/licenses/gpl-faq.html#FontException" + ] + }, + { + "reference": "./freertos-exception-2.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./freertos-exception-2.0.html", + "referenceNumber": 17, + "name": "FreeRTOS Exception 2.0", + "licenseExceptionId": "freertos-exception-2.0", + "seeAlso": [ + "https://web.archive.org/web/20060809182744/http://www.freertos.org/a00114.html" + ] + }, + { + "reference": "./GCC-exception-2.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GCC-exception-2.0.html", + "referenceNumber": 66, + "name": "GCC Runtime Library exception 2.0", + "licenseExceptionId": "GCC-exception-2.0", + "seeAlso": [ + "https://gcc.gnu.org/git/?p\u003dgcc.git;a\u003dblob;f\u003dgcc/libgcc1.c;h\u003d762f5143fc6eed57b6797c82710f3538aa52b40b;hb\u003dcb143a3ce4fb417c68f5fa2691a1b1b1053dfba9#l10", + "https://sourceware.org/git/?p\u003dglibc.git;a\u003dblob;f\u003dcsu/abi-note.c;h\u003dc2ec208e94fbe91f63d3c375bd254b884695d190;hb\u003dHEAD" + ] + }, + { + "reference": "./GCC-exception-2.0-note.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GCC-exception-2.0-note.html", + "referenceNumber": 46, + "name": "GCC Runtime Library exception 2.0 - note variant", + "licenseExceptionId": "GCC-exception-2.0-note", + "seeAlso": [ + "https://sourceware.org/git/?p\u003dglibc.git;a\u003dblob;f\u003dsysdeps/x86_64/start.S" + ] + }, + { + "reference": "./GCC-exception-3.1.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GCC-exception-3.1.html", + "referenceNumber": 12, + "name": "GCC Runtime Library exception 3.1", + "licenseExceptionId": "GCC-exception-3.1", + "seeAlso": [ + "http://www.gnu.org/licenses/gcc-exception-3.1.html" + ] + }, + { + "reference": "./Gmsh-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Gmsh-exception.html", + "referenceNumber": 15, + "name": "Gmsh exception\u003e", + "licenseExceptionId": "Gmsh-exception", + "seeAlso": [ + "https://gitlab.onelab.info/gmsh/gmsh/-/raw/master/LICENSE.txt" + ] + }, + { + "reference": "./GNAT-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GNAT-exception.html", + "referenceNumber": 7, + "name": "GNAT exception", + "licenseExceptionId": "GNAT-exception", + "seeAlso": [ + "https://github.com/AdaCore/florist/blob/master/libsrc/posix-configurable_file_limits.adb" + ] + }, + { + "reference": "./GNOME-examples-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GNOME-examples-exception.html", + "referenceNumber": 32, + "name": "GNOME examples exception", + "licenseExceptionId": "GNOME-examples-exception", + "seeAlso": [ + "https://gitlab.gnome.org/Archive/gnome-devel-docs/-/blob/master/platform-demos/C/legal.xml?ref_type\u003dheads", + "http://meldmerge.org/help/" + ] + }, + { + "reference": "./GNU-compiler-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GNU-compiler-exception.html", + "referenceNumber": 62, + "name": "GNU Compiler Exception", + "licenseExceptionId": "GNU-compiler-exception", + "seeAlso": [ + "https://sourceware.org/git?p\u003dbinutils-gdb.git;a\u003dblob;f\u003dlibiberty/unlink-if-ordinary.c;h\u003de49f2f2f67bfdb10d6b2bd579b0e01cad0fd708e;hb\u003dHEAD#l19" + ] + }, + { + "reference": "./gnu-javamail-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./gnu-javamail-exception.html", + "referenceNumber": 8, + "name": "GNU JavaMail exception", + "licenseExceptionId": "gnu-javamail-exception", + "seeAlso": [ + "http://www.gnu.org/software/classpathx/javamail/javamail.html" + ] + }, + { + "reference": "./GPL-3.0-interface-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GPL-3.0-interface-exception.html", + "referenceNumber": 23, + "name": "GPL-3.0 Interface Exception", + "licenseExceptionId": "GPL-3.0-interface-exception", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-faq.en.html#LinkingOverControlledInterface" + ] + }, + { + "reference": "./GPL-3.0-linking-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GPL-3.0-linking-exception.html", + "referenceNumber": 21, + "name": "GPL-3.0 Linking Exception", + "licenseExceptionId": "GPL-3.0-linking-exception", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs" + ] + }, + { + "reference": "./GPL-3.0-linking-source-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GPL-3.0-linking-source-exception.html", + "referenceNumber": 54, + "name": "GPL-3.0 Linking Exception (with Corresponding Source)", + "licenseExceptionId": "GPL-3.0-linking-source-exception", + "seeAlso": [ + "https://www.gnu.org/licenses/gpl-faq.en.html#GPLIncompatibleLibs", + "https://github.com/mirror/wget/blob/master/src/http.c#L20" + ] + }, + { + "reference": "./GPL-CC-1.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GPL-CC-1.0.html", + "referenceNumber": 57, + "name": "GPL Cooperation Commitment 1.0", + "licenseExceptionId": "GPL-CC-1.0", + "seeAlso": [ + "https://github.com/gplcc/gplcc/blob/master/Project/COMMITMENT", + "https://gplcc.github.io/gplcc/Project/README-PROJECT.html" + ] + }, + { + "reference": "./GStreamer-exception-2005.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GStreamer-exception-2005.html", + "referenceNumber": 28, + "name": "GStreamer Exception (2005)", + "licenseExceptionId": "GStreamer-exception-2005", + "seeAlso": [ + "https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/licensing.html?gi-language\u003dc#licensing-of-applications-using-gstreamer" + ] + }, + { + "reference": "./GStreamer-exception-2008.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./GStreamer-exception-2008.html", + "referenceNumber": 67, + "name": "GStreamer Exception (2008)", + "licenseExceptionId": "GStreamer-exception-2008", + "seeAlso": [ + "https://gstreamer.freedesktop.org/documentation/frequently-asked-questions/licensing.html?gi-language\u003dc#licensing-of-applications-using-gstreamer" + ] + }, + { + "reference": "./i2p-gpl-java-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./i2p-gpl-java-exception.html", + "referenceNumber": 22, + "name": "i2p GPL+Java Exception", + "licenseExceptionId": "i2p-gpl-java-exception", + "seeAlso": [ + "http://geti2p.net/en/get-involved/develop/licenses#java_exception" + ] + }, + { + "reference": "./KiCad-libraries-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./KiCad-libraries-exception.html", + "referenceNumber": 39, + "name": "KiCad Libraries Exception", + "licenseExceptionId": "KiCad-libraries-exception", + "seeAlso": [ + "https://www.kicad.org/libraries/license/" + ] + }, + { + "reference": "./LGPL-3.0-linking-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./LGPL-3.0-linking-exception.html", + "referenceNumber": 13, + "name": "LGPL-3.0 Linking Exception", + "licenseExceptionId": "LGPL-3.0-linking-exception", + "seeAlso": [ + "https://raw.githubusercontent.com/go-xmlpath/xmlpath/v2/LICENSE", + "https://github.com/goamz/goamz/blob/master/LICENSE", + "https://github.com/juju/errors/blob/master/LICENSE" + ] + }, + { + "reference": "./libpri-OpenH323-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./libpri-OpenH323-exception.html", + "referenceNumber": 65, + "name": "libpri OpenH323 exception", + "licenseExceptionId": "libpri-OpenH323-exception", + "seeAlso": [ + "https://github.com/asterisk/libpri/blob/1.6.0/README#L19-L22" + ] + }, + { + "reference": "./Libtool-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Libtool-exception.html", + "referenceNumber": 20, + "name": "Libtool Exception", + "licenseExceptionId": "Libtool-exception", + "seeAlso": [ + "http://git.savannah.gnu.org/cgit/libtool.git/tree/m4/libtool.m4", + "https://git.savannah.gnu.org/cgit/libtool.git/tree/libltdl/lt__alloc.c#n15" + ] + }, + { + "reference": "./Linux-syscall-note.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Linux-syscall-note.html", + "referenceNumber": 34, + "name": "Linux Syscall Note", + "licenseExceptionId": "Linux-syscall-note", + "seeAlso": [ + "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/COPYING" + ] + }, + { + "reference": "./LLGPL.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./LLGPL.html", + "referenceNumber": 51, + "name": "LLGPL Preamble", + "licenseExceptionId": "LLGPL", + "seeAlso": [ + "http://opensource.franz.com/preamble.html" + ] + }, + { + "reference": "./LLVM-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./LLVM-exception.html", + "referenceNumber": 24, + "name": "LLVM Exception", + "licenseExceptionId": "LLVM-exception", + "seeAlso": [ + "http://llvm.org/foundation/relicensing/LICENSE.txt" + ] + }, + { + "reference": "./LZMA-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./LZMA-exception.html", + "referenceNumber": 60, + "name": "LZMA exception", + "licenseExceptionId": "LZMA-exception", + "seeAlso": [ + "http://nsis.sourceforge.net/Docs/AppendixI.html#I.6" + ] + }, + { + "reference": "./mif-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./mif-exception.html", + "referenceNumber": 5, + "name": "Macros and Inline Functions Exception", + "licenseExceptionId": "mif-exception", + "seeAlso": [ + "http://www.scs.stanford.edu/histar/src/lib/cppsup/exception", + "http://dev.bertos.org/doxygen/", + "https://www.threadingbuildingblocks.org/licensing" + ] + }, + { + "reference": "./Nokia-Qt-exception-1.1.json", + "isDeprecatedLicenseId": true, + "detailsUrl": "./Nokia-Qt-exception-1.1.html", + "referenceNumber": 9, + "name": "Nokia Qt LGPL exception 1.1", + "licenseExceptionId": "Nokia-Qt-exception-1.1", + "seeAlso": [ + "https://www.keepassx.org/dev/projects/keepassx/repository/revisions/b8dfb9cc4d5133e0f09cd7533d15a4f1c19a40f2/entry/LICENSE.NOKIA-LGPL-EXCEPTION" + ] + }, + { + "reference": "./OCaml-LGPL-linking-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./OCaml-LGPL-linking-exception.html", + "referenceNumber": 63, + "name": "OCaml LGPL Linking Exception", + "licenseExceptionId": "OCaml-LGPL-linking-exception", + "seeAlso": [ + "https://caml.inria.fr/ocaml/license.en.html" + ] + }, + { + "reference": "./OCCT-exception-1.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./OCCT-exception-1.0.html", + "referenceNumber": 6, + "name": "Open CASCADE Exception 1.0", + "licenseExceptionId": "OCCT-exception-1.0", + "seeAlso": [ + "http://www.opencascade.com/content/licensing" + ] + }, + { + "reference": "./OpenJDK-assembly-exception-1.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./OpenJDK-assembly-exception-1.0.html", + "referenceNumber": 43, + "name": "OpenJDK Assembly exception 1.0", + "licenseExceptionId": "OpenJDK-assembly-exception-1.0", + "seeAlso": [ + "http://openjdk.java.net/legal/assembly-exception.html" + ] + }, + { + "reference": "./openvpn-openssl-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./openvpn-openssl-exception.html", + "referenceNumber": 52, + "name": "OpenVPN OpenSSL Exception", + "licenseExceptionId": "openvpn-openssl-exception", + "seeAlso": [ + "http://openvpn.net/index.php/license.html", + "https://github.com/psycopg/psycopg2/blob/2_9_3/LICENSE#L14" + ] + }, + { + "reference": "./PS-or-PDF-font-exception-20170817.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./PS-or-PDF-font-exception-20170817.html", + "referenceNumber": 14, + "name": "PS/PDF font exception (2017-08-17)", + "licenseExceptionId": "PS-or-PDF-font-exception-20170817", + "seeAlso": [ + "https://github.com/ArtifexSoftware/urw-base35-fonts/blob/65962e27febc3883a17e651cdb23e783668c996f/LICENSE" + ] + }, + { + "reference": "./QPL-1.0-INRIA-2004-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./QPL-1.0-INRIA-2004-exception.html", + "referenceNumber": 16, + "name": "INRIA QPL 1.0 2004 variant exception", + "licenseExceptionId": "QPL-1.0-INRIA-2004-exception", + "seeAlso": [ + "https://git.frama-c.com/pub/frama-c/-/blob/master/licenses/Q_MODIFIED_LICENSE", + "https://github.com/maranget/hevea/blob/master/LICENSE" + ] + }, + { + "reference": "./Qt-GPL-exception-1.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Qt-GPL-exception-1.0.html", + "referenceNumber": 40, + "name": "Qt GPL exception 1.0", + "licenseExceptionId": "Qt-GPL-exception-1.0", + "seeAlso": [ + "http://code.qt.io/cgit/qt/qtbase.git/tree/LICENSE.GPL3-EXCEPT" + ] + }, + { + "reference": "./Qt-LGPL-exception-1.1.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Qt-LGPL-exception-1.1.html", + "referenceNumber": 45, + "name": "Qt LGPL exception 1.1", + "licenseExceptionId": "Qt-LGPL-exception-1.1", + "seeAlso": [ + "http://code.qt.io/cgit/qt/qtbase.git/tree/LGPL_EXCEPTION.txt" + ] + }, + { + "reference": "./Qwt-exception-1.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Qwt-exception-1.0.html", + "referenceNumber": 49, + "name": "Qwt exception 1.0", + "licenseExceptionId": "Qwt-exception-1.0", + "seeAlso": [ + "http://qwt.sourceforge.net/qwtlicense.html" + ] + }, + { + "reference": "./SANE-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./SANE-exception.html", + "referenceNumber": 48, + "name": "SANE Exception", + "licenseExceptionId": "SANE-exception", + "seeAlso": [ + "https://github.com/alexpevzner/sane-airscan/blob/master/LICENSE", + "https://gitlab.com/sane-project/backends/-/blob/master/sanei/sanei_pp.c?ref_type\u003dheads", + "https://gitlab.com/sane-project/frontends/-/blob/master/sanei/sanei_codec_ascii.c?ref_type\u003dheads" + ] + }, + { + "reference": "./SHL-2.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./SHL-2.0.html", + "referenceNumber": 33, + "name": "Solderpad Hardware License v2.0", + "licenseExceptionId": "SHL-2.0", + "seeAlso": [ + "https://solderpad.org/licenses/SHL-2.0/" + ] + }, + { + "reference": "./SHL-2.1.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./SHL-2.1.html", + "referenceNumber": 64, + "name": "Solderpad Hardware License v2.1", + "licenseExceptionId": "SHL-2.1", + "seeAlso": [ + "https://solderpad.org/licenses/SHL-2.1/" + ] + }, + { + "reference": "./stunnel-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./stunnel-exception.html", + "referenceNumber": 3, + "name": "stunnel Exception", + "licenseExceptionId": "stunnel-exception", + "seeAlso": [ + "https://github.com/mtrojnar/stunnel/blob/master/COPYING.md" + ] + }, + { + "reference": "./SWI-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./SWI-exception.html", + "referenceNumber": 50, + "name": "SWI exception", + "licenseExceptionId": "SWI-exception", + "seeAlso": [ + "https://github.com/SWI-Prolog/packages-clpqr/blob/bfa80b9270274f0800120d5b8e6fef42ac2dc6a5/clpqr/class.pl" + ] + }, + { + "reference": "./Swift-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Swift-exception.html", + "referenceNumber": 42, + "name": "Swift Exception", + "licenseExceptionId": "Swift-exception", + "seeAlso": [ + "https://swift.org/LICENSE.txt", + "https://github.com/apple/swift-package-manager/blob/7ab2275f447a5eb37497ed63a9340f8a6d1e488b/LICENSE.txt#L205" + ] + }, + { + "reference": "./Texinfo-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Texinfo-exception.html", + "referenceNumber": 36, + "name": "Texinfo exception", + "licenseExceptionId": "Texinfo-exception", + "seeAlso": [ + "https://git.savannah.gnu.org/cgit/automake.git/tree/lib/texinfo.tex?h\u003dv1.16.5#n23" + ] + }, + { + "reference": "./u-boot-exception-2.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./u-boot-exception-2.0.html", + "referenceNumber": 61, + "name": "U-Boot exception 2.0", + "licenseExceptionId": "u-boot-exception-2.0", + "seeAlso": [ + "http://git.denx.de/?p\u003du-boot.git;a\u003dblob;f\u003dLicenses/Exceptions" + ] + }, + { + "reference": "./UBDL-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./UBDL-exception.html", + "referenceNumber": 2, + "name": "Unmodified Binary Distribution exception", + "licenseExceptionId": "UBDL-exception", + "seeAlso": [ + "https://github.com/ipxe/ipxe/blob/master/COPYING.UBDL" + ] + }, + { + "reference": "./Universal-FOSS-exception-1.0.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./Universal-FOSS-exception-1.0.html", + "referenceNumber": 27, + "name": "Universal FOSS Exception, Version 1.0", + "licenseExceptionId": "Universal-FOSS-exception-1.0", + "seeAlso": [ + "https://oss.oracle.com/licenses/universal-foss-exception/" + ] + }, + { + "reference": "./vsftpd-openssl-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./vsftpd-openssl-exception.html", + "referenceNumber": 10, + "name": "vsftpd OpenSSL exception", + "licenseExceptionId": "vsftpd-openssl-exception", + "seeAlso": [ + "https://git.stg.centos.org/source-git/vsftpd/blob/f727873674d9c9cd7afcae6677aa782eb54c8362/f/LICENSE", + "https://launchpad.net/debian/squeeze/+source/vsftpd/+copyright", + "https://github.com/richardcochran/vsftpd/blob/master/COPYING" + ] + }, + { + "reference": "./WxWindows-exception-3.1.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./WxWindows-exception-3.1.html", + "referenceNumber": 4, + "name": "WxWindows Library Exception 3.1", + "licenseExceptionId": "WxWindows-exception-3.1", + "seeAlso": [ + "http://www.opensource.org/licenses/WXwindows" + ] + }, + { + "reference": "./x11vnc-openssl-exception.json", + "isDeprecatedLicenseId": false, + "detailsUrl": "./x11vnc-openssl-exception.html", + "referenceNumber": 55, + "name": "x11vnc OpenSSL Exception", + "licenseExceptionId": "x11vnc-openssl-exception", + "seeAlso": [ + "https://github.com/LibVNC/x11vnc/blob/master/src/8to24.c#L22" + ] + } + ], + "releaseDate": "2024-02-08" +} \ No newline at end of file diff --git a/pkg/licenses/license.go b/pkg/licenses/license.go index 3085bb4..2c0bc32 100644 --- a/pkg/licenses/license.go +++ b/pkg/licenses/license.go @@ -15,7 +15,10 @@ package licenses import ( + "errors" "strings" + + "github.com/github/go-spdx/v2/spdxexp" ) type License interface { @@ -24,6 +27,10 @@ type License interface { Deprecated() bool OsiApproved() bool FsfLibre() bool + FreeAnyUse() bool + Restrictive() bool + Exception() bool + Source() string } type meta struct { @@ -32,6 +39,10 @@ type meta struct { deprecated bool osiApproved bool fsfLibre bool + freeAnyUse bool + restrictive bool + exception bool + source string } func (m meta) Name() string { @@ -45,6 +56,7 @@ func (m meta) ShortID() string { func (m meta) Deprecated() bool { return m.deprecated } + func (m meta) OsiApproved() bool { return m.osiApproved } @@ -53,584 +65,112 @@ func (m meta) FsfLibre() bool { return m.fsfLibre } -var freeAnyUser = map[string]bool{ - "cc0-1.0": true, - "unlicense": true, - "0bsd": true, +func (m meta) FreeAnyUse() bool { + return m.freeAnyUse } -var spdxLicenseList = map[string]meta{ - "0bsd": {name: "BSD Zero Clause License", short: "0BSD", deprecated: false}, - "aal": {name: "Attribution Assurance License", short: "AAL", deprecated: false}, - "abstyles": {name: "Abstyles License", short: "Abstyles", deprecated: false}, - "adobe-2006": {name: "Adobe Systems Incorporated Source Code License Agreement", short: "Adobe-2006", deprecated: false}, - "adobe-glyph": {name: "Adobe Glyph List License", short: "Adobe-Glyph", deprecated: false}, - "adsl": {name: "Amazon Digital Services License", short: "ADSL", deprecated: false}, - "afl-1.1": {name: "Academic Free License v1.1", short: "AFL-1.1", deprecated: false}, - "afl-1.2": {name: "Academic Free License v1.2", short: "AFL-1.2", deprecated: false}, - "afl-2.0": {name: "Academic Free License v2.0", short: "AFL-2.0", deprecated: false}, - "afl-2.1": {name: "Academic Free License v2.1", short: "AFL-2.1", deprecated: false}, - "afl-3.0": {name: "Academic Free License v3.0", short: "AFL-3.0", deprecated: false}, - "afmparse": {name: "Afmparse License", short: "Afmparse", deprecated: false}, - "agpl-1.0": {name: "Affero General Public License v1.0", short: "AGPL-1.0", deprecated: true}, - "agpl-1.0-only": {name: "Affero General Public License v1.0 only", short: "AGPL-1.0-only", deprecated: false}, - "agpl-1.0-or-later": {name: "Affero General Public License v1.0 or later", short: "AGPL-1.0-or-later", deprecated: false}, - "agpl-3.0": {name: "GNU Affero General Public License v3.0", short: "AGPL-3.0", deprecated: true}, - "agpl-3.0-only": {name: "GNU Affero General Public License v3.0 only", short: "AGPL-3.0-only", deprecated: false}, - "agpl-3.0-or-later": {name: "GNU Affero General Public License v3.0 or later", short: "AGPL-3.0-or-later", deprecated: false}, - "aladdin": {name: "Aladdin Free Public License", short: "Aladdin", deprecated: false}, - "amdplpa": {name: "AMD's plpa_map.c License", short: "AMDPLPA", deprecated: false}, - "aml": {name: "Apple MIT License", short: "AML", deprecated: false}, - "ampas": {name: "Academy of Motion Picture Arts and Sciences BSD", short: "AMPAS", deprecated: false}, - "antlr-pd": {name: "ANTLR Software Rights Notice", short: "ANTLR-PD", deprecated: false}, - "antlr-pd-fallback": {name: "ANTLR Software Rights Notice with license fallback", short: "ANTLR-PD-fallback", deprecated: false}, - "apache-1.0": {name: "Apache License 1.0", short: "Apache-1.0", deprecated: false}, - "apache-1.1": {name: "Apache License 1.1", short: "Apache-1.1", deprecated: false}, - "apache-2.0": {name: "Apache License 2.0", short: "Apache-2.0", deprecated: false}, - "apafml": {name: "Adobe Postscript AFM License", short: "APAFML", deprecated: false}, - "apl-1.0": {name: "Adaptive Public License 1.0", short: "APL-1.0", deprecated: false}, - "app-s2p": {name: "App::s2p License", short: "App-s2p", deprecated: false}, - "apsl-1.0": {name: "Apple Public Source License 1.0", short: "APSL-1.0", deprecated: false}, - "apsl-1.1": {name: "Apple Public Source License 1.1", short: "APSL-1.1", deprecated: false}, - "apsl-1.2": {name: "Apple Public Source License 1.2", short: "APSL-1.2", deprecated: false}, - "apsl-2.0": {name: "Apple Public Source License 2.0", short: "APSL-2.0", deprecated: false}, - "arphic-1999": {name: "Arphic Public License", short: "Arphic-1999", deprecated: false}, - "artistic-1.0": {name: "Artistic License 1.0", short: "Artistic-1.0", deprecated: false}, - "artistic-1.0-cl8": {name: "Artistic License 1.0 w/clause 8", short: "Artistic-1.0-cl8", deprecated: false}, - "artistic-1.0-perl": {name: "Artistic License 1.0 (Perl)", short: "Artistic-1.0-Perl", deprecated: false}, - "artistic-2.0": {name: "Artistic License 2.0", short: "Artistic-2.0", deprecated: false}, - "baekmuk": {name: "Baekmuk License", short: "Baekmuk", deprecated: false}, - "bahyph": {name: "Bahyph License", short: "Bahyph", deprecated: false}, - "barr": {name: "Barr License", short: "Barr", deprecated: false}, - "beerware": {name: "Beerware License", short: "Beerware", deprecated: false}, - "bitstream-charter": {name: "Bitstream Charter Font License", short: "Bitstream-Charter", deprecated: false}, - "bitstream-vera": {name: "Bitstream Vera Font License", short: "Bitstream-Vera", deprecated: false}, - "bittorrent-1.0": {name: "BitTorrent Open Source License v1.0", short: "BitTorrent-1.0", deprecated: false}, - "bittorrent-1.1": {name: "BitTorrent Open Source License v1.1", short: "BitTorrent-1.1", deprecated: false}, - "blessing": {name: "SQLite Blessing", short: "blessing", deprecated: false}, - "blueoak-1.0.0": {name: "Blue Oak Model License 1.0.0", short: "BlueOak-1.0.0", deprecated: false}, - "borceux": {name: "Borceux license", short: "Borceux", deprecated: false}, - "bsd-1-clause": {name: "BSD 1-Clause License", short: "BSD-1-Clause", deprecated: false}, - "bsd-2-clause": {name: "BSD 2-Clause Simplified License", short: "BSD-2-Clause", deprecated: false}, - "bsd-2-clause-freebsd": {name: "BSD 2-Clause FreeBSD License", short: "BSD-2-Clause-FreeBSD", deprecated: true}, - "bsd-2-clause-netbsd": {name: "BSD 2-Clause NetBSD License", short: "BSD-2-Clause-NetBSD", deprecated: true}, - "bsd-2-clause-patent": {name: "BSD-2-Clause Plus Patent License", short: "BSD-2-Clause-Patent", deprecated: false}, - "bsd-2-clause-views": {name: "BSD 2-Clause with views sentence", short: "BSD-2-Clause-Views", deprecated: false}, - "bsd-3-clause": {name: "BSD 3-Clause New or Revised License", short: "BSD-3-Clause", deprecated: false}, - "bsd-3-clause-attribution": {name: "BSD with attribution", short: "BSD-3-Clause-Attribution", deprecated: false}, - "bsd-3-clause-clear": {name: "BSD 3-Clause Clear License", short: "BSD-3-Clause-Clear", deprecated: false}, - "bsd-3-clause-lbnl": {name: "Lawrence Berkeley National Labs BSD variant license", short: "BSD-3-Clause-LBNL", deprecated: false}, - "bsd-3-clause-modification": {name: "BSD 3-Clause Modification", short: "BSD-3-Clause-Modification", deprecated: false}, - "bsd-3-clause-no-military-license": {name: "BSD 3-Clause No Military License", short: "BSD-3-Clause-No-Military-License", deprecated: false}, - "bsd-3-clause-no-nuclear-license": {name: "BSD 3-Clause No Nuclear License", short: "BSD-3-Clause-No-Nuclear-License", deprecated: false}, - "bsd-3-clause-no-nuclear-license-2014": {name: "BSD 3-Clause No Nuclear License 2014", short: "BSD-3-Clause-No-Nuclear-License-2014", deprecated: false}, - "bsd-3-clause-no-nuclear-warranty": {name: "BSD 3-Clause No Nuclear Warranty", short: "BSD-3-Clause-No-Nuclear-Warranty", deprecated: false}, - "bsd-3-clause-open-mpi": {name: "BSD 3-Clause Open MPI variant", short: "BSD-3-Clause-Open-MPI", deprecated: false}, - "bsd-4-clause": {name: "BSD 4-Clause Original or Old License", short: "BSD-4-Clause", deprecated: false}, - "bsd-4-clause-shortened": {name: "BSD 4 Clause Shortened", short: "BSD-4-Clause-Shortened", deprecated: false}, - "bsd-4-clause-uc": {name: "BSD-4-Clause (University of California-Specific)", short: "BSD-4-Clause-UC", deprecated: false}, - "bsd-protection": {name: "BSD Protection License", short: "BSD-Protection", deprecated: false}, - "bsd-source-code": {name: "BSD Source Code Attribution", short: "BSD-Source-Code", deprecated: false}, - "bsl-1.0": {name: "Boost Software License 1.0", short: "BSL-1.0", deprecated: false}, - "busl-1.1": {name: "Business Source License 1.1", short: "BUSL-1.1", deprecated: false}, - "bzip2-1.0.5": {name: "bzip2 and libbzip2 License v1.0.5", short: "bzip2-1.0.5", deprecated: true}, - "bzip2-1.0.6": {name: "bzip2 and libbzip2 License v1.0.6", short: "bzip2-1.0.6", deprecated: false}, - "c-uda-1.0": {name: "Computational Use of Data Agreement v1.0", short: "C-UDA-1.0", deprecated: false}, - "cal-1.0": {name: "Cryptographic Autonomy License 1.0", short: "CAL-1.0", deprecated: false}, - "cal-1.0-combined-work-exception": {name: "Cryptographic Autonomy License 1.0 (Combined Work Exception)", short: "CAL-1.0-Combined-Work-Exception", deprecated: false}, - "caldera": {name: "Caldera License", short: "Caldera", deprecated: false}, - "catosl-1.1": {name: "Computer Associates Trusted Open Source License 1.1", short: "CATOSL-1.1", deprecated: false}, - "cc-by-1.0": {name: "Creative Commons Attribution 1.0 Generic", short: "CC-BY-1.0", deprecated: false}, - "cc-by-2.0": {name: "Creative Commons Attribution 2.0 Generic", short: "CC-BY-2.0", deprecated: false}, - "cc-by-2.5": {name: "Creative Commons Attribution 2.5 Generic", short: "CC-BY-2.5", deprecated: false}, - "cc-by-2.5-au": {name: "Creative Commons Attribution 2.5 Australia", short: "CC-BY-2.5-AU", deprecated: false}, - "cc-by-3.0": {name: "Creative Commons Attribution 3.0 Unported", short: "CC-BY-3.0", deprecated: false}, - "cc-by-3.0-at": {name: "Creative Commons Attribution 3.0 Austria", short: "CC-BY-3.0-AT", deprecated: false}, - "cc-by-3.0-de": {name: "Creative Commons Attribution 3.0 Germany", short: "CC-BY-3.0-DE", deprecated: false}, - "cc-by-3.0-igo": {name: "Creative Commons Attribution 3.0 IGO", short: "CC-BY-3.0-IGO", deprecated: false}, - "cc-by-3.0-nl": {name: "Creative Commons Attribution 3.0 Netherlands", short: "CC-BY-3.0-NL", deprecated: false}, - "cc-by-3.0-us": {name: "Creative Commons Attribution 3.0 United States", short: "CC-BY-3.0-US", deprecated: false}, - "cc-by-4.0": {name: "Creative Commons Attribution 4.0 International", short: "CC-BY-4.0", deprecated: false}, - "cc-by-nc-1.0": {name: "Creative Commons Attribution Non Commercial 1.0 Generic", short: "CC-BY-NC-1.0", deprecated: false}, - "cc-by-nc-2.0": {name: "Creative Commons Attribution Non Commercial 2.0 Generic", short: "CC-BY-NC-2.0", deprecated: false}, - "cc-by-nc-2.5": {name: "Creative Commons Attribution Non Commercial 2.5 Generic", short: "CC-BY-NC-2.5", deprecated: false}, - "cc-by-nc-3.0": {name: "Creative Commons Attribution Non Commercial 3.0 Unported", short: "CC-BY-NC-3.0", deprecated: false}, - "cc-by-nc-3.0-de": {name: "Creative Commons Attribution Non Commercial 3.0 Germany", short: "CC-BY-NC-3.0-DE", deprecated: false}, - "cc-by-nc-4.0": {name: "Creative Commons Attribution Non Commercial 4.0 International", short: "CC-BY-NC-4.0", deprecated: false}, - "cc-by-nc-nd-1.0": {name: "Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic", short: "CC-BY-NC-ND-1.0", deprecated: false}, - "cc-by-nc-nd-2.0": {name: "Creative Commons Attribution Non Commercial No Derivatives 2.0 Generic", short: "CC-BY-NC-ND-2.0", deprecated: false}, - "cc-by-nc-nd-2.5": {name: "Creative Commons Attribution Non Commercial No Derivatives 2.5 Generic", short: "CC-BY-NC-ND-2.5", deprecated: false}, - "cc-by-nc-nd-3.0": {name: "Creative Commons Attribution Non Commercial No Derivatives 3.0 Unported", short: "CC-BY-NC-ND-3.0", deprecated: false}, - "cc-by-nc-nd-3.0-de": {name: "Creative Commons Attribution Non Commercial No Derivatives 3.0 Germany", short: "CC-BY-NC-ND-3.0-DE", deprecated: false}, - "cc-by-nc-nd-3.0-igo": {name: "Creative Commons Attribution Non Commercial No Derivatives 3.0 IGO", short: "CC-BY-NC-ND-3.0-IGO", deprecated: false}, - "cc-by-nc-nd-4.0": {name: "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", short: "CC-BY-NC-ND-4.0", deprecated: false}, - "cc-by-nc-sa-1.0": {name: "Creative Commons Attribution Non Commercial Share Alike 1.0 Generic", short: "CC-BY-NC-SA-1.0", deprecated: false}, - "cc-by-nc-sa-2.0": {name: "Creative Commons Attribution Non Commercial Share Alike 2.0 Generic", short: "CC-BY-NC-SA-2.0", deprecated: false}, - "cc-by-nc-sa-2.0-de": {name: "Creative Commons Attribution Non Commercial Share Alike 2.0 Germany", short: "CC-BY-NC-SA-2.0-DE", deprecated: false}, - "cc-by-nc-sa-2.0-fr": {name: "Creative Commons Attribution-NonCommercial-ShareAlike 2.0 France", short: "CC-BY-NC-SA-2.0-FR", deprecated: false}, - "cc-by-nc-sa-2.0-uk": {name: "Creative Commons Attribution Non Commercial Share Alike 2.0 England and Wales", short: "CC-BY-NC-SA-2.0-UK", deprecated: false}, - "cc-by-nc-sa-2.5": {name: "Creative Commons Attribution Non Commercial Share Alike 2.5 Generic", short: "CC-BY-NC-SA-2.5", deprecated: false}, - "cc-by-nc-sa-3.0": {name: "Creative Commons Attribution Non Commercial Share Alike 3.0 Unported", short: "CC-BY-NC-SA-3.0", deprecated: false}, - "cc-by-nc-sa-3.0-de": {name: "Creative Commons Attribution Non Commercial Share Alike 3.0 Germany", short: "CC-BY-NC-SA-3.0-DE", deprecated: false}, - "cc-by-nc-sa-3.0-igo": {name: "Creative Commons Attribution Non Commercial Share Alike 3.0 IGO", short: "CC-BY-NC-SA-3.0-IGO", deprecated: false}, - "cc-by-nc-sa-4.0": {name: "Creative Commons Attribution Non Commercial Share Alike 4.0 International", short: "CC-BY-NC-SA-4.0", deprecated: false}, - "cc-by-nd-1.0": {name: "Creative Commons Attribution No Derivatives 1.0 Generic", short: "CC-BY-ND-1.0", deprecated: false}, - "cc-by-nd-2.0": {name: "Creative Commons Attribution No Derivatives 2.0 Generic", short: "CC-BY-ND-2.0", deprecated: false}, - "cc-by-nd-2.5": {name: "Creative Commons Attribution No Derivatives 2.5 Generic", short: "CC-BY-ND-2.5", deprecated: false}, - "cc-by-nd-3.0": {name: "Creative Commons Attribution No Derivatives 3.0 Unported", short: "CC-BY-ND-3.0", deprecated: false}, - "cc-by-nd-3.0-de": {name: "Creative Commons Attribution No Derivatives 3.0 Germany", short: "CC-BY-ND-3.0-DE", deprecated: false}, - "cc-by-nd-4.0": {name: "Creative Commons Attribution No Derivatives 4.0 International", short: "CC-BY-ND-4.0", deprecated: false}, - "cc-by-sa-1.0": {name: "Creative Commons Attribution Share Alike 1.0 Generic", short: "CC-BY-SA-1.0", deprecated: false}, - "cc-by-sa-2.0": {name: "Creative Commons Attribution Share Alike 2.0 Generic", short: "CC-BY-SA-2.0", deprecated: false}, - "cc-by-sa-2.0-uk": {name: "Creative Commons Attribution Share Alike 2.0 England and Wales", short: "CC-BY-SA-2.0-UK", deprecated: false}, - "cc-by-sa-2.1-jp": {name: "Creative Commons Attribution Share Alike 2.1 Japan", short: "CC-BY-SA-2.1-JP", deprecated: false}, - "cc-by-sa-2.5": {name: "Creative Commons Attribution Share Alike 2.5 Generic", short: "CC-BY-SA-2.5", deprecated: false}, - "cc-by-sa-3.0": {name: "Creative Commons Attribution Share Alike 3.0 Unported", short: "CC-BY-SA-3.0", deprecated: false}, - "cc-by-sa-3.0-at": {name: "Creative Commons Attribution Share Alike 3.0 Austria", short: "CC-BY-SA-3.0-AT", deprecated: false}, - "cc-by-sa-3.0-de": {name: "Creative Commons Attribution Share Alike 3.0 Germany", short: "CC-BY-SA-3.0-DE", deprecated: false}, - "cc-by-sa-4.0": {name: "Creative Commons Attribution Share Alike 4.0 International", short: "CC-BY-SA-4.0", deprecated: false}, - "cc-pddc": {name: "Creative Commons Public Domain Dedication and Certification", short: "CC-PDDC", deprecated: false}, - "cc0-1.0": {name: "Creative Commons Zero v1.0 Universal", short: "CC0-1.0", deprecated: false}, - "cddl-1.0": {name: "Common Development and Distribution License 1.0", short: "CDDL-1.0", deprecated: false}, - "cddl-1.1": {name: "Common Development and Distribution License 1.1", short: "CDDL-1.1", deprecated: false}, - "cdl-1.0": {name: "Common Documentation License 1.0", short: "CDL-1.0", deprecated: false}, - "cdla-permissive-1.0": {name: "Community Data License Agreement Permissive 1.0", short: "CDLA-Permissive-1.0", deprecated: false}, - "cdla-permissive-2.0": {name: "Community Data License Agreement Permissive 2.0", short: "CDLA-Permissive-2.0", deprecated: false}, - "cdla-sharing-1.0": {name: "Community Data License Agreement Sharing 1.0", short: "CDLA-Sharing-1.0", deprecated: false}, - "cecill-1.0": {name: "CeCILL Free Software License Agreement v1.0", short: "CECILL-1.0", deprecated: false}, - "cecill-1.1": {name: "CeCILL Free Software License Agreement v1.1", short: "CECILL-1.1", deprecated: false}, - "cecill-2.0": {name: "CeCILL Free Software License Agreement v2.0", short: "CECILL-2.0", deprecated: false}, - "cecill-2.1": {name: "CeCILL Free Software License Agreement v2.1", short: "CECILL-2.1", deprecated: false}, - "cecill-b": {name: "CeCILL-B Free Software License Agreement", short: "CECILL-B", deprecated: false}, - "cecill-c": {name: "CeCILL-C Free Software License Agreement", short: "CECILL-C", deprecated: false}, - "cern-ohl-1.1": {name: "CERN Open Hardware Licence v1.1", short: "CERN-OHL-1.1", deprecated: false}, - "cern-ohl-1.2": {name: "CERN Open Hardware Licence v1.2", short: "CERN-OHL-1.2", deprecated: false}, - "cern-ohl-p-2.0": {name: "CERN Open Hardware Licence Version 2 - Permissive", short: "CERN-OHL-P-2.0", deprecated: false}, - "cern-ohl-s-2.0": {name: "CERN Open Hardware Licence Version 2 - Strongly Reciprocal", short: "CERN-OHL-S-2.0", deprecated: false}, - "cern-ohl-w-2.0": {name: "CERN Open Hardware Licence Version 2 - Weakly Reciprocal", short: "CERN-OHL-W-2.0", deprecated: false}, - "checkmk": {name: "Checkmk License", short: "checkmk", deprecated: false}, - "clartistic": {name: "Clarified Artistic License", short: "ClArtistic", deprecated: false}, - "cnri-jython": {name: "CNRI Jython License", short: "CNRI-Jython", deprecated: false}, - "cnri-python": {name: "CNRI Python License", short: "CNRI-Python", deprecated: false}, - "cnri-python-gpl-compatible": {name: "CNRI Python Open Source GPL Compatible License Agreement", short: "CNRI-Python-GPL-Compatible", deprecated: false}, - "coil-1.0": {name: "Copyfree Open Innovation License", short: "COIL-1.0", deprecated: false}, - "community-spec-1.0": {name: "Community Specification License 1.0", short: "Community-Spec-1.0", deprecated: false}, - "condor-1.1": {name: "Condor Public License v1.1", short: "Condor-1.1", deprecated: false}, - "copyleft-next-0.3.0": {name: "copyleft-next 0.3.0", short: "copyleft-next-0.3.0", deprecated: false}, - "copyleft-next-0.3.1": {name: "copyleft-next 0.3.1", short: "copyleft-next-0.3.1", deprecated: false}, - "cpal-1.0": {name: "Common Public Attribution License 1.0", short: "CPAL-1.0", deprecated: false}, - "cpl-1.0": {name: "Common Public License 1.0", short: "CPL-1.0", deprecated: false}, - "cpol-1.02": {name: "Code Project Open License 1.02", short: "CPOL-1.02", deprecated: false}, - "crossword": {name: "Crossword License", short: "Crossword", deprecated: false}, - "crystalstacker": {name: "CrystalStacker License", short: "CrystalStacker", deprecated: false}, - "cua-opl-1.0": {name: "CUA Office Public License v1.0", short: "CUA-OPL-1.0", deprecated: false}, - "cube": {name: "Cube License", short: "Cube", deprecated: false}, - "curl": {name: "curl License", short: "curl", deprecated: false}, - "d-fsl-1.0": {name: "Deutsche Freie Software Lizenz", short: "D-FSL-1.0", deprecated: false}, - "diffmark": {name: "diffmark license", short: "diffmark", deprecated: false}, - "dl-de-by-2.0": {name: "Data licence Germany – attribution – version 2.0", short: "DL-DE-BY-2.0", deprecated: false}, - "doc": {name: "DOC License", short: "DOC", deprecated: false}, - "dotseqn": {name: "Dotseqn License", short: "Dotseqn", deprecated: false}, - "drl-1.0": {name: "Detection Rule License 1.0", short: "DRL-1.0", deprecated: false}, - "dsdp": {name: "DSDP License", short: "DSDP", deprecated: false}, - "dvipdfm": {name: "dvipdfm License", short: "dvipdfm", deprecated: false}, - "ecl-1.0": {name: "Educational Community License v1.0", short: "ECL-1.0", deprecated: false}, - "ecl-2.0": {name: "Educational Community License v2.0", short: "ECL-2.0", deprecated: false}, - "ecos-2.0": {name: "eCos license version 2.0", short: "eCos-2.0", deprecated: true}, - "efl-1.0": {name: "Eiffel Forum License v1.0", short: "EFL-1.0", deprecated: false}, - "efl-2.0": {name: "Eiffel Forum License v2.0", short: "EFL-2.0", deprecated: false}, - "egenix": {name: "eGenix.com Public License 1.1.0", short: "eGenix", deprecated: false}, - "elastic-2.0": {name: "Elastic License 2.0", short: "Elastic-2.0", deprecated: false}, - "entessa": {name: "Entessa Public License v1.0", short: "Entessa", deprecated: false}, - "epics": {name: "EPICS Open License", short: "EPICS", deprecated: false}, - "epl-1.0": {name: "Eclipse Public License 1.0", short: "EPL-1.0", deprecated: false}, - "epl-2.0": {name: "Eclipse Public License 2.0", short: "EPL-2.0", deprecated: false}, - "erlpl-1.1": {name: "Erlang Public License v1.1", short: "ErlPL-1.1", deprecated: false}, - "etalab-2.0": {name: "Etalab Open License 2.0", short: "etalab-2.0", deprecated: false}, - "eudatagrid": {name: "EU DataGrid Software License", short: "EUDatagrid", deprecated: false}, - "eupl-1.0": {name: "European Union Public License 1.0", short: "EUPL-1.0", deprecated: false}, - "eupl-1.1": {name: "European Union Public License 1.1", short: "EUPL-1.1", deprecated: false}, - "eupl-1.2": {name: "European Union Public License 1.2", short: "EUPL-1.2", deprecated: false}, - "eurosym": {name: "Eurosym License", short: "Eurosym", deprecated: false}, - "fair": {name: "Fair License", short: "Fair", deprecated: false}, - "fdk-aac": {name: "Fraunhofer FDK AAC Codec Library", short: "FDK-AAC", deprecated: false}, - "frameworx-1.0": {name: "Frameworx Open License 1.0", short: "Frameworx-1.0", deprecated: false}, - "freebsd-doc": {name: "FreeBSD Documentation License", short: "FreeBSD-DOC", deprecated: false}, - "freeimage": {name: "FreeImage Public License v1.0", short: "FreeImage", deprecated: false}, - "fsfap": {name: "FSF All Permissive License", short: "FSFAP", deprecated: false}, - "fsful": {name: "FSF Unlimited License", short: "FSFUL", deprecated: false}, - "fsfullr": {name: "FSF Unlimited License (with License Retention)", short: "FSFULLR", deprecated: false}, - "fsfullrwd": {name: "FSF Unlimited License (With License Retention and Warranty Disclaimer)", short: "FSFULLRWD", deprecated: false}, - "ftl": {name: "Freetype Project License", short: "FTL", deprecated: false}, - "gd": {name: "GD License", short: "GD", deprecated: false}, - "gfdl-1.1": {name: "GNU Free Documentation License v1.1", short: "GFDL-1.1", deprecated: true}, - "gfdl-1.1-invariants-only": {name: "GNU Free Documentation License v1.1 only - invariants", short: "GFDL-1.1-invariants-only", deprecated: false}, - "gfdl-1.1-invariants-or-later": {name: "GNU Free Documentation License v1.1 or later - invariants", short: "GFDL-1.1-invariants-or-later", deprecated: false}, - "gfdl-1.1-no-invariants-only": {name: "GNU Free Documentation License v1.1 only - no invariants", short: "GFDL-1.1-no-invariants-only", deprecated: false}, - "gfdl-1.1-no-invariants-or-later": {name: "GNU Free Documentation License v1.1 or later - no invariants", short: "GFDL-1.1-no-invariants-or-later", deprecated: false}, - "gfdl-1.1-only": {name: "GNU Free Documentation License v1.1 only", short: "GFDL-1.1-only", deprecated: false}, - "gfdl-1.1-or-later": {name: "GNU Free Documentation License v1.1 or later", short: "GFDL-1.1-or-later", deprecated: false}, - "gfdl-1.2": {name: "GNU Free Documentation License v1.2", short: "GFDL-1.2", deprecated: true}, - "gfdl-1.2-invariants-only": {name: "GNU Free Documentation License v1.2 only - invariants", short: "GFDL-1.2-invariants-only", deprecated: false}, - "gfdl-1.2-invariants-or-later": {name: "GNU Free Documentation License v1.2 or later - invariants", short: "GFDL-1.2-invariants-or-later", deprecated: false}, - "gfdl-1.2-no-invariants-only": {name: "GNU Free Documentation License v1.2 only - no invariants", short: "GFDL-1.2-no-invariants-only", deprecated: false}, - "gfdl-1.2-no-invariants-or-later": {name: "GNU Free Documentation License v1.2 or later - no invariants", short: "GFDL-1.2-no-invariants-or-later", deprecated: false}, - "gfdl-1.2-only": {name: "GNU Free Documentation License v1.2 only", short: "GFDL-1.2-only", deprecated: false}, - "gfdl-1.2-or-later": {name: "GNU Free Documentation License v1.2 or later", short: "GFDL-1.2-or-later", deprecated: false}, - "gfdl-1.3": {name: "GNU Free Documentation License v1.3", short: "GFDL-1.3", deprecated: true}, - "gfdl-1.3-invariants-only": {name: "GNU Free Documentation License v1.3 only - invariants", short: "GFDL-1.3-invariants-only", deprecated: false}, - "gfdl-1.3-invariants-or-later": {name: "GNU Free Documentation License v1.3 or later - invariants", short: "GFDL-1.3-invariants-or-later", deprecated: false}, - "gfdl-1.3-no-invariants-only": {name: "GNU Free Documentation License v1.3 only - no invariants", short: "GFDL-1.3-no-invariants-only", deprecated: false}, - "gfdl-1.3-no-invariants-or-later": {name: "GNU Free Documentation License v1.3 or later - no invariants", short: "GFDL-1.3-no-invariants-or-later", deprecated: false}, - "gfdl-1.3-only": {name: "GNU Free Documentation License v1.3 only", short: "GFDL-1.3-only", deprecated: false}, - "gfdl-1.3-or-later": {name: "GNU Free Documentation License v1.3 or later", short: "GFDL-1.3-or-later", deprecated: false}, - "giftware": {name: "Giftware License", short: "Giftware", deprecated: false}, - "gl2ps": {name: "GL2PS License", short: "GL2PS", deprecated: false}, - "glide": {name: "3dfx Glide License", short: "Glide", deprecated: false}, - "glulxe": {name: "Glulxe License", short: "Glulxe", deprecated: false}, - "glwtpl": {name: "Good Luck With That Public License", short: "GLWTPL", deprecated: false}, - "gnuplot": {name: "gnuplot License", short: "gnuplot", deprecated: false}, - "gpl-1.0": {name: "GNU General Public License v1.0 only", short: "GPL-1.0", deprecated: true}, - "gpl-1.0+": {name: "GNU General Public License v1.0 or later", short: "GPL-1.0+", deprecated: true}, - "gpl-1.0-only": {name: "GNU General Public License v1.0 only", short: "GPL-1.0-only", deprecated: false}, - "gpl-1.0-or-later": {name: "GNU General Public License v1.0 or later", short: "GPL-1.0-or-later", deprecated: false}, - "gpl-2.0": {name: "GNU General Public License v2.0 only", short: "GPL-2.0", deprecated: true}, - "gpl-2.0+": {name: "GNU General Public License v2.0 or later", short: "GPL-2.0+", deprecated: true}, - "gpl-2.0-only": {name: "GNU General Public License v2.0 only", short: "GPL-2.0-only", deprecated: false}, - "gpl-2.0-or-later": {name: "GNU General Public License v2.0 or later", short: "GPL-2.0-or-later", deprecated: false}, - "gpl-2.0-with-autoconf-exception": {name: "GNU General Public License v2.0 w/Autoconf exception", short: "GPL-2.0-with-autoconf-exception", deprecated: true}, - "gpl-2.0-with-bison-exception": {name: "GNU General Public License v2.0 w/Bison exception", short: "GPL-2.0-with-bison-exception", deprecated: true}, - "gpl-2.0-with-classpath-exception": {name: "GNU General Public License v2.0 w/Classpath exception", short: "GPL-2.0-with-classpath-exception", deprecated: true}, - "gpl-2.0-with-font-exception": {name: "GNU General Public License v2.0 w/Font exception", short: "GPL-2.0-with-font-exception", deprecated: true}, - "gpl-2.0-with-gcc-exception": {name: "GNU General Public License v2.0 w/GCC Runtime Library exception", short: "GPL-2.0-with-GCC-exception", deprecated: true}, - "gpl-3.0": {name: "GNU General Public License v3.0 only", short: "GPL-3.0", deprecated: true}, - "gpl-3.0+": {name: "GNU General Public License v3.0 or later", short: "GPL-3.0+", deprecated: true}, - "gpl-3.0-only": {name: "GNU General Public License v3.0 only", short: "GPL-3.0-only", deprecated: false}, - "gpl-3.0-or-later": {name: "GNU General Public License v3.0 or later", short: "GPL-3.0-or-later", deprecated: false}, - "gpl-3.0-with-autoconf-exception": {name: "GNU General Public License v3.0 w/Autoconf exception", short: "GPL-3.0-with-autoconf-exception", deprecated: true}, - "gpl-3.0-with-gcc-exception": {name: "GNU General Public License v3.0 w/GCC Runtime Library exception", short: "GPL-3.0-with-GCC-exception", deprecated: true}, - "graphics-gems": {name: "Graphics Gems License", short: "Graphics-Gems", deprecated: false}, - "gsoap-1.3b": {name: "gSOAP Public License v1.3b", short: "gSOAP-1.3b", deprecated: false}, - "haskellreport": {name: "Haskell Language Report License", short: "HaskellReport", deprecated: false}, - "hippocratic-2.1": {name: "Hippocratic License 2.1", short: "Hippocratic-2.1", deprecated: false}, - "hpnd": {name: "Historical Permission Notice and Disclaimer", short: "HPND", deprecated: false}, - "hpnd-export-us": {name: "HPND with US Government export control warning", short: "HPND-export-US", deprecated: false}, - "hpnd-sell-variant": {name: "Historical Permission Notice and Disclaimer - sell variant", short: "HPND-sell-variant", deprecated: false}, - "htmltidy": {name: "HTML Tidy License", short: "HTMLTIDY", deprecated: false}, - "ibm-pibs": {name: "IBM PowerPC Initialization and Boot Software", short: "IBM-pibs", deprecated: false}, - "icu": {name: "ICU License", short: "ICU", deprecated: false}, - "ijg": {name: "Independent JPEG Group License", short: "IJG", deprecated: false}, - "ijg-short": {name: "Independent JPEG Group License - short", short: "IJG-short", deprecated: false}, - "imagemagick": {name: "ImageMagick License", short: "ImageMagick", deprecated: false}, - "imatix": {name: "iMatix Standard Function Library Agreement", short: "iMatix", deprecated: false}, - "imlib2": {name: "Imlib2 License", short: "Imlib2", deprecated: false}, - "info-zip": {name: "Info-ZIP License", short: "Info-ZIP", deprecated: false}, - "intel": {name: "Intel Open Source License", short: "Intel", deprecated: false}, - "intel-acpi": {name: "Intel ACPI Software License Agreement", short: "Intel-ACPI", deprecated: false}, - "interbase-1.0": {name: "Interbase Public License v1.0", short: "Interbase-1.0", deprecated: false}, - "ipa": {name: "IPA Font License", short: "IPA", deprecated: false}, - "ipl-1.0": {name: "IBM Public License v1.0", short: "IPL-1.0", deprecated: false}, - "isc": {name: "ISC License", short: "ISC", deprecated: false}, - "jam": {name: "Jam License", short: "Jam", deprecated: false}, - "jasper-2.0": {name: "JasPer License", short: "JasPer-2.0", deprecated: false}, - "jpnic": {name: "Japan Network Information Center License", short: "JPNIC", deprecated: false}, - "json": {name: "JSON License", short: "JSON", deprecated: false}, - "knuth-ctan": {name: "Knuth CTAN License", short: "Knuth-CTAN", deprecated: false}, - "lal-1.2": {name: "Licence Art Libre 1.2", short: "LAL-1.2", deprecated: false}, - "lal-1.3": {name: "Licence Art Libre 1.3", short: "LAL-1.3", deprecated: false}, - "latex2e": {name: "Latex2e License", short: "Latex2e", deprecated: false}, - "leptonica": {name: "Leptonica License", short: "Leptonica", deprecated: false}, - "lgpl-2.0": {name: "GNU Library General Public License v2 only", short: "LGPL-2.0", deprecated: true}, - "lgpl-2.0+": {name: "GNU Library General Public License v2 or later", short: "LGPL-2.0+", deprecated: true}, - "lgpl-2.0-only": {name: "GNU Library General Public License v2 only", short: "LGPL-2.0-only", deprecated: false}, - "lgpl-2.0-or-later": {name: "GNU Library General Public License v2 or later", short: "LGPL-2.0-or-later", deprecated: false}, - "lgpl-2.1": {name: "GNU Lesser General Public License v2.1 only", short: "LGPL-2.1", deprecated: true}, - "lgpl-2.1+": {name: "GNU Lesser General Public License v2.1 or later", short: "LGPL-2.1+", deprecated: true}, - "lgpl-2.1-only": {name: "GNU Lesser General Public License v2.1 only", short: "LGPL-2.1-only", deprecated: false}, - "lgpl-2.1-or-later": {name: "GNU Lesser General Public License v2.1 or later", short: "LGPL-2.1-or-later", deprecated: false}, - "lgpl-3.0": {name: "GNU Lesser General Public License v3.0 only", short: "LGPL-3.0", deprecated: true}, - "lgpl-3.0+": {name: "GNU Lesser General Public License v3.0 or later", short: "LGPL-3.0+", deprecated: true}, - "lgpl-3.0-only": {name: "GNU Lesser General Public License v3.0 only", short: "LGPL-3.0-only", deprecated: false}, - "lgpl-3.0-or-later": {name: "GNU Lesser General Public License v3.0 or later", short: "LGPL-3.0-or-later", deprecated: false}, - "lgpllr": {name: "Lesser General Public License For Linguistic Resources", short: "LGPLLR", deprecated: false}, - "libpng": {name: "libpng License", short: "Libpng", deprecated: false}, - "libpng-2.0": {name: "PNG Reference Library version 2", short: "libpng-2.0", deprecated: false}, - "libselinux-1.0": {name: "libselinux public domain notice", short: "libselinux-1.0", deprecated: false}, - "libtiff": {name: "libtiff License", short: "libtiff", deprecated: false}, - "libutil-david-nugent": {name: "libutil David Nugent License", short: "libutil-David-Nugent", deprecated: false}, - "liliq-p-1.1": {name: "Licence Libre du Québec – Permissive version 1.1", short: "LiLiQ-P-1.1", deprecated: false}, - "liliq-r-1.1": {name: "Licence Libre du Québec – Réciprocité version 1.1", short: "LiLiQ-R-1.1", deprecated: false}, - "liliq-rplus-1.1": {name: "Licence Libre du Québec – Réciprocité forte version 1.1", short: "LiLiQ-Rplus-1.1", deprecated: false}, - "linux-man-pages-copyleft": {name: "Linux man-pages Copyleft", short: "Linux-man-pages-copyleft", deprecated: false}, - "linux-openib": {name: "Linux Kernel Variant of OpenIB.org license", short: "Linux-OpenIB", deprecated: false}, - "loop": {name: "Common Lisp LOOP License", short: "LOOP", deprecated: false}, - "lpl-1.0": {name: "Lucent Public License Version 1.0", short: "LPL-1.0", deprecated: false}, - "lpl-1.02": {name: "Lucent Public License v1.02", short: "LPL-1.02", deprecated: false}, - "lppl-1.0": {name: "LaTeX Project Public License v1.0", short: "LPPL-1.0", deprecated: false}, - "lppl-1.1": {name: "LaTeX Project Public License v1.1", short: "LPPL-1.1", deprecated: false}, - "lppl-1.2": {name: "LaTeX Project Public License v1.2", short: "LPPL-1.2", deprecated: false}, - "lppl-1.3a": {name: "LaTeX Project Public License v1.3a", short: "LPPL-1.3a", deprecated: false}, - "lppl-1.3c": {name: "LaTeX Project Public License v1.3c", short: "LPPL-1.3c", deprecated: false}, - "lzma-sdk-9.11-to-9.20": {name: "LZMA SDK License (versions 9.11 to 9.20)", short: "LZMA-SDK-9.11-to-9.20", deprecated: false}, - "lzma-sdk-9.22": {name: "LZMA SDK License (versions 9.22 and beyond)", short: "LZMA-SDK-9.22", deprecated: false}, - "makeindex": {name: "MakeIndex License", short: "MakeIndex", deprecated: false}, - "minpack": {name: "Minpack License", short: "Minpack", deprecated: false}, - "miros": {name: "The MirOS Licence", short: "MirOS", deprecated: false}, - "mit": {name: "MIT License", short: "MIT", deprecated: false}, - "mit-0": {name: "MIT No Attribution", short: "MIT-0", deprecated: false}, - "mit-advertising": {name: "Enlightenment License (e16)", short: "MIT-advertising", deprecated: false}, - "mit-cmu": {name: "CMU License", short: "MIT-CMU", deprecated: false}, - "mit-enna": {name: "enna License", short: "MIT-enna", deprecated: false}, - "mit-feh": {name: "feh License", short: "MIT-feh", deprecated: false}, - "mit-modern-variant": {name: "MIT License Modern Variant", short: "MIT-Modern-Variant", deprecated: false}, - "mit-open-group": {name: "MIT Open Group variant", short: "MIT-open-group", deprecated: false}, - "mit-wu": {name: "MIT Tom Wu Variant", short: "MIT-Wu", deprecated: false}, - "mitnfa": {name: "MIT +no-false-attribs license", short: "MITNFA", deprecated: false}, - "motosoto": {name: "Motosoto License", short: "Motosoto", deprecated: false}, - "mpi-permissive": {name: "mpi Permissive License", short: "mpi-permissive", deprecated: false}, - "mpich2": {name: "mpich2 License", short: "mpich2", deprecated: false}, - "mpl-1.0": {name: "Mozilla Public License 1.0", short: "MPL-1.0", deprecated: false}, - "mpl-1.1": {name: "Mozilla Public License 1.1", short: "MPL-1.1", deprecated: false}, - "mpl-2.0": {name: "Mozilla Public License 2.0", short: "MPL-2.0", deprecated: false}, - "mpl-2.0-no-copyleft-exception": {name: "Mozilla Public License 2.0 (no copyleft exception)", short: "MPL-2.0-no-copyleft-exception", deprecated: false}, - "mplus": {name: "mplus Font License", short: "mplus", deprecated: false}, - "ms-lpl": {name: "Microsoft Limited Public License", short: "MS-LPL", deprecated: false}, - "ms-pl": {name: "Microsoft Public License", short: "MS-PL", deprecated: false}, - "ms-rl": {name: "Microsoft Reciprocal License", short: "MS-RL", deprecated: false}, - "mtll": {name: "Matrix Template Library License", short: "MTLL", deprecated: false}, - "mulanpsl-1.0": {name: "Mulan Permissive Software License, Version 1", short: "MulanPSL-1.0", deprecated: false}, - "mulanpsl-2.0": {name: "Mulan Permissive Software License, Version 2", short: "MulanPSL-2.0", deprecated: false}, - "multics": {name: "Multics License", short: "Multics", deprecated: false}, - "mup": {name: "Mup License", short: "Mup", deprecated: false}, - "naist-2003": {name: "Nara Institute of Science and Technology License (2003)", short: "NAIST-2003", deprecated: false}, - "nasa-1.3": {name: "NASA Open Source Agreement 1.3", short: "NASA-1.3", deprecated: false}, - "naumen": {name: "Naumen Public License", short: "Naumen", deprecated: false}, - "nbpl-1.0": {name: "Net Boolean Public License v1", short: "NBPL-1.0", deprecated: false}, - "ncgl-uk-2.0": {name: "Non-Commercial Government Licence", short: "NCGL-UK-2.0", deprecated: false}, - "ncsa": {name: "University of Illinois/NCSA Open Source License", short: "NCSA", deprecated: false}, - "net-snmp": {name: "Net-SNMP License", short: "Net-SNMP", deprecated: false}, - "netcdf": {name: "NetCDF license", short: "NetCDF", deprecated: false}, - "newsletr": {name: "Newsletr License", short: "Newsletr", deprecated: false}, - "ngpl": {name: "Nethack General Public License", short: "NGPL", deprecated: false}, - "nicta-1.0": {name: "NICTA Public Software License, Version 1.0", short: "NICTA-1.0", deprecated: false}, - "nist-pd": {name: "NIST Public Domain Notice", short: "NIST-PD", deprecated: false}, - "nist-pd-fallback": {name: "NIST Public Domain Notice with license fallback", short: "NIST-PD-fallback", deprecated: false}, - "nlod-1.0": {name: "Norwegian Licence for Open Government Data (NLOD) 1.0", short: "NLOD-1.0", deprecated: false}, - "nlod-2.0": {name: "Norwegian Licence for Open Government Data (NLOD) 2.0", short: "NLOD-2.0", deprecated: false}, - "nlpl": {name: "No Limit Public License", short: "NLPL", deprecated: false}, - "nokia": {name: "Nokia Open Source License", short: "Nokia", deprecated: false}, - "nosl": {name: "Netizen Open Source License", short: "NOSL", deprecated: false}, - "noweb": {name: "Noweb License", short: "Noweb", deprecated: false}, - "npl-1.0": {name: "Netscape Public License v1.0", short: "NPL-1.0", deprecated: false}, - "npl-1.1": {name: "Netscape Public License v1.1", short: "NPL-1.1", deprecated: false}, - "nposl-3.0": {name: "Non-Profit Open Software License 3.0", short: "NPOSL-3.0", deprecated: false}, - "nrl": {name: "NRL License", short: "NRL", deprecated: false}, - "ntp": {name: "NTP License", short: "NTP", deprecated: false}, - "ntp-0": {name: "NTP No Attribution", short: "NTP-0", deprecated: false}, - "nunit": {name: "Nunit License", short: "Nunit", deprecated: true}, - "o-uda-1.0": {name: "Open Use of Data Agreement v1.0", short: "O-UDA-1.0", deprecated: false}, - "occt-pl": {name: "Open CASCADE Technology Public License", short: "OCCT-PL", deprecated: false}, - "oclc-2.0": {name: "OCLC Research Public License 2.0", short: "OCLC-2.0", deprecated: false}, - "odbl-1.0": {name: "Open Data Commons Open Database License v1.0", short: "ODbL-1.0", deprecated: false}, - "odc-by-1.0": {name: "Open Data Commons Attribution License v1.0", short: "ODC-By-1.0", deprecated: false}, - "ofl-1.0": {name: "SIL Open Font License 1.0", short: "OFL-1.0", deprecated: false}, - "ofl-1.0-no-rfn": {name: "SIL Open Font License 1.0 with no Reserved Font Name", short: "OFL-1.0-no-RFN", deprecated: false}, - "ofl-1.0-rfn": {name: "SIL Open Font License 1.0 with Reserved Font Name", short: "OFL-1.0-RFN", deprecated: false}, - "ofl-1.1": {name: "SIL Open Font License 1.1", short: "OFL-1.1", deprecated: false}, - "ofl-1.1-no-rfn": {name: "SIL Open Font License 1.1 with no Reserved Font Name", short: "OFL-1.1-no-RFN", deprecated: false}, - "ofl-1.1-rfn": {name: "SIL Open Font License 1.1 with Reserved Font Name", short: "OFL-1.1-RFN", deprecated: false}, - "ogc-1.0": {name: "OGC Software License, Version 1.0", short: "OGC-1.0", deprecated: false}, - "ogdl-taiwan-1.0": {name: "Taiwan Open Government Data License, version 1.0", short: "OGDL-Taiwan-1.0", deprecated: false}, - "ogl-canada-2.0": {name: "Open Government Licence - Canada", short: "OGL-Canada-2.0", deprecated: false}, - "ogl-uk-1.0": {name: "Open Government Licence v1.0", short: "OGL-UK-1.0", deprecated: false}, - "ogl-uk-2.0": {name: "Open Government Licence v2.0", short: "OGL-UK-2.0", deprecated: false}, - "ogl-uk-3.0": {name: "Open Government Licence v3.0", short: "OGL-UK-3.0", deprecated: false}, - "ogtsl": {name: "Open Group Test Suite License", short: "OGTSL", deprecated: false}, - "oldap-1.1": {name: "Open LDAP Public License v1.1", short: "OLDAP-1.1", deprecated: false}, - "oldap-1.2": {name: "Open LDAP Public License v1.2", short: "OLDAP-1.2", deprecated: false}, - "oldap-1.3": {name: "Open LDAP Public License v1.3", short: "OLDAP-1.3", deprecated: false}, - "oldap-1.4": {name: "Open LDAP Public License v1.4", short: "OLDAP-1.4", deprecated: false}, - "oldap-2.0": {name: "Open LDAP Public License v2.0 (or possibly 2.0A and 2.0B)", short: "OLDAP-2.0", deprecated: false}, - "oldap-2.0.1": {name: "Open LDAP Public License v2.0.1", short: "OLDAP-2.0.1", deprecated: false}, - "oldap-2.1": {name: "Open LDAP Public License v2.1", short: "OLDAP-2.1", deprecated: false}, - "oldap-2.2": {name: "Open LDAP Public License v2.2", short: "OLDAP-2.2", deprecated: false}, - "oldap-2.2.1": {name: "Open LDAP Public License v2.2.1", short: "OLDAP-2.2.1", deprecated: false}, - "oldap-2.2.2": {name: "Open LDAP Public License 2.2.2", short: "OLDAP-2.2.2", deprecated: false}, - "oldap-2.3": {name: "Open LDAP Public License v2.3", short: "OLDAP-2.3", deprecated: false}, - "oldap-2.4": {name: "Open LDAP Public License v2.4", short: "OLDAP-2.4", deprecated: false}, - "oldap-2.5": {name: "Open LDAP Public License v2.5", short: "OLDAP-2.5", deprecated: false}, - "oldap-2.6": {name: "Open LDAP Public License v2.6", short: "OLDAP-2.6", deprecated: false}, - "oldap-2.7": {name: "Open LDAP Public License v2.7", short: "OLDAP-2.7", deprecated: false}, - "oldap-2.8": {name: "Open LDAP Public License v2.8", short: "OLDAP-2.8", deprecated: false}, - "oml": {name: "Open Market License", short: "OML", deprecated: false}, - "openssl": {name: "OpenSSL License", short: "OpenSSL", deprecated: false}, - "opl-1.0": {name: "Open Public License v1.0", short: "OPL-1.0", deprecated: false}, - "opubl-1.0": {name: "Open Publication License v1.0", short: "OPUBL-1.0", deprecated: false}, - "oset-pl-2.1": {name: "OSET Public License version 2.1", short: "OSET-PL-2.1", deprecated: false}, - "osl-1.0": {name: "Open Software License 1.0", short: "OSL-1.0", deprecated: false}, - "osl-1.1": {name: "Open Software License 1.1", short: "OSL-1.1", deprecated: false}, - "osl-2.0": {name: "Open Software License 2.0", short: "OSL-2.0", deprecated: false}, - "osl-2.1": {name: "Open Software License 2.1", short: "OSL-2.1", deprecated: false}, - "osl-3.0": {name: "Open Software License 3.0", short: "OSL-3.0", deprecated: false}, - "parity-6.0.0": {name: "The Parity Public License 6.0.0", short: "Parity-6.0.0", deprecated: false}, - "parity-7.0.0": {name: "The Parity Public License 7.0.0", short: "Parity-7.0.0", deprecated: false}, - "pddl-1.0": {name: "Open Data Commons Public Domain Dedication & License 1.0", short: "PDDL-1.0", deprecated: false}, - "php-3.0": {name: "PHP License v3.0", short: "PHP-3.0", deprecated: false}, - "php-3.01": {name: "PHP License v3.01", short: "PHP-3.01", deprecated: false}, - "plexus": {name: "Plexus Classworlds License", short: "Plexus", deprecated: false}, - "polyform-noncommercial-1.0.0": {name: "PolyForm Noncommercial License 1.0.0", short: "PolyForm-Noncommercial-1.0.0", deprecated: false}, - "polyform-small-business-1.0.0": {name: "PolyForm Small Business License 1.0.0", short: "PolyForm-Small-Business-1.0.0", deprecated: false}, - "postgresql": {name: "PostgreSQL License", short: "PostgreSQL", deprecated: false}, - "psf-2.0": {name: "Python Software Foundation License 2.0", short: "PSF-2.0", deprecated: false}, - "psfrag": {name: "psfrag License", short: "psfrag", deprecated: false}, - "psutils": {name: "psutils License", short: "psutils", deprecated: false}, - "python-2.0": {name: "Python License 2.0", short: "Python-2.0", deprecated: false}, - "python-2.0.1": {name: "Python License 2.0.1", short: "Python-2.0.1", deprecated: false}, - "qhull": {name: "Qhull License", short: "Qhull", deprecated: false}, - "qpl-1.0": {name: "Q Public License 1.0", short: "QPL-1.0", deprecated: false}, - "rdisc": {name: "Rdisc License", short: "Rdisc", deprecated: false}, - "rhecos-1.1": {name: "Red Hat eCos Public License v1.1", short: "RHeCos-1.1", deprecated: false}, - "rpl-1.1": {name: "Reciprocal Public License 1.1", short: "RPL-1.1", deprecated: false}, - "rpl-1.5": {name: "Reciprocal Public License 1.5", short: "RPL-1.5", deprecated: false}, - "rpsl-1.0": {name: "RealNetworks Public Source License v1.0", short: "RPSL-1.0", deprecated: false}, - "rsa-md": {name: "RSA Message-Digest License", short: "RSA-MD", deprecated: false}, - "rscpl": {name: "Ricoh Source Code Public License", short: "RSCPL", deprecated: false}, - "ruby": {name: "Ruby License", short: "Ruby", deprecated: false}, - "sax-pd": {name: "Sax Public Domain Notice", short: "SAX-PD", deprecated: false}, - "saxpath": {name: "Saxpath License", short: "Saxpath", deprecated: false}, - "scea": {name: "SCEA Shared Source License", short: "SCEA", deprecated: false}, - "schemereport": {name: "Scheme Language Report License", short: "SchemeReport", deprecated: false}, - "sendmail": {name: "Sendmail License", short: "Sendmail", deprecated: false}, - "sendmail-8.23": {name: "Sendmail License 8.23", short: "Sendmail-8.23", deprecated: false}, - "sgi-b-1.0": {name: "SGI Free Software License B v1.0", short: "SGI-B-1.0", deprecated: false}, - "sgi-b-1.1": {name: "SGI Free Software License B v1.1", short: "SGI-B-1.1", deprecated: false}, - "sgi-b-2.0": {name: "SGI Free Software License B v2.0", short: "SGI-B-2.0", deprecated: false}, - "shl-0.5": {name: "Solderpad Hardware License v0.5", short: "SHL-0.5", deprecated: false}, - "shl-0.51": {name: "Solderpad Hardware License, Version 0.51", short: "SHL-0.51", deprecated: false}, - "simpl-2.0": {name: "Simple Public License 2.0", short: "SimPL-2.0", deprecated: false}, - "sissl": {name: "Sun Industry Standards Source License v1.1", short: "SISSL", deprecated: false}, - "sissl-1.2": {name: "Sun Industry Standards Source License v1.2", short: "SISSL-1.2", deprecated: false}, - "sleepycat": {name: "Sleepycat License", short: "Sleepycat", deprecated: false}, - "smlnj": {name: "Standard ML of New Jersey License", short: "SMLNJ", deprecated: false}, - "smppl": {name: "Secure Messaging Protocol Public License", short: "SMPPL", deprecated: false}, - "snia": {name: "SNIA Public License 1.1", short: "SNIA", deprecated: false}, - "spencer-86": {name: "Spencer License 86", short: "Spencer-86", deprecated: false}, - "spencer-94": {name: "Spencer License 94", short: "Spencer-94", deprecated: false}, - "spencer-99": {name: "Spencer License 99", short: "Spencer-99", deprecated: false}, - "spl-1.0": {name: "Sun Public License v1.0", short: "SPL-1.0", deprecated: false}, - "ssh-openssh": {name: "SSH OpenSSH license", short: "SSH-OpenSSH", deprecated: false}, - "ssh-short": {name: "SSH short notice", short: "SSH-short", deprecated: false}, - "sspl-1.0": {name: "Server Side Public License, v 1", short: "SSPL-1.0", deprecated: false}, - "standardml-nj": {name: "Standard ML of New Jersey License", short: "StandardML-NJ", deprecated: true}, - "sugarcrm-1.1.3": {name: "SugarCRM Public License v1.1.3", short: "SugarCRM-1.1.3", deprecated: false}, - "swl": {name: "Scheme Widget Library (SWL) Software License Agreement", short: "SWL", deprecated: false}, - "symlinks": {name: "Symlinks License", short: "Symlinks", deprecated: false}, - "tapr-ohl-1.0": {name: "TAPR Open Hardware License v1.0", short: "TAPR-OHL-1.0", deprecated: false}, - "tcl": {name: "TCL/TK License", short: "TCL", deprecated: false}, - "tcp-wrappers": {name: "TCP Wrappers License", short: "TCP-wrappers", deprecated: false}, - "tmate": {name: "TMate Open Source License", short: "TMate", deprecated: false}, - "torque-1.1": {name: "TORQUE v2.5+ Software License v1.1", short: "TORQUE-1.1", deprecated: false}, - "tosl": {name: "Trusster Open Source License", short: "TOSL", deprecated: false}, - "tpdl": {name: "Time::ParseDate License", short: "TPDL", deprecated: false}, - "ttwl": {name: "Text-Tabs+Wrap License", short: "TTWL", deprecated: false}, - "tu-berlin-1.0": {name: "Technische Universitaet Berlin License 1.0", short: "TU-Berlin-1.0", deprecated: false}, - "tu-berlin-2.0": {name: "Technische Universitaet Berlin License 2.0", short: "TU-Berlin-2.0", deprecated: false}, - "ucl-1.0": {name: "Upstream Compatibility License v1.0", short: "UCL-1.0", deprecated: false}, - "unicode-dfs-2015": {name: "Unicode License Agreement - Data Files and Software (2015)", short: "Unicode-DFS-2015", deprecated: false}, - "unicode-dfs-2016": {name: "Unicode License Agreement - Data Files and Software (2016)", short: "Unicode-DFS-2016", deprecated: false}, - "unicode-tou": {name: "Unicode Terms of Use", short: "Unicode-TOU", deprecated: false}, - "unlicense": {name: "The Unlicense", short: "Unlicense", deprecated: false}, - "upl-1.0": {name: "Universal Permissive License v1.0", short: "UPL-1.0", deprecated: false}, - "vim": {name: "Vim License", short: "Vim", deprecated: false}, - "vostrom": {name: "VOSTROM Public License for Open Source", short: "VOSTROM", deprecated: false}, - "vsl-1.0": {name: "Vovida Software License v1.0", short: "VSL-1.0", deprecated: false}, - "w3c": {name: "W3C Software Notice and License (2002-12-31)", short: "W3C", deprecated: false}, - "w3c-19980720": {name: "W3C Software Notice and License (1998-07-20)", short: "W3C-19980720", deprecated: false}, - "w3c-20150513": {name: "W3C Software Notice and Document License (2015-05-13)", short: "W3C-20150513", deprecated: false}, - "watcom-1.0": {name: "Sybase Open Watcom Public License 1.0", short: "Watcom-1.0", deprecated: false}, - "wsuipa": {name: "Wsuipa License", short: "Wsuipa", deprecated: false}, - "wtfpl": {name: "Do What The F*ck You Want To Public License", short: "WTFPL", deprecated: false}, - "wxwindows": {name: "wxWindows Library License", short: "wxWindows", deprecated: true}, - "x11": {name: "X11 License", short: "X11", deprecated: false}, - "x11-distribute-modifications-variant": {name: "X11 License Distribution Modification Variant", short: "X11-distribute-modifications-variant", deprecated: false}, - "xerox": {name: "Xerox License", short: "Xerox", deprecated: false}, - "xfree86-1.1": {name: "XFree86 License 1.1", short: "XFree86-1.1", deprecated: false}, - "xinetd": {name: "xinetd License", short: "xinetd", deprecated: false}, - "xnet": {name: "X.Net License", short: "Xnet", deprecated: false}, - "xpp": {name: "XPP License", short: "xpp", deprecated: false}, - "xskat": {name: "XSkat License", short: "XSkat", deprecated: false}, - "ypl-1.0": {name: "Yahoo! Public License v1.0", short: "YPL-1.0", deprecated: false}, - "ypl-1.1": {name: "Yahoo! Public License v1.1", short: "YPL-1.1", deprecated: false}, - "zed": {name: "Zed License", short: "Zed", deprecated: false}, - "zend-2.0": {name: "Zend License v2.0", short: "Zend-2.0", deprecated: false}, - "zimbra-1.3": {name: "Zimbra Public License v1.3", short: "Zimbra-1.3", deprecated: false}, - "zimbra-1.4": {name: "Zimbra Public License v1.4", short: "Zimbra-1.4", deprecated: false}, - "zlib": {name: "zlib License", short: "Zlib", deprecated: false}, - "zlib-acknowledgement": {name: "zlib/libpng License with Acknowledgement", short: "zlib-acknowledgement", deprecated: false}, - "zpl-1.1": {name: "Zope Public License 1.1", short: "ZPL-1.1", deprecated: false}, - "zpl-2.0": {name: "Zope Public License 2.0", short: "ZPL-2.0", deprecated: false}, - "zpl-2.1": {name: "Zope Public License 2.1", short: "ZPL-2.1", deprecated: false}, +func (m meta) Restrictive() bool { + return m.restrictive } -func LookUp(lic string) (License, bool) { - if m, ok := spdxLicenseList[strings.ToLower(lic)]; ok { - return m, true - } - return meta{}, false +func (m meta) Exception() bool { + return m.exception } -func FreeForAnyUse(lic string) bool { - if _, ok := freeAnyUser[strings.ToLower(lic)]; ok { - return true - } - return false +func (m meta) Source() string { + return m.source } -// Restricted Licenses -var restrictedLicenses = []string{ - "bcl", - "cc-by-nd-1.0", - "cc-by-nd-2.0", - "cc-by-nd-2.5", - "cc-by-nd-3.0", - "cc-by-nd-4.0", - "cc-by-sa-1.0", - "cc-by-sa-2.0", - "cc-by-sa-2.5", - "cc-by-sa-3.0", - "cc-by-sa-4.0", - "gpl-1.0", - "gpl-2.0", - "gpl-2.0-with-autoconf-exception", - "gpl-2.0-with-bison-exception", - "gpl-2.0-with-classpath-exception", - "gpl-2.0-with-font-exception", - "gpl-2.0-with-gcc-exception", - "gpl-3.0", - "gpl-3.0-with-autoconf-exception", - "gpl-3.0-with-gcc-exception", - "lgpl-2.0", - "lgpl-2.1", - "lgpl-3.0", - "NPL-1.0", - "NPL-1.1", - "osl-1.0", - "osl-1.1", - "osl-2.0", - "osl-2.1", - "osl-3.0", - "qpl-1.0", - "sleepycat", +func lookupLicense(licenseKey string) (License, error) { + if licenseKey == "" { + return nil, errors.New("license not found") + } + + lowerKey := strings.ToLower(licenseKey) + + if lowerKey == "none" || lowerKey == "noassertion" { + return nil, errors.New("license not found") + } + + tLicKey := strings.TrimRight(licenseKey, "+") + + //Lookup spdx & exception list + license, lok := licenseList[tLicKey] + abouLicense, aok := LicenseListAboutCode[tLicKey] + + //fmt.Printf("lookupLicense: %s %v %v\n", tLicKey, lok, aok) + + if lok && aok { + return abouLicense, nil + } + + if lok { + return license, nil + } + + if aok { + return abouLicense, nil + } + return nil, errors.New("license not found") } -func RestrictedLicense(lic string) bool { - if lic == "" { - return true +func LookupExpression(expression string, customLicense []License) []License { + customLookup := func(licenseKey string) (License, error) { + if len(customLicense) == 0 { + return nil, errors.New("license not found") + } + + for _, l := range customLicense { + if l.ShortID() == licenseKey { + return l, nil + } + } + return nil, errors.New("license not found") + } + + if expression == "" || strings.ToLower(expression) == "none" || strings.ToLower(expression) == "noassertion" { + return []License{} + } + + licenses, err := spdxexp.ExtractLicenses(expression) + if err != nil { + return []License{CreateCustomLicense(expression, expression)} } - for _, rl := range restrictedLicenses { - if strings.Contains(strings.ToLower(lic), rl) { - return true + + ls := []License{} + + for _, l := range licenses { + tLicKey := strings.TrimRight(l, "+") + lic, err := lookupLicense(tLicKey) + + if err != nil { + custLic, err2 := customLookup(tLicKey) + if err2 != nil { + ls = append(ls, CreateCustomLicense(tLicKey, tLicKey)) + continue + } else { + ls = append(ls, custLic) + } + } + + if lic != nil { + ls = append(ls, lic) } } - return false + + return ls +} + +func CreateCustomLicense(id, name string) License { + return meta{ + name: name, + short: id, + deprecated: false, + osiApproved: false, + fsfLibre: false, + freeAnyUse: false, + restrictive: false, + exception: false, + source: "custom", + } } diff --git a/pkg/licenses/license_test.go b/pkg/licenses/license_test.go deleted file mode 100644 index 0543ce4..0000000 --- a/pkg/licenses/license_test.go +++ /dev/null @@ -1,39 +0,0 @@ -// Copyright 2023 Interlynk.io -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package licenses - -import "testing" - -func TestRestrictedLicense(t *testing.T) { - var tests = []struct { - name string - input string - want bool - }{ - {"Is GPL-3.0-or-later is restricted license", "GPL-3.0-or-later", true}, - {"Is LGPL-3.0-or-later is restricted license", "LGPL-3.0-or-later", true}, - {"Is BSD-3-Clause is restricted license", "BSD-3-Clause", false}, - {"Is Apache-2.0 WITH LLVM-exception restricted license", "Apache-2.0 WITH LLVM-exception", false}, - } - // The execution loop - for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - ans := RestrictedLicense(tt.input) - if ans != tt.want { - t.Errorf("got %t, want %t", ans, tt.want) - } - }) - } -} diff --git a/pkg/sbom/author.go b/pkg/sbom/author.go index a514f8d..7b6de0e 100644 --- a/pkg/sbom/author.go +++ b/pkg/sbom/author.go @@ -18,10 +18,12 @@ package sbom type Author interface { Name() string Type() string + Email() string } type author struct { name string + email string authorType string //person or org } @@ -31,3 +33,7 @@ func (a author) Name() string { func (a author) Type() string { return a.authorType } + +func (a author) Email() string { + return a.email +} diff --git a/pkg/sbom/cdx.go b/pkg/sbom/cdx.go index 92ace7e..60a236a 100644 --- a/pkg/sbom/cdx.go +++ b/pkg/sbom/cdx.go @@ -18,11 +18,11 @@ import ( "context" "fmt" "io" - "strings" cydx "github.com/CycloneDX/cyclonedx-go" "github.com/google/uuid" "github.com/interlynk-io/sbomqs/pkg/cpe" + "github.com/interlynk-io/sbomqs/pkg/licenses" "github.com/interlynk-io/sbomqs/pkg/purl" "github.com/samber/lo" ) @@ -32,16 +32,21 @@ var cdx_file_formats = []string{"json", "xml"} var cdx_primary_purpose = []string{"application", "framework", "library", "container", "operating-system", "device", "firmware", "file"} type cdxDoc struct { - doc *cydx.BOM - format FileFormat - ctx context.Context - spec *spec - comps []Component - authors []Author - tools []Tool - rels []Relation - logs []string - primaryComponent bool + doc *cydx.BOM + format FileFormat + ctx context.Context + spec *spec + comps []Component + authors []Author + tools []Tool + rels []Relation + logs []string + primaryComponent bool + lifecycles []string + supplier Supplier + manufacturer Manufacturer + primaryComponentId string + compositions map[string]string } func newCDXDoc(ctx context.Context, f io.ReadSeeker, format FileFormat) (Document, error) { @@ -105,19 +110,64 @@ func (c cdxDoc) PrimaryComponent() bool { return c.primaryComponent } +func (c cdxDoc) Lifecycles() []string { + return c.lifecycles +} + +func (c cdxDoc) Supplier() Supplier { + return c.supplier +} + +func (c cdxDoc) Manufacturer() Manufacturer { + return c.manufacturer +} + func (c *cdxDoc) parse() { + c.parseDoc() c.parseSpec() - c.parseComps() c.parseAuthors() + c.parseSupplier() + c.parseManufacturer() c.parseTool() - c.parseRels() c.parsePrimaryComponent() + c.parseCompositions() + c.parseRels() + c.parseComps() } func (c *cdxDoc) addToLogs(log string) { c.logs = append(c.logs, log) } +func (c *cdxDoc) parseDoc() { + if c.doc == nil { + c.addToLogs("cdx doc is not parsable") + return + } + + if c.doc.Metadata == nil { + c.addToLogs("cdx doc is missing metadata") + return + } + + if c.doc.Metadata.Lifecycles == nil { + c.addToLogs("cdx doc is missing lifecycles") + return + } + + c.lifecycles = lo.Map(lo.FromPtr(c.doc.Metadata.Lifecycles), func(l cydx.Lifecycle, _ int) string { + if l.Phase != "" { + return string(l.Phase) + } + + if l.Name != "" { + return string(l.Name) + } + + return "" + }) +} + func (c *cdxDoc) parseSpec() { sp := newSpec() sp.format = string(c.format) @@ -125,28 +175,18 @@ func (c *cdxDoc) parseSpec() { sp.name = string(SBOMSpecCDX) sp.isReqFieldsPresent = c.requiredFields() - addLicense := func(agg *[]License, n []license) { - for _, l := range n { - *agg = append(*agg, l) - } - } - if c.doc.Metadata != nil { sp.creationTimestamp = c.doc.Metadata.Timestamp - - lics := []License{} - for _, l := range lo.FromPtr(c.doc.Metadata.Licenses) { - if l.Expression != "" { - addLicense(&lics, newLicenseFromID(l.Expression)) - } else if l.License != nil { - addLicense(&lics, newLicenseFromID(l.License.ID)) - } + if c.doc.Metadata.Licenses != nil { + sp.licenses = aggregate_licenses(*c.doc.Metadata.Licenses) } + } + sp.namespace = c.doc.SerialNumber - sp.licenses = lics + if sp.namespace != "" && sp.version != "" { + sp.uri = fmt.Sprintf("urn:cdx:%s:%s", sp.version, sp.namespace) } - sp.namespace = c.doc.SerialNumber c.spec = sp } @@ -193,25 +233,98 @@ func copyC(cdxc *cydx.Component, c *cdxDoc) *component { nc := newComponent() nc.version = cdxc.Version nc.name = cdxc.Name - nc.supplierName = c.addSupplierName(cdxc) nc.purpose = string(cdxc.Type) nc.isReqFieldsPresent = c.pkgRequiredFields(cdxc) + ncpe := cpe.NewCPE(cdxc.CPE) if ncpe.Valid() { nc.cpes = []cpe.CPE{ncpe} } else { c.addToLogs(fmt.Sprintf("cdx base doc component %s at index %d invalid cpes found", cdxc.Name, -1)) } + npurl := purl.NewPURL(cdxc.PackageURL) if npurl.Valid() { nc.purls = []purl.PURL{npurl} } else { c.addToLogs(fmt.Sprintf("cdx base doc component %s at index %d invalid purl found", cdxc.Name, -1)) } + nc.checksums = c.checksums(cdxc) nc.licenses = c.licenses(cdxc) - nc.id = cdxc.BOMRef + supplier := c.assignSupplier(cdxc) + if supplier != nil { + nc.supplier = *supplier + nc.supplierName = supplier.name + } + + if cdxc.ExternalReferences != nil { + sources := lo.Filter(*cdxc.ExternalReferences, func(er cydx.ExternalReference, _ int) bool { + return er.Type == cydx.ERTypeVCS + }) + + if len(sources) > 0 { + nc.sourceCodeUrl = sources[0].URL + } + + downloads := lo.Filter(*cdxc.ExternalReferences, func(er cydx.ExternalReference, _ int) bool { + return er.Type == cydx.ERTypeDistribution || er.Type == cydx.ERTypeDistributionIntake + }) + + if len(downloads) > 0 { + nc.downloadLocation = downloads[0].URL + } + } + + if cdxc.BOMRef == c.primaryComponentId { + nc.isPrimary = true + } + + fromRelsPresent := func(rels []Relation, compID string) bool { + for _, r := range rels { + if r.From() == compID { + return true + } + } + return false + } + + compNormalise := func(compID string) string { + switch cydx.CompositionAggregate(compID) { + case cydx.CompositionAggregateComplete: + return "complete" + case cydx.CompositionAggregateIncomplete: + return "incomplete" + case cydx.CompositionAggregateIncompleteFirstPartyOnly: + return "incomplete-first-party-only" + case cydx.CompositionAggregateIncompleteFirstPartyOpenSourceOnly: + return "incomplete-first-party-open-source-only" + case cydx.CompositionAggregateIncompleteFirstPartyProprietaryOnly: + return "incomplete-first-party-proprietary-only" + case cydx.CompositionAggregateIncompleteThirdPartyOnly: + return "incomplete-third-party-only" + case cydx.CompositionAggregateIncompleteThirdPartyOpenSourceOnly: + return "incomplete-third-party-open-source-only" + case cydx.CompositionAggregateIncompleteThirdPartyProprietaryOnly: + return "incomplete-third-party-proprietary-only" + case cydx.CompositionAggregateNotSpecified: + return "not-specified" + case cydx.CompositionAggregateUnknown: + return "unknown" + } + + return "not-specified" + } + + nc.hasRelationships = fromRelsPresent(c.rels, cdxc.BOMRef) + if c.compositions != nil { + if comp, ok := c.compositions[cdxc.BOMRef]; ok { + nc.relationshipState = compNormalise(comp) + } + } + + nc.id = cdxc.BOMRef return nc } @@ -294,41 +407,33 @@ func (c *cdxDoc) checksums(comp *cydx.Component) []Checksum { return chks } -func (c *cdxDoc) licenses(comp *cydx.Component) []License { - lics := []License{} +func (c *cdxDoc) licenses(comp *cydx.Component) []licenses.License { + return aggregate_licenses(lo.FromPtr(comp.Licenses)) +} - addLicense := func(agg *[]License, n []license) { - for _, l := range n { - *agg = append(*agg, l) - } +func aggregate_licenses(clicenses cydx.Licenses) []licenses.License { + if clicenses == nil { + return []licenses.License{} } - for _, cl := range lo.FromPtr(comp.Licenses) { - if cl.Expression != "" { - addLicense(&lics, newLicenseFromID(cl.Expression)) - } else if cl.License != nil { - addLicense(&lics, newLicenseFromID(cl.License.ID)) - } + lics := []licenses.License{} + + getLicenses := func(exp string) []licenses.License { + return licenses.LookupExpression(exp, []licenses.License{}) } - removeDups := func(lics []License) []License { - uniqs := []License{} - dedup := map[string]bool{} - for _, l := range lics { - if _, ok := dedup[l.Short()]; !ok { - uniqs = append(uniqs, l) - dedup[l.Short()] = true + for _, cl := range clicenses { + if cl.Expression != "" { + lics = append(lics, getLicenses(cl.Expression)...) + } else if cl.License != nil { + if cl.License.ID != "" { + lics = append(lics, getLicenses(cl.License.ID)...) + } else if cl.License.Name != "" { + lics = append(lics, getLicenses(cl.License.Name)...) } } - return uniqs - - } - finalLics := removeDups(lics) - if len(finalLics) == 0 { - c.addToLogs(fmt.Sprintf("cdx doc comp %s no licenses found", comp.Name)) } - - return finalLics + return lics } func (c *cdxDoc) parseTool() { @@ -367,11 +472,65 @@ func (c *cdxDoc) parseAuthors() { for _, auth := range lo.FromPtr(c.doc.Metadata.Authors) { a := author{} a.name = auth.Name + a.email = auth.Email a.authorType = "person" c.authors = append(c.authors, a) } } +func (c *cdxDoc) parseSupplier() { + if c.doc.Metadata == nil { + return + } + + if c.doc.Metadata.Supplier == nil { + return + } + + supplier := supplier{} + + supplier.name = c.doc.Metadata.Supplier.Name + supplier.url = lo.FromPtr(c.doc.Metadata.Supplier.URL)[0] + + if c.doc.Metadata.Supplier.Contact != nil { + for _, cydxContact := range lo.FromPtr(c.doc.Metadata.Supplier.Contact) { + ctt := contact{} + ctt.name = cydxContact.Name + ctt.email = cydxContact.Email + supplier.contacts = append(supplier.contacts, ctt) + } + } + + c.supplier = supplier +} + +func (c *cdxDoc) parseManufacturer() { + if c.doc.Metadata == nil { + return + } + + if c.doc.Metadata.Manufacture == nil { + return + } + + m := manufacturer{} + + m.name = c.doc.Metadata.Manufacture.Name + m.url = lo.FromPtr(c.doc.Metadata.Manufacture.URL)[0] + + if c.doc.Metadata.Manufacture.Contact != nil { + for _, cydxContact := range lo.FromPtr(c.doc.Metadata.Manufacture.Contact) { + ctt := contact{} + ctt.name = cydxContact.Name + ctt.email = cydxContact.Email + m.contacts = append(m.contacts, ctt) + } + } + + c.manufacturer = m + +} + func (c *cdxDoc) parseRels() { c.rels = []Relation{} @@ -383,21 +542,29 @@ func (c *cdxDoc) parseRels() { c.rels = append(c.rels, nr) } } - } -func (c *cdxDoc) addSupplierName(comp *cydx.Component) string { + +func (c *cdxDoc) assignSupplier(comp *cydx.Component) *supplier { if comp.Supplier == nil { c.addToLogs(fmt.Sprintf("cdx doc comp %s no supplier found", comp.Name)) - return "" + return nil } - name := strings.ToLower(comp.Supplier.Name) + supplier := supplier{} - if name == "" { - c.addToLogs(fmt.Sprintf("cdx doc comp %s no supplier found", comp.Name)) - return "" + supplier.name = comp.Supplier.Name + supplier.url = lo.FromPtr(comp.Supplier.URL)[0] + + if comp.Supplier.Contact != nil { + for _, cydxContact := range lo.FromPtr(comp.Supplier.Contact) { + ctt := contact{} + ctt.name = cydxContact.Name + ctt.email = cydxContact.Email + supplier.contacts = append(supplier.contacts, ctt) + } } - return name + + return &supplier } func (c *cdxDoc) parsePrimaryComponent() { @@ -410,4 +577,21 @@ func (c *cdxDoc) parsePrimaryComponent() { } c.primaryComponent = true + c.primaryComponentId = c.doc.Metadata.Component.BOMRef +} +func (c *cdxDoc) parseCompositions() { + if c.doc.Compositions == nil { + c.compositions = map[string]string{} + return + } + + for _, comp := range lo.FromPtr(c.doc.Compositions) { + if comp.Assemblies == nil { + continue + } + + for _, assembly := range lo.FromPtr(comp.Assemblies) { + c.compositions[string(assembly)] = string(comp.Aggregate) + } + } } diff --git a/pkg/sbom/component.go b/pkg/sbom/component.go index 2a863d3..0a90025 100644 --- a/pkg/sbom/component.go +++ b/pkg/sbom/component.go @@ -17,6 +17,7 @@ package sbom //counterfeiter:generate . Component import ( "github.com/interlynk-io/sbomqs/pkg/cpe" + "github.com/interlynk-io/sbomqs/pkg/licenses" "github.com/interlynk-io/sbomqs/pkg/purl" ) @@ -25,31 +26,43 @@ type Component interface { SupplierName() string Name() string Version() string - Cpes() []cpe.CPE Purls() []purl.PURL - - Licenses() []License + Licenses() []licenses.License Checksums() []Checksum - PrimaryPurpose() string RequiredFields() bool + Supplier() Supplier + Manufacturer() Manufacturer + CountOfDependencies() int + SourceCodeUrl() string + DownloadLocationUrl() string + SourceCodeHash() string + IsPrimaryComponent() bool + HasRelationShips() bool + RelationShipState() string } type component struct { - supplierName string - name string - version string - - cpes []cpe.CPE - purls []purl.PURL - - licenses []License - checksums []Checksum - + supplierName string + name string + version string + cpes []cpe.CPE + purls []purl.PURL + licenses []licenses.License + checksums []Checksum purpose string isReqFieldsPresent bool id string + supplier supplier + manufacturer manufacturer + dependenciesCount int + sourceCodeUrl string + downloadLocation string + sourceCodeHash string + isPrimary bool + hasRelationships bool + relationshipState string } func newComponent() *component { @@ -71,7 +84,7 @@ func (c component) Purls() []purl.PURL { func (c component) Cpes() []cpe.CPE { return c.cpes } -func (c component) Licenses() []License { +func (c component) Licenses() []licenses.License { return c.licenses } func (c component) Checksums() []Checksum { @@ -87,3 +100,39 @@ func (c component) RequiredFields() bool { func (c component) ID() string { return c.id } + +func (c component) Manufacturer() Manufacturer { + return c.manufacturer +} + +func (c component) Supplier() Supplier { + return c.supplier +} + +func (c component) CountOfDependencies() int { + return c.dependenciesCount +} + +func (c component) SourceCodeUrl() string { + return c.sourceCodeUrl +} + +func (c component) DownloadLocationUrl() string { + return c.downloadLocation +} + +func (c component) SourceCodeHash() string { + return c.sourceCodeHash +} + +func (c component) IsPrimaryComponent() bool { + return c.isPrimary +} + +func (c component) HasRelationShips() bool { + return c.hasRelationships +} + +func (c component) RelationShipState() string { + return c.relationshipState +} diff --git a/pkg/sbom/contact.go b/pkg/sbom/contact.go new file mode 100644 index 0000000..575c51c --- /dev/null +++ b/pkg/sbom/contact.go @@ -0,0 +1,41 @@ +// Copyright 2024 Interlynk.io +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package sbom + +//counterfeiter:generate . Contact + +type Contact interface { + Name() string + Email() string + Phone() string +} + +type contact struct { + name string + email string + phone string +} + +func (c contact) Name() string { + return c.name +} + +func (c contact) Email() string { + return c.email +} + +func (c contact) Phone() string { + return c.phone +} diff --git a/pkg/sbom/document.go b/pkg/sbom/document.go index b52b3c2..a5afb3d 100644 --- a/pkg/sbom/document.go +++ b/pkg/sbom/document.go @@ -26,4 +26,8 @@ type Document interface { Logs() []string PrimaryComponent() bool + + Lifecycles() []string + Manufacturer() Manufacturer + Supplier() Supplier } diff --git a/pkg/sbom/license.go b/pkg/sbom/license.go deleted file mode 100644 index a24245e..0000000 --- a/pkg/sbom/license.go +++ /dev/null @@ -1,111 +0,0 @@ -// Copyright 2023 Interlynk.io -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package sbom - -import ( - "sort" - "strings" - - "github.com/interlynk-io/sbomqs/pkg/licenses" -) - -//counterfeiter:generate . License -type License interface { - Short() string - Name() string - Deprecated() bool - ValidSpdxLicense() bool -} - -type license struct { - name string - short string - deprecated bool -} - -func (l license) Short() string { - return l.short -} - -func (l license) Name() string { - return l.name -} - -func (l license) Deprecated() bool { - return l.deprecated -} - -func (l license) ValidSpdxLicense() bool { - return l.name != "" - -} -func newLicenseFromID(lic string) []license { - // The incoming license string could be a - // - A SPDX short license ID - // - A SPDX license expression - // - A proprietary license id - - //NONE and NOASSERTION should be treated as - // no license - lcs := []license{} - - licenseLower := strings.ToLower(lic) - - if licenseLower == "none" || licenseLower == "noassertion" { - return lcs - } - - allLicenses := getIndividualLicenses(licenseLower) - - for _, l := range allLicenses { - meta, present := licenses.LookUp(l) - fl := &license{} - if present { - fl.name = meta.Name() - fl.deprecated = meta.Deprecated() - fl.short = meta.ShortID() - } - fl.short = l - lcs = append(lcs, *fl) - } - return lcs -} - -// taken from https://github.com/spdx/tools-golang/blob/main/idsearcher/idsearcher.go#L208 -func getIndividualLicenses(lic string) []string { - // replace parens and '+' with spaces - lic = strings.Replace(lic, "(", " ", -1) - lic = strings.Replace(lic, ")", " ", -1) - lic = strings.Replace(lic, "+", " ", -1) - lic = strings.Replace(lic, ",", " ", -1) //changed from original - - // now, split by spaces, trim, and add to slice - licElements := strings.Split(lic, " ") - lics := []string{} - for _, elt := range licElements { - elt := strings.TrimSpace(elt) - // don't add if empty or if case-insensitive operator - if elt == "" || strings.EqualFold(elt, "AND") || - strings.EqualFold(elt, "OR") || strings.EqualFold(elt, "WITH") { - continue - } - - lics = append(lics, elt) - } - - // sort before returning - sort.Strings(lics) - return lics -} diff --git a/pkg/sbom/manufacturer.go b/pkg/sbom/manufacturer.go new file mode 100644 index 0000000..15431bd --- /dev/null +++ b/pkg/sbom/manufacturer.go @@ -0,0 +1,47 @@ +// Copyright 2024 Interlynk.io +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package sbom + +//counterfeiter:generate . Manufacturer + +type Manufacturer interface { + Name() string + Url() string + Email() string + Contacts() []Contact +} + +type manufacturer struct { + name string + url string + email string + contacts []Contact +} + +func (m manufacturer) Name() string { + return m.name +} + +func (m manufacturer) Url() string { + return m.url +} + +func (m manufacturer) Email() string { + return m.email +} + +func (m manufacturer) Contacts() []Contact { + return m.contacts +} diff --git a/pkg/sbom/sbomfakes/fake_author.go b/pkg/sbom/sbomfakes/fake_author.go deleted file mode 100644 index 9928389..0000000 --- a/pkg/sbom/sbomfakes/fake_author.go +++ /dev/null @@ -1,167 +0,0 @@ -// Code generated by counterfeiter. DO NOT EDIT. -package sbomfakes - -import ( - "sync" - - "github.com/interlynk-io/sbomqs/pkg/sbom" -) - -type FakeAuthor struct { - NameStub func() string - nameMutex sync.RWMutex - nameArgsForCall []struct { - } - nameReturns struct { - result1 string - } - nameReturnsOnCall map[int]struct { - result1 string - } - TypeStub func() string - typeMutex sync.RWMutex - typeArgsForCall []struct { - } - typeReturns struct { - result1 string - } - typeReturnsOnCall map[int]struct { - result1 string - } - invocations map[string][][]interface{} - invocationsMutex sync.RWMutex -} - -func (fake *FakeAuthor) Name() string { - fake.nameMutex.Lock() - ret, specificReturn := fake.nameReturnsOnCall[len(fake.nameArgsForCall)] - fake.nameArgsForCall = append(fake.nameArgsForCall, struct { - }{}) - stub := fake.NameStub - fakeReturns := fake.nameReturns - fake.recordInvocation("Name", []interface{}{}) - fake.nameMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeAuthor) NameCallCount() int { - fake.nameMutex.RLock() - defer fake.nameMutex.RUnlock() - return len(fake.nameArgsForCall) -} - -func (fake *FakeAuthor) NameCalls(stub func() string) { - fake.nameMutex.Lock() - defer fake.nameMutex.Unlock() - fake.NameStub = stub -} - -func (fake *FakeAuthor) NameReturns(result1 string) { - fake.nameMutex.Lock() - defer fake.nameMutex.Unlock() - fake.NameStub = nil - fake.nameReturns = struct { - result1 string - }{result1} -} - -func (fake *FakeAuthor) NameReturnsOnCall(i int, result1 string) { - fake.nameMutex.Lock() - defer fake.nameMutex.Unlock() - fake.NameStub = nil - if fake.nameReturnsOnCall == nil { - fake.nameReturnsOnCall = make(map[int]struct { - result1 string - }) - } - fake.nameReturnsOnCall[i] = struct { - result1 string - }{result1} -} - -func (fake *FakeAuthor) Type() string { - fake.typeMutex.Lock() - ret, specificReturn := fake.typeReturnsOnCall[len(fake.typeArgsForCall)] - fake.typeArgsForCall = append(fake.typeArgsForCall, struct { - }{}) - stub := fake.TypeStub - fakeReturns := fake.typeReturns - fake.recordInvocation("Type", []interface{}{}) - fake.typeMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeAuthor) TypeCallCount() int { - fake.typeMutex.RLock() - defer fake.typeMutex.RUnlock() - return len(fake.typeArgsForCall) -} - -func (fake *FakeAuthor) TypeCalls(stub func() string) { - fake.typeMutex.Lock() - defer fake.typeMutex.Unlock() - fake.TypeStub = stub -} - -func (fake *FakeAuthor) TypeReturns(result1 string) { - fake.typeMutex.Lock() - defer fake.typeMutex.Unlock() - fake.TypeStub = nil - fake.typeReturns = struct { - result1 string - }{result1} -} - -func (fake *FakeAuthor) TypeReturnsOnCall(i int, result1 string) { - fake.typeMutex.Lock() - defer fake.typeMutex.Unlock() - fake.TypeStub = nil - if fake.typeReturnsOnCall == nil { - fake.typeReturnsOnCall = make(map[int]struct { - result1 string - }) - } - fake.typeReturnsOnCall[i] = struct { - result1 string - }{result1} -} - -func (fake *FakeAuthor) Invocations() map[string][][]interface{} { - fake.invocationsMutex.RLock() - defer fake.invocationsMutex.RUnlock() - fake.nameMutex.RLock() - defer fake.nameMutex.RUnlock() - fake.typeMutex.RLock() - defer fake.typeMutex.RUnlock() - copiedInvocations := map[string][][]interface{}{} - for key, value := range fake.invocations { - copiedInvocations[key] = value - } - return copiedInvocations -} - -func (fake *FakeAuthor) recordInvocation(key string, args []interface{}) { - fake.invocationsMutex.Lock() - defer fake.invocationsMutex.Unlock() - if fake.invocations == nil { - fake.invocations = map[string][][]interface{}{} - } - if fake.invocations[key] == nil { - fake.invocations[key] = [][]interface{}{} - } - fake.invocations[key] = append(fake.invocations[key], args) -} - -var _ sbom.Author = new(FakeAuthor) diff --git a/pkg/sbom/sbomfakes/fake_checksum.go b/pkg/sbom/sbomfakes/fake_checksum.go deleted file mode 100644 index 3e06f0e..0000000 --- a/pkg/sbom/sbomfakes/fake_checksum.go +++ /dev/null @@ -1,167 +0,0 @@ -// Code generated by counterfeiter. DO NOT EDIT. -package sbomfakes - -import ( - "sync" - - "github.com/interlynk-io/sbomqs/pkg/sbom" -) - -type FakeChecksum struct { - AlgoStub func() string - algoMutex sync.RWMutex - algoArgsForCall []struct { - } - algoReturns struct { - result1 string - } - algoReturnsOnCall map[int]struct { - result1 string - } - ContentStub func() string - contentMutex sync.RWMutex - contentArgsForCall []struct { - } - contentReturns struct { - result1 string - } - contentReturnsOnCall map[int]struct { - result1 string - } - invocations map[string][][]interface{} - invocationsMutex sync.RWMutex -} - -func (fake *FakeChecksum) Algo() string { - fake.algoMutex.Lock() - ret, specificReturn := fake.algoReturnsOnCall[len(fake.algoArgsForCall)] - fake.algoArgsForCall = append(fake.algoArgsForCall, struct { - }{}) - stub := fake.AlgoStub - fakeReturns := fake.algoReturns - fake.recordInvocation("Algo", []interface{}{}) - fake.algoMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeChecksum) AlgoCallCount() int { - fake.algoMutex.RLock() - defer fake.algoMutex.RUnlock() - return len(fake.algoArgsForCall) -} - -func (fake *FakeChecksum) AlgoCalls(stub func() string) { - fake.algoMutex.Lock() - defer fake.algoMutex.Unlock() - fake.AlgoStub = stub -} - -func (fake *FakeChecksum) AlgoReturns(result1 string) { - fake.algoMutex.Lock() - defer fake.algoMutex.Unlock() - fake.AlgoStub = nil - fake.algoReturns = struct { - result1 string - }{result1} -} - -func (fake *FakeChecksum) AlgoReturnsOnCall(i int, result1 string) { - fake.algoMutex.Lock() - defer fake.algoMutex.Unlock() - fake.AlgoStub = nil - if fake.algoReturnsOnCall == nil { - fake.algoReturnsOnCall = make(map[int]struct { - result1 string - }) - } - fake.algoReturnsOnCall[i] = struct { - result1 string - }{result1} -} - -func (fake *FakeChecksum) Content() string { - fake.contentMutex.Lock() - ret, specificReturn := fake.contentReturnsOnCall[len(fake.contentArgsForCall)] - fake.contentArgsForCall = append(fake.contentArgsForCall, struct { - }{}) - stub := fake.ContentStub - fakeReturns := fake.contentReturns - fake.recordInvocation("Content", []interface{}{}) - fake.contentMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeChecksum) ContentCallCount() int { - fake.contentMutex.RLock() - defer fake.contentMutex.RUnlock() - return len(fake.contentArgsForCall) -} - -func (fake *FakeChecksum) ContentCalls(stub func() string) { - fake.contentMutex.Lock() - defer fake.contentMutex.Unlock() - fake.ContentStub = stub -} - -func (fake *FakeChecksum) ContentReturns(result1 string) { - fake.contentMutex.Lock() - defer fake.contentMutex.Unlock() - fake.ContentStub = nil - fake.contentReturns = struct { - result1 string - }{result1} -} - -func (fake *FakeChecksum) ContentReturnsOnCall(i int, result1 string) { - fake.contentMutex.Lock() - defer fake.contentMutex.Unlock() - fake.ContentStub = nil - if fake.contentReturnsOnCall == nil { - fake.contentReturnsOnCall = make(map[int]struct { - result1 string - }) - } - fake.contentReturnsOnCall[i] = struct { - result1 string - }{result1} -} - -func (fake *FakeChecksum) Invocations() map[string][][]interface{} { - fake.invocationsMutex.RLock() - defer fake.invocationsMutex.RUnlock() - fake.algoMutex.RLock() - defer fake.algoMutex.RUnlock() - fake.contentMutex.RLock() - defer fake.contentMutex.RUnlock() - copiedInvocations := map[string][][]interface{}{} - for key, value := range fake.invocations { - copiedInvocations[key] = value - } - return copiedInvocations -} - -func (fake *FakeChecksum) recordInvocation(key string, args []interface{}) { - fake.invocationsMutex.Lock() - defer fake.invocationsMutex.Unlock() - if fake.invocations == nil { - fake.invocations = map[string][][]interface{}{} - } - if fake.invocations[key] == nil { - fake.invocations[key] = [][]interface{}{} - } - fake.invocations[key] = append(fake.invocations[key], args) -} - -var _ sbom.Checksum = new(FakeChecksum) diff --git a/pkg/sbom/sbomfakes/fake_component.go b/pkg/sbom/sbomfakes/fake_component.go deleted file mode 100644 index 004af99..0000000 --- a/pkg/sbom/sbomfakes/fake_component.go +++ /dev/null @@ -1,689 +0,0 @@ -// Code generated by counterfeiter. DO NOT EDIT. -package sbomfakes - -import ( - "sync" - - "github.com/interlynk-io/sbomqs/pkg/cpe" - "github.com/interlynk-io/sbomqs/pkg/purl" - "github.com/interlynk-io/sbomqs/pkg/sbom" -) - -type FakeComponent struct { - ChecksumsStub func() []sbom.Checksum - checksumsMutex sync.RWMutex - checksumsArgsForCall []struct { - } - checksumsReturns struct { - result1 []sbom.Checksum - } - checksumsReturnsOnCall map[int]struct { - result1 []sbom.Checksum - } - CpesStub func() []cpe.CPE - cpesMutex sync.RWMutex - cpesArgsForCall []struct { - } - cpesReturns struct { - result1 []cpe.CPE - } - cpesReturnsOnCall map[int]struct { - result1 []cpe.CPE - } - IDStub func() string - iDMutex sync.RWMutex - iDArgsForCall []struct { - } - iDReturns struct { - result1 string - } - iDReturnsOnCall map[int]struct { - result1 string - } - LicensesStub func() []sbom.License - licensesMutex sync.RWMutex - licensesArgsForCall []struct { - } - licensesReturns struct { - result1 []sbom.License - } - licensesReturnsOnCall map[int]struct { - result1 []sbom.License - } - NameStub func() string - nameMutex sync.RWMutex - nameArgsForCall []struct { - } - nameReturns struct { - result1 string - } - nameReturnsOnCall map[int]struct { - result1 string - } - PrimaryPurposeStub func() string - primaryPurposeMutex sync.RWMutex - primaryPurposeArgsForCall []struct { - } - primaryPurposeReturns struct { - result1 string - } - primaryPurposeReturnsOnCall map[int]struct { - result1 string - } - PurlsStub func() []purl.PURL - purlsMutex sync.RWMutex - purlsArgsForCall []struct { - } - purlsReturns struct { - result1 []purl.PURL - } - purlsReturnsOnCall map[int]struct { - result1 []purl.PURL - } - RequiredFieldsStub func() bool - requiredFieldsMutex sync.RWMutex - requiredFieldsArgsForCall []struct { - } - requiredFieldsReturns struct { - result1 bool - } - requiredFieldsReturnsOnCall map[int]struct { - result1 bool - } - SupplierNameStub func() string - supplierNameMutex sync.RWMutex - supplierNameArgsForCall []struct { - } - supplierNameReturns struct { - result1 string - } - supplierNameReturnsOnCall map[int]struct { - result1 string - } - VersionStub func() string - versionMutex sync.RWMutex - versionArgsForCall []struct { - } - versionReturns struct { - result1 string - } - versionReturnsOnCall map[int]struct { - result1 string - } - invocations map[string][][]interface{} - invocationsMutex sync.RWMutex -} - -func (fake *FakeComponent) Checksums() []sbom.Checksum { - fake.checksumsMutex.Lock() - ret, specificReturn := fake.checksumsReturnsOnCall[len(fake.checksumsArgsForCall)] - fake.checksumsArgsForCall = append(fake.checksumsArgsForCall, struct { - }{}) - stub := fake.ChecksumsStub - fakeReturns := fake.checksumsReturns - fake.recordInvocation("Checksums", []interface{}{}) - fake.checksumsMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeComponent) ChecksumsCallCount() int { - fake.checksumsMutex.RLock() - defer fake.checksumsMutex.RUnlock() - return len(fake.checksumsArgsForCall) -} - -func (fake *FakeComponent) ChecksumsCalls(stub func() []sbom.Checksum) { - fake.checksumsMutex.Lock() - defer fake.checksumsMutex.Unlock() - fake.ChecksumsStub = stub -} - -func (fake *FakeComponent) ChecksumsReturns(result1 []sbom.Checksum) { - fake.checksumsMutex.Lock() - defer fake.checksumsMutex.Unlock() - fake.ChecksumsStub = nil - fake.checksumsReturns = struct { - result1 []sbom.Checksum - }{result1} -} - -func (fake *FakeComponent) ChecksumsReturnsOnCall(i int, result1 []sbom.Checksum) { - fake.checksumsMutex.Lock() - defer fake.checksumsMutex.Unlock() - fake.ChecksumsStub = nil - if fake.checksumsReturnsOnCall == nil { - fake.checksumsReturnsOnCall = make(map[int]struct { - result1 []sbom.Checksum - }) - } - fake.checksumsReturnsOnCall[i] = struct { - result1 []sbom.Checksum - }{result1} -} - -func (fake *FakeComponent) Cpes() []cpe.CPE { - fake.cpesMutex.Lock() - ret, specificReturn := fake.cpesReturnsOnCall[len(fake.cpesArgsForCall)] - fake.cpesArgsForCall = append(fake.cpesArgsForCall, struct { - }{}) - stub := fake.CpesStub - fakeReturns := fake.cpesReturns - fake.recordInvocation("Cpes", []interface{}{}) - fake.cpesMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeComponent) CpesCallCount() int { - fake.cpesMutex.RLock() - defer fake.cpesMutex.RUnlock() - return len(fake.cpesArgsForCall) -} - -func (fake *FakeComponent) CpesCalls(stub func() []cpe.CPE) { - fake.cpesMutex.Lock() - defer fake.cpesMutex.Unlock() - fake.CpesStub = stub -} - -func (fake *FakeComponent) CpesReturns(result1 []cpe.CPE) { - fake.cpesMutex.Lock() - defer fake.cpesMutex.Unlock() - fake.CpesStub = nil - fake.cpesReturns = struct { - result1 []cpe.CPE - }{result1} -} - -func (fake *FakeComponent) CpesReturnsOnCall(i int, result1 []cpe.CPE) { - fake.cpesMutex.Lock() - defer fake.cpesMutex.Unlock() - fake.CpesStub = nil - if fake.cpesReturnsOnCall == nil { - fake.cpesReturnsOnCall = make(map[int]struct { - result1 []cpe.CPE - }) - } - fake.cpesReturnsOnCall[i] = struct { - result1 []cpe.CPE - }{result1} -} - -func (fake *FakeComponent) ID() string { - fake.iDMutex.Lock() - ret, specificReturn := fake.iDReturnsOnCall[len(fake.iDArgsForCall)] - fake.iDArgsForCall = append(fake.iDArgsForCall, struct { - }{}) - stub := fake.IDStub - fakeReturns := fake.iDReturns - fake.recordInvocation("ID", []interface{}{}) - fake.iDMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeComponent) IDCallCount() int { - fake.iDMutex.RLock() - defer fake.iDMutex.RUnlock() - return len(fake.iDArgsForCall) -} - -func (fake *FakeComponent) IDCalls(stub func() string) { - fake.iDMutex.Lock() - defer fake.iDMutex.Unlock() - fake.IDStub = stub -} - -func (fake *FakeComponent) IDReturns(result1 string) { - fake.iDMutex.Lock() - defer fake.iDMutex.Unlock() - fake.IDStub = nil - fake.iDReturns = struct { - result1 string - }{result1} -} - -func (fake *FakeComponent) IDReturnsOnCall(i int, result1 string) { - fake.iDMutex.Lock() - defer fake.iDMutex.Unlock() - fake.IDStub = nil - if fake.iDReturnsOnCall == nil { - fake.iDReturnsOnCall = make(map[int]struct { - result1 string - }) - } - fake.iDReturnsOnCall[i] = struct { - result1 string - }{result1} -} - -func (fake *FakeComponent) Licenses() []sbom.License { - fake.licensesMutex.Lock() - ret, specificReturn := fake.licensesReturnsOnCall[len(fake.licensesArgsForCall)] - fake.licensesArgsForCall = append(fake.licensesArgsForCall, struct { - }{}) - stub := fake.LicensesStub - fakeReturns := fake.licensesReturns - fake.recordInvocation("Licenses", []interface{}{}) - fake.licensesMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeComponent) LicensesCallCount() int { - fake.licensesMutex.RLock() - defer fake.licensesMutex.RUnlock() - return len(fake.licensesArgsForCall) -} - -func (fake *FakeComponent) LicensesCalls(stub func() []sbom.License) { - fake.licensesMutex.Lock() - defer fake.licensesMutex.Unlock() - fake.LicensesStub = stub -} - -func (fake *FakeComponent) LicensesReturns(result1 []sbom.License) { - fake.licensesMutex.Lock() - defer fake.licensesMutex.Unlock() - fake.LicensesStub = nil - fake.licensesReturns = struct { - result1 []sbom.License - }{result1} -} - -func (fake *FakeComponent) LicensesReturnsOnCall(i int, result1 []sbom.License) { - fake.licensesMutex.Lock() - defer fake.licensesMutex.Unlock() - fake.LicensesStub = nil - if fake.licensesReturnsOnCall == nil { - fake.licensesReturnsOnCall = make(map[int]struct { - result1 []sbom.License - }) - } - fake.licensesReturnsOnCall[i] = struct { - result1 []sbom.License - }{result1} -} - -func (fake *FakeComponent) Name() string { - fake.nameMutex.Lock() - ret, specificReturn := fake.nameReturnsOnCall[len(fake.nameArgsForCall)] - fake.nameArgsForCall = append(fake.nameArgsForCall, struct { - }{}) - stub := fake.NameStub - fakeReturns := fake.nameReturns - fake.recordInvocation("Name", []interface{}{}) - fake.nameMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeComponent) NameCallCount() int { - fake.nameMutex.RLock() - defer fake.nameMutex.RUnlock() - return len(fake.nameArgsForCall) -} - -func (fake *FakeComponent) NameCalls(stub func() string) { - fake.nameMutex.Lock() - defer fake.nameMutex.Unlock() - fake.NameStub = stub -} - -func (fake *FakeComponent) NameReturns(result1 string) { - fake.nameMutex.Lock() - defer fake.nameMutex.Unlock() - fake.NameStub = nil - fake.nameReturns = struct { - result1 string - }{result1} -} - -func (fake *FakeComponent) NameReturnsOnCall(i int, result1 string) { - fake.nameMutex.Lock() - defer fake.nameMutex.Unlock() - fake.NameStub = nil - if fake.nameReturnsOnCall == nil { - fake.nameReturnsOnCall = make(map[int]struct { - result1 string - }) - } - fake.nameReturnsOnCall[i] = struct { - result1 string - }{result1} -} - -func (fake *FakeComponent) PrimaryPurpose() string { - fake.primaryPurposeMutex.Lock() - ret, specificReturn := fake.primaryPurposeReturnsOnCall[len(fake.primaryPurposeArgsForCall)] - fake.primaryPurposeArgsForCall = append(fake.primaryPurposeArgsForCall, struct { - }{}) - stub := fake.PrimaryPurposeStub - fakeReturns := fake.primaryPurposeReturns - fake.recordInvocation("PrimaryPurpose", []interface{}{}) - fake.primaryPurposeMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeComponent) PrimaryPurposeCallCount() int { - fake.primaryPurposeMutex.RLock() - defer fake.primaryPurposeMutex.RUnlock() - return len(fake.primaryPurposeArgsForCall) -} - -func (fake *FakeComponent) PrimaryPurposeCalls(stub func() string) { - fake.primaryPurposeMutex.Lock() - defer fake.primaryPurposeMutex.Unlock() - fake.PrimaryPurposeStub = stub -} - -func (fake *FakeComponent) PrimaryPurposeReturns(result1 string) { - fake.primaryPurposeMutex.Lock() - defer fake.primaryPurposeMutex.Unlock() - fake.PrimaryPurposeStub = nil - fake.primaryPurposeReturns = struct { - result1 string - }{result1} -} - -func (fake *FakeComponent) PrimaryPurposeReturnsOnCall(i int, result1 string) { - fake.primaryPurposeMutex.Lock() - defer fake.primaryPurposeMutex.Unlock() - fake.PrimaryPurposeStub = nil - if fake.primaryPurposeReturnsOnCall == nil { - fake.primaryPurposeReturnsOnCall = make(map[int]struct { - result1 string - }) - } - fake.primaryPurposeReturnsOnCall[i] = struct { - result1 string - }{result1} -} - -func (fake *FakeComponent) Purls() []purl.PURL { - fake.purlsMutex.Lock() - ret, specificReturn := fake.purlsReturnsOnCall[len(fake.purlsArgsForCall)] - fake.purlsArgsForCall = append(fake.purlsArgsForCall, struct { - }{}) - stub := fake.PurlsStub - fakeReturns := fake.purlsReturns - fake.recordInvocation("Purls", []interface{}{}) - fake.purlsMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeComponent) PurlsCallCount() int { - fake.purlsMutex.RLock() - defer fake.purlsMutex.RUnlock() - return len(fake.purlsArgsForCall) -} - -func (fake *FakeComponent) PurlsCalls(stub func() []purl.PURL) { - fake.purlsMutex.Lock() - defer fake.purlsMutex.Unlock() - fake.PurlsStub = stub -} - -func (fake *FakeComponent) PurlsReturns(result1 []purl.PURL) { - fake.purlsMutex.Lock() - defer fake.purlsMutex.Unlock() - fake.PurlsStub = nil - fake.purlsReturns = struct { - result1 []purl.PURL - }{result1} -} - -func (fake *FakeComponent) PurlsReturnsOnCall(i int, result1 []purl.PURL) { - fake.purlsMutex.Lock() - defer fake.purlsMutex.Unlock() - fake.PurlsStub = nil - if fake.purlsReturnsOnCall == nil { - fake.purlsReturnsOnCall = make(map[int]struct { - result1 []purl.PURL - }) - } - fake.purlsReturnsOnCall[i] = struct { - result1 []purl.PURL - }{result1} -} - -func (fake *FakeComponent) RequiredFields() bool { - fake.requiredFieldsMutex.Lock() - ret, specificReturn := fake.requiredFieldsReturnsOnCall[len(fake.requiredFieldsArgsForCall)] - fake.requiredFieldsArgsForCall = append(fake.requiredFieldsArgsForCall, struct { - }{}) - stub := fake.RequiredFieldsStub - fakeReturns := fake.requiredFieldsReturns - fake.recordInvocation("RequiredFields", []interface{}{}) - fake.requiredFieldsMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeComponent) RequiredFieldsCallCount() int { - fake.requiredFieldsMutex.RLock() - defer fake.requiredFieldsMutex.RUnlock() - return len(fake.requiredFieldsArgsForCall) -} - -func (fake *FakeComponent) RequiredFieldsCalls(stub func() bool) { - fake.requiredFieldsMutex.Lock() - defer fake.requiredFieldsMutex.Unlock() - fake.RequiredFieldsStub = stub -} - -func (fake *FakeComponent) RequiredFieldsReturns(result1 bool) { - fake.requiredFieldsMutex.Lock() - defer fake.requiredFieldsMutex.Unlock() - fake.RequiredFieldsStub = nil - fake.requiredFieldsReturns = struct { - result1 bool - }{result1} -} - -func (fake *FakeComponent) RequiredFieldsReturnsOnCall(i int, result1 bool) { - fake.requiredFieldsMutex.Lock() - defer fake.requiredFieldsMutex.Unlock() - fake.RequiredFieldsStub = nil - if fake.requiredFieldsReturnsOnCall == nil { - fake.requiredFieldsReturnsOnCall = make(map[int]struct { - result1 bool - }) - } - fake.requiredFieldsReturnsOnCall[i] = struct { - result1 bool - }{result1} -} - -func (fake *FakeComponent) SupplierName() string { - fake.supplierNameMutex.Lock() - ret, specificReturn := fake.supplierNameReturnsOnCall[len(fake.supplierNameArgsForCall)] - fake.supplierNameArgsForCall = append(fake.supplierNameArgsForCall, struct { - }{}) - stub := fake.SupplierNameStub - fakeReturns := fake.supplierNameReturns - fake.recordInvocation("SupplierName", []interface{}{}) - fake.supplierNameMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeComponent) SupplierNameCallCount() int { - fake.supplierNameMutex.RLock() - defer fake.supplierNameMutex.RUnlock() - return len(fake.supplierNameArgsForCall) -} - -func (fake *FakeComponent) SupplierNameCalls(stub func() string) { - fake.supplierNameMutex.Lock() - defer fake.supplierNameMutex.Unlock() - fake.SupplierNameStub = stub -} - -func (fake *FakeComponent) SupplierNameReturns(result1 string) { - fake.supplierNameMutex.Lock() - defer fake.supplierNameMutex.Unlock() - fake.SupplierNameStub = nil - fake.supplierNameReturns = struct { - result1 string - }{result1} -} - -func (fake *FakeComponent) SupplierNameReturnsOnCall(i int, result1 string) { - fake.supplierNameMutex.Lock() - defer fake.supplierNameMutex.Unlock() - fake.SupplierNameStub = nil - if fake.supplierNameReturnsOnCall == nil { - fake.supplierNameReturnsOnCall = make(map[int]struct { - result1 string - }) - } - fake.supplierNameReturnsOnCall[i] = struct { - result1 string - }{result1} -} - -func (fake *FakeComponent) Version() string { - fake.versionMutex.Lock() - ret, specificReturn := fake.versionReturnsOnCall[len(fake.versionArgsForCall)] - fake.versionArgsForCall = append(fake.versionArgsForCall, struct { - }{}) - stub := fake.VersionStub - fakeReturns := fake.versionReturns - fake.recordInvocation("Version", []interface{}{}) - fake.versionMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeComponent) VersionCallCount() int { - fake.versionMutex.RLock() - defer fake.versionMutex.RUnlock() - return len(fake.versionArgsForCall) -} - -func (fake *FakeComponent) VersionCalls(stub func() string) { - fake.versionMutex.Lock() - defer fake.versionMutex.Unlock() - fake.VersionStub = stub -} - -func (fake *FakeComponent) VersionReturns(result1 string) { - fake.versionMutex.Lock() - defer fake.versionMutex.Unlock() - fake.VersionStub = nil - fake.versionReturns = struct { - result1 string - }{result1} -} - -func (fake *FakeComponent) VersionReturnsOnCall(i int, result1 string) { - fake.versionMutex.Lock() - defer fake.versionMutex.Unlock() - fake.VersionStub = nil - if fake.versionReturnsOnCall == nil { - fake.versionReturnsOnCall = make(map[int]struct { - result1 string - }) - } - fake.versionReturnsOnCall[i] = struct { - result1 string - }{result1} -} - -func (fake *FakeComponent) Invocations() map[string][][]interface{} { - fake.invocationsMutex.RLock() - defer fake.invocationsMutex.RUnlock() - fake.checksumsMutex.RLock() - defer fake.checksumsMutex.RUnlock() - fake.cpesMutex.RLock() - defer fake.cpesMutex.RUnlock() - fake.iDMutex.RLock() - defer fake.iDMutex.RUnlock() - fake.licensesMutex.RLock() - defer fake.licensesMutex.RUnlock() - fake.nameMutex.RLock() - defer fake.nameMutex.RUnlock() - fake.primaryPurposeMutex.RLock() - defer fake.primaryPurposeMutex.RUnlock() - fake.purlsMutex.RLock() - defer fake.purlsMutex.RUnlock() - fake.requiredFieldsMutex.RLock() - defer fake.requiredFieldsMutex.RUnlock() - fake.supplierNameMutex.RLock() - defer fake.supplierNameMutex.RUnlock() - fake.versionMutex.RLock() - defer fake.versionMutex.RUnlock() - copiedInvocations := map[string][][]interface{}{} - for key, value := range fake.invocations { - copiedInvocations[key] = value - } - return copiedInvocations -} - -func (fake *FakeComponent) recordInvocation(key string, args []interface{}) { - fake.invocationsMutex.Lock() - defer fake.invocationsMutex.Unlock() - if fake.invocations == nil { - fake.invocations = map[string][][]interface{}{} - } - if fake.invocations[key] == nil { - fake.invocations[key] = [][]interface{}{} - } - fake.invocations[key] = append(fake.invocations[key], args) -} - -var _ sbom.Component = new(FakeComponent) diff --git a/pkg/sbom/sbomfakes/fake_document.go b/pkg/sbom/sbomfakes/fake_document.go deleted file mode 100644 index d7537d3..0000000 --- a/pkg/sbom/sbomfakes/fake_document.go +++ /dev/null @@ -1,492 +0,0 @@ -// Code generated by counterfeiter. DO NOT EDIT. -package sbomfakes - -import ( - "sync" - - "github.com/interlynk-io/sbomqs/pkg/sbom" -) - -type FakeDocument struct { - AuthorsStub func() []sbom.Author - authorsMutex sync.RWMutex - authorsArgsForCall []struct { - } - authorsReturns struct { - result1 []sbom.Author - } - authorsReturnsOnCall map[int]struct { - result1 []sbom.Author - } - ComponentsStub func() []sbom.Component - componentsMutex sync.RWMutex - componentsArgsForCall []struct { - } - componentsReturns struct { - result1 []sbom.Component - } - componentsReturnsOnCall map[int]struct { - result1 []sbom.Component - } - LogsStub func() []string - logsMutex sync.RWMutex - logsArgsForCall []struct { - } - logsReturns struct { - result1 []string - } - logsReturnsOnCall map[int]struct { - result1 []string - } - PrimaryComponentStub func() bool - primaryComponentMutex sync.RWMutex - primaryComponentArgsForCall []struct { - } - primaryComponentReturns struct { - result1 bool - } - primaryComponentReturnsOnCall map[int]struct { - result1 bool - } - RelationsStub func() []sbom.Relation - relationsMutex sync.RWMutex - relationsArgsForCall []struct { - } - relationsReturns struct { - result1 []sbom.Relation - } - relationsReturnsOnCall map[int]struct { - result1 []sbom.Relation - } - SpecStub func() sbom.Spec - specMutex sync.RWMutex - specArgsForCall []struct { - } - specReturns struct { - result1 sbom.Spec - } - specReturnsOnCall map[int]struct { - result1 sbom.Spec - } - ToolsStub func() []sbom.Tool - toolsMutex sync.RWMutex - toolsArgsForCall []struct { - } - toolsReturns struct { - result1 []sbom.Tool - } - toolsReturnsOnCall map[int]struct { - result1 []sbom.Tool - } - invocations map[string][][]interface{} - invocationsMutex sync.RWMutex -} - -func (fake *FakeDocument) Authors() []sbom.Author { - fake.authorsMutex.Lock() - ret, specificReturn := fake.authorsReturnsOnCall[len(fake.authorsArgsForCall)] - fake.authorsArgsForCall = append(fake.authorsArgsForCall, struct { - }{}) - stub := fake.AuthorsStub - fakeReturns := fake.authorsReturns - fake.recordInvocation("Authors", []interface{}{}) - fake.authorsMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeDocument) AuthorsCallCount() int { - fake.authorsMutex.RLock() - defer fake.authorsMutex.RUnlock() - return len(fake.authorsArgsForCall) -} - -func (fake *FakeDocument) AuthorsCalls(stub func() []sbom.Author) { - fake.authorsMutex.Lock() - defer fake.authorsMutex.Unlock() - fake.AuthorsStub = stub -} - -func (fake *FakeDocument) AuthorsReturns(result1 []sbom.Author) { - fake.authorsMutex.Lock() - defer fake.authorsMutex.Unlock() - fake.AuthorsStub = nil - fake.authorsReturns = struct { - result1 []sbom.Author - }{result1} -} - -func (fake *FakeDocument) AuthorsReturnsOnCall(i int, result1 []sbom.Author) { - fake.authorsMutex.Lock() - defer fake.authorsMutex.Unlock() - fake.AuthorsStub = nil - if fake.authorsReturnsOnCall == nil { - fake.authorsReturnsOnCall = make(map[int]struct { - result1 []sbom.Author - }) - } - fake.authorsReturnsOnCall[i] = struct { - result1 []sbom.Author - }{result1} -} - -func (fake *FakeDocument) Components() []sbom.Component { - fake.componentsMutex.Lock() - ret, specificReturn := fake.componentsReturnsOnCall[len(fake.componentsArgsForCall)] - fake.componentsArgsForCall = append(fake.componentsArgsForCall, struct { - }{}) - stub := fake.ComponentsStub - fakeReturns := fake.componentsReturns - fake.recordInvocation("Components", []interface{}{}) - fake.componentsMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeDocument) ComponentsCallCount() int { - fake.componentsMutex.RLock() - defer fake.componentsMutex.RUnlock() - return len(fake.componentsArgsForCall) -} - -func (fake *FakeDocument) ComponentsCalls(stub func() []sbom.Component) { - fake.componentsMutex.Lock() - defer fake.componentsMutex.Unlock() - fake.ComponentsStub = stub -} - -func (fake *FakeDocument) ComponentsReturns(result1 []sbom.Component) { - fake.componentsMutex.Lock() - defer fake.componentsMutex.Unlock() - fake.ComponentsStub = nil - fake.componentsReturns = struct { - result1 []sbom.Component - }{result1} -} - -func (fake *FakeDocument) ComponentsReturnsOnCall(i int, result1 []sbom.Component) { - fake.componentsMutex.Lock() - defer fake.componentsMutex.Unlock() - fake.ComponentsStub = nil - if fake.componentsReturnsOnCall == nil { - fake.componentsReturnsOnCall = make(map[int]struct { - result1 []sbom.Component - }) - } - fake.componentsReturnsOnCall[i] = struct { - result1 []sbom.Component - }{result1} -} - -func (fake *FakeDocument) Logs() []string { - fake.logsMutex.Lock() - ret, specificReturn := fake.logsReturnsOnCall[len(fake.logsArgsForCall)] - fake.logsArgsForCall = append(fake.logsArgsForCall, struct { - }{}) - stub := fake.LogsStub - fakeReturns := fake.logsReturns - fake.recordInvocation("Logs", []interface{}{}) - fake.logsMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeDocument) LogsCallCount() int { - fake.logsMutex.RLock() - defer fake.logsMutex.RUnlock() - return len(fake.logsArgsForCall) -} - -func (fake *FakeDocument) LogsCalls(stub func() []string) { - fake.logsMutex.Lock() - defer fake.logsMutex.Unlock() - fake.LogsStub = stub -} - -func (fake *FakeDocument) LogsReturns(result1 []string) { - fake.logsMutex.Lock() - defer fake.logsMutex.Unlock() - fake.LogsStub = nil - fake.logsReturns = struct { - result1 []string - }{result1} -} - -func (fake *FakeDocument) LogsReturnsOnCall(i int, result1 []string) { - fake.logsMutex.Lock() - defer fake.logsMutex.Unlock() - fake.LogsStub = nil - if fake.logsReturnsOnCall == nil { - fake.logsReturnsOnCall = make(map[int]struct { - result1 []string - }) - } - fake.logsReturnsOnCall[i] = struct { - result1 []string - }{result1} -} - -func (fake *FakeDocument) PrimaryComponent() bool { - fake.primaryComponentMutex.Lock() - ret, specificReturn := fake.primaryComponentReturnsOnCall[len(fake.primaryComponentArgsForCall)] - fake.primaryComponentArgsForCall = append(fake.primaryComponentArgsForCall, struct { - }{}) - stub := fake.PrimaryComponentStub - fakeReturns := fake.primaryComponentReturns - fake.recordInvocation("PrimaryComponent", []interface{}{}) - fake.primaryComponentMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeDocument) PrimaryComponentCallCount() int { - fake.primaryComponentMutex.RLock() - defer fake.primaryComponentMutex.RUnlock() - return len(fake.primaryComponentArgsForCall) -} - -func (fake *FakeDocument) PrimaryComponentCalls(stub func() bool) { - fake.primaryComponentMutex.Lock() - defer fake.primaryComponentMutex.Unlock() - fake.PrimaryComponentStub = stub -} - -func (fake *FakeDocument) PrimaryComponentReturns(result1 bool) { - fake.primaryComponentMutex.Lock() - defer fake.primaryComponentMutex.Unlock() - fake.PrimaryComponentStub = nil - fake.primaryComponentReturns = struct { - result1 bool - }{result1} -} - -func (fake *FakeDocument) PrimaryComponentReturnsOnCall(i int, result1 bool) { - fake.primaryComponentMutex.Lock() - defer fake.primaryComponentMutex.Unlock() - fake.PrimaryComponentStub = nil - if fake.primaryComponentReturnsOnCall == nil { - fake.primaryComponentReturnsOnCall = make(map[int]struct { - result1 bool - }) - } - fake.primaryComponentReturnsOnCall[i] = struct { - result1 bool - }{result1} -} - -func (fake *FakeDocument) Relations() []sbom.Relation { - fake.relationsMutex.Lock() - ret, specificReturn := fake.relationsReturnsOnCall[len(fake.relationsArgsForCall)] - fake.relationsArgsForCall = append(fake.relationsArgsForCall, struct { - }{}) - stub := fake.RelationsStub - fakeReturns := fake.relationsReturns - fake.recordInvocation("Relations", []interface{}{}) - fake.relationsMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeDocument) RelationsCallCount() int { - fake.relationsMutex.RLock() - defer fake.relationsMutex.RUnlock() - return len(fake.relationsArgsForCall) -} - -func (fake *FakeDocument) RelationsCalls(stub func() []sbom.Relation) { - fake.relationsMutex.Lock() - defer fake.relationsMutex.Unlock() - fake.RelationsStub = stub -} - -func (fake *FakeDocument) RelationsReturns(result1 []sbom.Relation) { - fake.relationsMutex.Lock() - defer fake.relationsMutex.Unlock() - fake.RelationsStub = nil - fake.relationsReturns = struct { - result1 []sbom.Relation - }{result1} -} - -func (fake *FakeDocument) RelationsReturnsOnCall(i int, result1 []sbom.Relation) { - fake.relationsMutex.Lock() - defer fake.relationsMutex.Unlock() - fake.RelationsStub = nil - if fake.relationsReturnsOnCall == nil { - fake.relationsReturnsOnCall = make(map[int]struct { - result1 []sbom.Relation - }) - } - fake.relationsReturnsOnCall[i] = struct { - result1 []sbom.Relation - }{result1} -} - -func (fake *FakeDocument) Spec() sbom.Spec { - fake.specMutex.Lock() - ret, specificReturn := fake.specReturnsOnCall[len(fake.specArgsForCall)] - fake.specArgsForCall = append(fake.specArgsForCall, struct { - }{}) - stub := fake.SpecStub - fakeReturns := fake.specReturns - fake.recordInvocation("Spec", []interface{}{}) - fake.specMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeDocument) SpecCallCount() int { - fake.specMutex.RLock() - defer fake.specMutex.RUnlock() - return len(fake.specArgsForCall) -} - -func (fake *FakeDocument) SpecCalls(stub func() sbom.Spec) { - fake.specMutex.Lock() - defer fake.specMutex.Unlock() - fake.SpecStub = stub -} - -func (fake *FakeDocument) SpecReturns(result1 sbom.Spec) { - fake.specMutex.Lock() - defer fake.specMutex.Unlock() - fake.SpecStub = nil - fake.specReturns = struct { - result1 sbom.Spec - }{result1} -} - -func (fake *FakeDocument) SpecReturnsOnCall(i int, result1 sbom.Spec) { - fake.specMutex.Lock() - defer fake.specMutex.Unlock() - fake.SpecStub = nil - if fake.specReturnsOnCall == nil { - fake.specReturnsOnCall = make(map[int]struct { - result1 sbom.Spec - }) - } - fake.specReturnsOnCall[i] = struct { - result1 sbom.Spec - }{result1} -} - -func (fake *FakeDocument) Tools() []sbom.Tool { - fake.toolsMutex.Lock() - ret, specificReturn := fake.toolsReturnsOnCall[len(fake.toolsArgsForCall)] - fake.toolsArgsForCall = append(fake.toolsArgsForCall, struct { - }{}) - stub := fake.ToolsStub - fakeReturns := fake.toolsReturns - fake.recordInvocation("Tools", []interface{}{}) - fake.toolsMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeDocument) ToolsCallCount() int { - fake.toolsMutex.RLock() - defer fake.toolsMutex.RUnlock() - return len(fake.toolsArgsForCall) -} - -func (fake *FakeDocument) ToolsCalls(stub func() []sbom.Tool) { - fake.toolsMutex.Lock() - defer fake.toolsMutex.Unlock() - fake.ToolsStub = stub -} - -func (fake *FakeDocument) ToolsReturns(result1 []sbom.Tool) { - fake.toolsMutex.Lock() - defer fake.toolsMutex.Unlock() - fake.ToolsStub = nil - fake.toolsReturns = struct { - result1 []sbom.Tool - }{result1} -} - -func (fake *FakeDocument) ToolsReturnsOnCall(i int, result1 []sbom.Tool) { - fake.toolsMutex.Lock() - defer fake.toolsMutex.Unlock() - fake.ToolsStub = nil - if fake.toolsReturnsOnCall == nil { - fake.toolsReturnsOnCall = make(map[int]struct { - result1 []sbom.Tool - }) - } - fake.toolsReturnsOnCall[i] = struct { - result1 []sbom.Tool - }{result1} -} - -func (fake *FakeDocument) Invocations() map[string][][]interface{} { - fake.invocationsMutex.RLock() - defer fake.invocationsMutex.RUnlock() - fake.authorsMutex.RLock() - defer fake.authorsMutex.RUnlock() - fake.componentsMutex.RLock() - defer fake.componentsMutex.RUnlock() - fake.logsMutex.RLock() - defer fake.logsMutex.RUnlock() - fake.primaryComponentMutex.RLock() - defer fake.primaryComponentMutex.RUnlock() - fake.relationsMutex.RLock() - defer fake.relationsMutex.RUnlock() - fake.specMutex.RLock() - defer fake.specMutex.RUnlock() - fake.toolsMutex.RLock() - defer fake.toolsMutex.RUnlock() - copiedInvocations := map[string][][]interface{}{} - for key, value := range fake.invocations { - copiedInvocations[key] = value - } - return copiedInvocations -} - -func (fake *FakeDocument) recordInvocation(key string, args []interface{}) { - fake.invocationsMutex.Lock() - defer fake.invocationsMutex.Unlock() - if fake.invocations == nil { - fake.invocations = map[string][][]interface{}{} - } - if fake.invocations[key] == nil { - fake.invocations[key] = [][]interface{}{} - } - fake.invocations[key] = append(fake.invocations[key], args) -} - -var _ sbom.Document = new(FakeDocument) diff --git a/pkg/sbom/sbomfakes/fake_license.go b/pkg/sbom/sbomfakes/fake_license.go deleted file mode 100644 index 6bb9a18..0000000 --- a/pkg/sbom/sbomfakes/fake_license.go +++ /dev/null @@ -1,297 +0,0 @@ -// Code generated by counterfeiter. DO NOT EDIT. -package sbomfakes - -import ( - "sync" - - "github.com/interlynk-io/sbomqs/pkg/sbom" -) - -type FakeLicense struct { - DeprecatedStub func() bool - deprecatedMutex sync.RWMutex - deprecatedArgsForCall []struct { - } - deprecatedReturns struct { - result1 bool - } - deprecatedReturnsOnCall map[int]struct { - result1 bool - } - NameStub func() string - nameMutex sync.RWMutex - nameArgsForCall []struct { - } - nameReturns struct { - result1 string - } - nameReturnsOnCall map[int]struct { - result1 string - } - ShortStub func() string - shortMutex sync.RWMutex - shortArgsForCall []struct { - } - shortReturns struct { - result1 string - } - shortReturnsOnCall map[int]struct { - result1 string - } - ValidSpdxLicenseStub func() bool - validSpdxLicenseMutex sync.RWMutex - validSpdxLicenseArgsForCall []struct { - } - validSpdxLicenseReturns struct { - result1 bool - } - validSpdxLicenseReturnsOnCall map[int]struct { - result1 bool - } - invocations map[string][][]interface{} - invocationsMutex sync.RWMutex -} - -func (fake *FakeLicense) Deprecated() bool { - fake.deprecatedMutex.Lock() - ret, specificReturn := fake.deprecatedReturnsOnCall[len(fake.deprecatedArgsForCall)] - fake.deprecatedArgsForCall = append(fake.deprecatedArgsForCall, struct { - }{}) - stub := fake.DeprecatedStub - fakeReturns := fake.deprecatedReturns - fake.recordInvocation("Deprecated", []interface{}{}) - fake.deprecatedMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeLicense) DeprecatedCallCount() int { - fake.deprecatedMutex.RLock() - defer fake.deprecatedMutex.RUnlock() - return len(fake.deprecatedArgsForCall) -} - -func (fake *FakeLicense) DeprecatedCalls(stub func() bool) { - fake.deprecatedMutex.Lock() - defer fake.deprecatedMutex.Unlock() - fake.DeprecatedStub = stub -} - -func (fake *FakeLicense) DeprecatedReturns(result1 bool) { - fake.deprecatedMutex.Lock() - defer fake.deprecatedMutex.Unlock() - fake.DeprecatedStub = nil - fake.deprecatedReturns = struct { - result1 bool - }{result1} -} - -func (fake *FakeLicense) DeprecatedReturnsOnCall(i int, result1 bool) { - fake.deprecatedMutex.Lock() - defer fake.deprecatedMutex.Unlock() - fake.DeprecatedStub = nil - if fake.deprecatedReturnsOnCall == nil { - fake.deprecatedReturnsOnCall = make(map[int]struct { - result1 bool - }) - } - fake.deprecatedReturnsOnCall[i] = struct { - result1 bool - }{result1} -} - -func (fake *FakeLicense) Name() string { - fake.nameMutex.Lock() - ret, specificReturn := fake.nameReturnsOnCall[len(fake.nameArgsForCall)] - fake.nameArgsForCall = append(fake.nameArgsForCall, struct { - }{}) - stub := fake.NameStub - fakeReturns := fake.nameReturns - fake.recordInvocation("Name", []interface{}{}) - fake.nameMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeLicense) NameCallCount() int { - fake.nameMutex.RLock() - defer fake.nameMutex.RUnlock() - return len(fake.nameArgsForCall) -} - -func (fake *FakeLicense) NameCalls(stub func() string) { - fake.nameMutex.Lock() - defer fake.nameMutex.Unlock() - fake.NameStub = stub -} - -func (fake *FakeLicense) NameReturns(result1 string) { - fake.nameMutex.Lock() - defer fake.nameMutex.Unlock() - fake.NameStub = nil - fake.nameReturns = struct { - result1 string - }{result1} -} - -func (fake *FakeLicense) NameReturnsOnCall(i int, result1 string) { - fake.nameMutex.Lock() - defer fake.nameMutex.Unlock() - fake.NameStub = nil - if fake.nameReturnsOnCall == nil { - fake.nameReturnsOnCall = make(map[int]struct { - result1 string - }) - } - fake.nameReturnsOnCall[i] = struct { - result1 string - }{result1} -} - -func (fake *FakeLicense) Short() string { - fake.shortMutex.Lock() - ret, specificReturn := fake.shortReturnsOnCall[len(fake.shortArgsForCall)] - fake.shortArgsForCall = append(fake.shortArgsForCall, struct { - }{}) - stub := fake.ShortStub - fakeReturns := fake.shortReturns - fake.recordInvocation("Short", []interface{}{}) - fake.shortMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeLicense) ShortCallCount() int { - fake.shortMutex.RLock() - defer fake.shortMutex.RUnlock() - return len(fake.shortArgsForCall) -} - -func (fake *FakeLicense) ShortCalls(stub func() string) { - fake.shortMutex.Lock() - defer fake.shortMutex.Unlock() - fake.ShortStub = stub -} - -func (fake *FakeLicense) ShortReturns(result1 string) { - fake.shortMutex.Lock() - defer fake.shortMutex.Unlock() - fake.ShortStub = nil - fake.shortReturns = struct { - result1 string - }{result1} -} - -func (fake *FakeLicense) ShortReturnsOnCall(i int, result1 string) { - fake.shortMutex.Lock() - defer fake.shortMutex.Unlock() - fake.ShortStub = nil - if fake.shortReturnsOnCall == nil { - fake.shortReturnsOnCall = make(map[int]struct { - result1 string - }) - } - fake.shortReturnsOnCall[i] = struct { - result1 string - }{result1} -} - -func (fake *FakeLicense) ValidSpdxLicense() bool { - fake.validSpdxLicenseMutex.Lock() - ret, specificReturn := fake.validSpdxLicenseReturnsOnCall[len(fake.validSpdxLicenseArgsForCall)] - fake.validSpdxLicenseArgsForCall = append(fake.validSpdxLicenseArgsForCall, struct { - }{}) - stub := fake.ValidSpdxLicenseStub - fakeReturns := fake.validSpdxLicenseReturns - fake.recordInvocation("ValidSpdxLicense", []interface{}{}) - fake.validSpdxLicenseMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeLicense) ValidSpdxLicenseCallCount() int { - fake.validSpdxLicenseMutex.RLock() - defer fake.validSpdxLicenseMutex.RUnlock() - return len(fake.validSpdxLicenseArgsForCall) -} - -func (fake *FakeLicense) ValidSpdxLicenseCalls(stub func() bool) { - fake.validSpdxLicenseMutex.Lock() - defer fake.validSpdxLicenseMutex.Unlock() - fake.ValidSpdxLicenseStub = stub -} - -func (fake *FakeLicense) ValidSpdxLicenseReturns(result1 bool) { - fake.validSpdxLicenseMutex.Lock() - defer fake.validSpdxLicenseMutex.Unlock() - fake.ValidSpdxLicenseStub = nil - fake.validSpdxLicenseReturns = struct { - result1 bool - }{result1} -} - -func (fake *FakeLicense) ValidSpdxLicenseReturnsOnCall(i int, result1 bool) { - fake.validSpdxLicenseMutex.Lock() - defer fake.validSpdxLicenseMutex.Unlock() - fake.ValidSpdxLicenseStub = nil - if fake.validSpdxLicenseReturnsOnCall == nil { - fake.validSpdxLicenseReturnsOnCall = make(map[int]struct { - result1 bool - }) - } - fake.validSpdxLicenseReturnsOnCall[i] = struct { - result1 bool - }{result1} -} - -func (fake *FakeLicense) Invocations() map[string][][]interface{} { - fake.invocationsMutex.RLock() - defer fake.invocationsMutex.RUnlock() - fake.deprecatedMutex.RLock() - defer fake.deprecatedMutex.RUnlock() - fake.nameMutex.RLock() - defer fake.nameMutex.RUnlock() - fake.shortMutex.RLock() - defer fake.shortMutex.RUnlock() - fake.validSpdxLicenseMutex.RLock() - defer fake.validSpdxLicenseMutex.RUnlock() - copiedInvocations := map[string][][]interface{}{} - for key, value := range fake.invocations { - copiedInvocations[key] = value - } - return copiedInvocations -} - -func (fake *FakeLicense) recordInvocation(key string, args []interface{}) { - fake.invocationsMutex.Lock() - defer fake.invocationsMutex.Unlock() - if fake.invocations == nil { - fake.invocations = map[string][][]interface{}{} - } - if fake.invocations[key] == nil { - fake.invocations[key] = [][]interface{}{} - } - fake.invocations[key] = append(fake.invocations[key], args) -} - -var _ sbom.License = new(FakeLicense) diff --git a/pkg/sbom/sbomfakes/fake_relation.go b/pkg/sbom/sbomfakes/fake_relation.go deleted file mode 100644 index 9754b7c..0000000 --- a/pkg/sbom/sbomfakes/fake_relation.go +++ /dev/null @@ -1,167 +0,0 @@ -// Code generated by counterfeiter. DO NOT EDIT. -package sbomfakes - -import ( - "sync" - - "github.com/interlynk-io/sbomqs/pkg/sbom" -) - -type FakeRelation struct { - FromStub func() string - fromMutex sync.RWMutex - fromArgsForCall []struct { - } - fromReturns struct { - result1 string - } - fromReturnsOnCall map[int]struct { - result1 string - } - ToStub func() string - toMutex sync.RWMutex - toArgsForCall []struct { - } - toReturns struct { - result1 string - } - toReturnsOnCall map[int]struct { - result1 string - } - invocations map[string][][]interface{} - invocationsMutex sync.RWMutex -} - -func (fake *FakeRelation) From() string { - fake.fromMutex.Lock() - ret, specificReturn := fake.fromReturnsOnCall[len(fake.fromArgsForCall)] - fake.fromArgsForCall = append(fake.fromArgsForCall, struct { - }{}) - stub := fake.FromStub - fakeReturns := fake.fromReturns - fake.recordInvocation("From", []interface{}{}) - fake.fromMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeRelation) FromCallCount() int { - fake.fromMutex.RLock() - defer fake.fromMutex.RUnlock() - return len(fake.fromArgsForCall) -} - -func (fake *FakeRelation) FromCalls(stub func() string) { - fake.fromMutex.Lock() - defer fake.fromMutex.Unlock() - fake.FromStub = stub -} - -func (fake *FakeRelation) FromReturns(result1 string) { - fake.fromMutex.Lock() - defer fake.fromMutex.Unlock() - fake.FromStub = nil - fake.fromReturns = struct { - result1 string - }{result1} -} - -func (fake *FakeRelation) FromReturnsOnCall(i int, result1 string) { - fake.fromMutex.Lock() - defer fake.fromMutex.Unlock() - fake.FromStub = nil - if fake.fromReturnsOnCall == nil { - fake.fromReturnsOnCall = make(map[int]struct { - result1 string - }) - } - fake.fromReturnsOnCall[i] = struct { - result1 string - }{result1} -} - -func (fake *FakeRelation) To() string { - fake.toMutex.Lock() - ret, specificReturn := fake.toReturnsOnCall[len(fake.toArgsForCall)] - fake.toArgsForCall = append(fake.toArgsForCall, struct { - }{}) - stub := fake.ToStub - fakeReturns := fake.toReturns - fake.recordInvocation("To", []interface{}{}) - fake.toMutex.Unlock() - if stub != nil { - return stub() - } - if specificReturn { - return ret.result1 - } - return fakeReturns.result1 -} - -func (fake *FakeRelation) ToCallCount() int { - fake.toMutex.RLock() - defer fake.toMutex.RUnlock() - return len(fake.toArgsForCall) -} - -func (fake *FakeRelation) ToCalls(stub func() string) { - fake.toMutex.Lock() - defer fake.toMutex.Unlock() - fake.ToStub = stub -} - -func (fake *FakeRelation) ToReturns(result1 string) { - fake.toMutex.Lock() - defer fake.toMutex.Unlock() - fake.ToStub = nil - fake.toReturns = struct { - result1 string - }{result1} -} - -func (fake *FakeRelation) ToReturnsOnCall(i int, result1 string) { - fake.toMutex.Lock() - defer fake.toMutex.Unlock() - fake.ToStub = nil - if fake.toReturnsOnCall == nil { - fake.toReturnsOnCall = make(map[int]struct { - result1 string - }) - } - fake.toReturnsOnCall[i] = struct { - result1 string - }{result1} -} - -func (fake *FakeRelation) Invocations() map[string][][]interface{} { - fake.invocationsMutex.RLock() - defer fake.invocationsMutex.RUnlock() - fake.fromMutex.RLock() - defer fake.fromMutex.RUnlock() - fake.toMutex.RLock() - defer fake.toMutex.RUnlock() - copiedInvocations := map[string][][]interface{}{} - for key, value := range fake.invocations { - copiedInvocations[key] = value - } - return copiedInvocations -} - -func (fake *FakeRelation) recordInvocation(key string, args []interface{}) { - fake.invocationsMutex.Lock() - defer fake.invocationsMutex.Unlock() - if fake.invocations == nil { - fake.invocations = map[string][][]interface{}{} - } - if fake.invocations[key] == nil { - fake.invocations[key] = [][]interface{}{} - } - fake.invocations[key] = append(fake.invocations[key], args) -} - -var _ sbom.Relation = new(FakeRelation) diff --git a/pkg/sbom/spdx.go b/pkg/sbom/spdx.go index 50d30d4..ca5cef8 100644 --- a/pkg/sbom/spdx.go +++ b/pkg/sbom/spdx.go @@ -18,12 +18,15 @@ import ( "context" "fmt" "io" + "regexp" "strings" "unicode" "github.com/interlynk-io/sbomqs/pkg/cpe" + "github.com/interlynk-io/sbomqs/pkg/licenses" "github.com/interlynk-io/sbomqs/pkg/logger" "github.com/interlynk-io/sbomqs/pkg/purl" + "github.com/samber/lo" spdx_json "github.com/spdx/tools-golang/json" spdx_rdf "github.com/spdx/tools-golang/rdf" spdx_common "github.com/spdx/tools-golang/spdx/v2/common" @@ -37,16 +40,18 @@ var spdx_spec_versions = []string{"SPDX-2.1", "SPDX-2.2", "SPDX-2.3"} var spdx_primary_purpose = []string{"application", "framework", "library", "container", "operating-system", "device", "firmware", "source", "archive", "file", "install", "other"} type spdxDoc struct { - doc *v2_3.Document - format FileFormat - ctx context.Context - spec *spec - comps []Component - authors []Author - tools []Tool - rels []Relation - logs []string - primaryComponent bool + doc *v2_3.Document + format FileFormat + ctx context.Context + spec *spec + comps []Component + authors []Author + tools []Tool + rels []Relation + logs []string + primaryComponent bool + primaryComponentId string + lifecycles string } func newSPDXDoc(ctx context.Context, f io.ReadSeeker, format FileFormat) (Document, error) { @@ -113,13 +118,25 @@ func (s spdxDoc) PrimaryComponent() bool { return s.primaryComponent } +func (s spdxDoc) Lifecycles() []string { + return []string{s.lifecycles} +} + +func (s spdxDoc) Manufacturer() Manufacturer { + return nil +} + +func (s spdxDoc) Supplier() Supplier { + return nil +} + func (s *spdxDoc) parse() { s.parseSpec() - s.parseComps() s.parseAuthors() s.parseTool() s.parseRels() s.parsePrimaryComponent() + s.parseComps() } func (s *spdxDoc) parseSpec() { @@ -132,12 +149,16 @@ func (s *spdxDoc) parseSpec() { sp.creationTimestamp = s.doc.CreationInfo.Created } - for _, l := range newLicenseFromID(s.doc.DataLicense) { - sp.licenses = append(sp.licenses, l) - } + lics := licenses.LookupExpression(s.doc.DataLicense, nil) + + sp.licenses = append(sp.licenses, lics...) sp.namespace = s.doc.DocumentNamespace + if s.doc.DocumentNamespace != "" { + sp.uri = s.doc.DocumentNamespace + } + s.spec = sp } @@ -149,7 +170,6 @@ func (s *spdxDoc) parseComps() { nc.version = sc.PackageVersion nc.name = sc.PackageName - nc.supplierName = s.addSupplierName(index) nc.purpose = sc.PrimaryPackagePurpose nc.isReqFieldsPresent = s.pkgRequiredFields(index) nc.purls = s.purls(index) @@ -158,6 +178,35 @@ func (s *spdxDoc) parseComps() { nc.licenses = s.licenses(index) nc.id = string(sc.PackageSPDXIdentifier) + manu := s.getManufacturer(index) + if manu != nil { + nc.manufacturer = *manu + } + + supp := s.getSupplier(index) + if supp != nil { + nc.supplier = *supp + } + nc.supplierName = s.addSupplierName(index) + nc.sourceCodeHash = sc.PackageVerificationCode.Value + + //nc.sourceCodeUrl //no conlusive way to get this from SPDX + nc.downloadLocation = sc.PackageDownloadLocation + + nc.isPrimary = s.primaryComponentId == string(sc.PackageSPDXIdentifier) + + fromRelsPresent := func(rels []Relation, id string) bool { + for _, r := range rels { + if r.From() == id { + return true + } + } + return false + } + + nc.hasRelationships = fromRelsPresent(s.rels, string(sc.PackageSPDXIdentifier)) + nc.relationshipState = "not-specified" + s.comps = append(s.comps, nc) } } @@ -175,9 +224,14 @@ func (s *spdxDoc) parseAuthors() { continue } a := author{} - a.name = c.Creator - a.authorType = ctType - s.authors = append(s.authors, a) + + entity := parseEntity(fmt.Sprintf("%s: %s", c.CreatorType, c.Creator)) + if entity != nil { + a.name = entity.name + a.email = entity.email + a.authorType = ctType + s.authors = append(s.authors, a) + } } } @@ -419,117 +473,141 @@ func (s *spdxDoc) checksums(index int) []Checksum { return chks } -func (s *spdxDoc) licenses(index int) []License { - lics := []License{} +func (s *spdxDoc) licenses(index int) []licenses.License { + lics := []licenses.License{} + pkg := s.doc.Packages[index] - checkOtherLics := func(id string) (bool, string) { - if s.doc.OtherLicenses == nil || len(s.doc.OtherLicenses) <= 0 { - return false, "" - } - for _, l := range s.doc.OtherLicenses { - if id == l.LicenseIdentifier { - return true, l.ExtractedText - } + + otherLicenses := lo.Map(s.doc.OtherLicenses, func(l *v2_3.OtherLicense, _ int) licenses.License { + return licenses.CreateCustomLicense(l.LicenseIdentifier, l.LicenseName) + }) + + if pkg.PackageLicenseConcluded != "" && strings.ToLower(pkg.PackageLicenseConcluded) != "noassertion" && strings.ToLower(pkg.PackageLicenseConcluded) != "none" { + conLics := licenses.LookupExpression(pkg.PackageLicenseConcluded, otherLicenses) + lics = append(lics, conLics...) + if len(conLics) > 0 { + return lics } - return false, "" } - addLicense := func(agg *[]License, n []license) { - for _, l := range n { - *agg = append(*agg, l) - } + if pkg.PackageLicenseDeclared != "" && strings.ToLower(pkg.PackageLicenseDeclared) != "noassertion" && strings.ToLower(pkg.PackageLicenseDeclared) != "none" { + decLics := licenses.LookupExpression(pkg.PackageLicenseDeclared, otherLicenses) + lics = append(lics, decLics...) + return lics } - present, otherLic := checkOtherLics(pkg.PackageLicenseDeclared) + return lics +} - if present { - addLicense(&lics, newLicenseFromID(otherLic)) - } else { - addLicense(&lics, newLicenseFromID(pkg.PackageLicenseDeclared)) - } +func (s *spdxDoc) getManufacturer(index int) *manufacturer { + pkg := s.doc.Packages[index] - present, otherLic = checkOtherLics(pkg.PackageLicenseConcluded) - if present { - addLicense(&lics, newLicenseFromID(otherLic)) - } else { - addLicense(&lics, newLicenseFromID(pkg.PackageLicenseConcluded)) + if pkg.PackageOriginator == nil { + return nil } - removeDups := func(lics []License) []License { - uniqs := []License{} - dedup := map[string]bool{} - for _, l := range lics { - if _, ok := dedup[l.Short()]; !ok { - uniqs = append(uniqs, l) - dedup[l.Short()] = true - } - } - return uniqs - + if strings.ToLower(pkg.PackageOriginator.Originator) == "noassertion" { + return nil } - finalLics := removeDups(lics) - if len(finalLics) == 0 { - s.addToLogs(fmt.Sprintf("spdx doc pkg %s at index %d no licenses found", pkg.PackageName, index)) + + entity := parseEntity(fmt.Sprintf("%s: %s", pkg.PackageOriginator.OriginatorType, pkg.PackageOriginator.Originator)) + if entity == nil { + return nil } - return finalLics + return &manufacturer{ + name: entity.name, + email: entity.email, + } } -// https://github.com/spdx/ntia-conformance-checker/issues/100 -// Add spdx support to check both supplier and originator -func (s *spdxDoc) addSupplierName(index int) string { +func (s *spdxDoc) getSupplier(index int) *supplier { pkg := s.doc.Packages[index] - if pkg.PackageSupplier == nil && pkg.PackageOriginator == nil { - s.addToLogs(fmt.Sprintf("spdx doc pkg %s at index %d no supplier/originator found", pkg.PackageName, index)) - return "" + if pkg.PackageSupplier == nil { + return nil } - var supplierName, orignatorName string - - if pkg.PackageSupplier != nil { - supplierName = strings.ToLower(pkg.PackageSupplier.Supplier) + if strings.ToLower(pkg.PackageSupplier.Supplier) == "noassertion" { + return nil } - if pkg.PackageOriginator != nil { - orignatorName = strings.ToLower(pkg.PackageOriginator.Originator) + entity := parseEntity(fmt.Sprintf("%s: %s", pkg.PackageSupplier.SupplierType, pkg.PackageSupplier.Supplier)) + if entity == nil { + return nil } - if supplierName == "" && orignatorName == "" { - s.addToLogs(fmt.Sprintf("spdx doc pkg %s at index %d no supplier/originator found", pkg.PackageName, index)) - return "" + return &supplier{ + name: entity.name, + email: entity.email, } +} + +// https://github.com/spdx/ntia-conformance-checker/issues/100 +// Add spdx support to check both supplier and originator +func (s *spdxDoc) addSupplierName(index int) string { + supplier := s.getSupplier(index) + manufacturer := s.getManufacturer(index) - if supplierName == "noassertion" && orignatorName == "noassertion" { - s.addToLogs(fmt.Sprintf("spdx doc pkg %s at index %d no supplier/originator found", pkg.PackageName, index)) + if supplier == nil && manufacturer == nil { + s.addToLogs(fmt.Sprintf("spdx doc pkg %s at index %d no supplier/originator found", s.doc.Packages[index].PackageName, index)) return "" } - if supplierName != "" && supplierName != "noassertion" { - return supplierName + if supplier != nil { + return supplier.name } - if orignatorName != "" && orignatorName != "noassertion" { - return orignatorName + if manufacturer != nil { + return manufacturer.name } return "" } func (s *spdxDoc) parsePrimaryComponent() { - pkgIds := make(map[string]bool) + pkgIds := make(map[string]*v2_3.Package) for _, pkg := range s.doc.Packages { - pkgIds[string(pkg.PackageSPDXIdentifier)] = true + pkgIds[string(pkg.PackageSPDXIdentifier)] = pkg } for _, r := range s.doc.Relationships { if strings.ToUpper(r.Relationship) == spdx_common.TypeRelationshipDescribe { _, ok := pkgIds[string(r.RefB.ElementRefID)] if ok { + s.primaryComponentId = string(r.RefB.ElementRefID) s.primaryComponent = true return } } } } + +type entity struct { + name string + email string +} + +func parseEntity(input string) *entity { + if strings.TrimSpace(input) == "" { + return nil + } + + // Regex pattern to match organization or person and email + pattern := `(Organization|Person)\s*:\s*([^(]+)\s*(?:\(\s*([^)]+)\s*\))?` + regex := regexp.MustCompile(pattern) + match := regex.FindStringSubmatch(input) + if len(match) == 0 { + return nil + } + + name := strings.TrimSpace(match[2]) + var email string + if len(match) > 3 { + email = strings.TrimSpace(match[3]) + } + + entity := &entity{name: name, email: email} + return entity +} diff --git a/pkg/sbom/spec.go b/pkg/sbom/spec.go index d4eb34d..d50ae79 100644 --- a/pkg/sbom/spec.go +++ b/pkg/sbom/spec.go @@ -14,6 +14,8 @@ package sbom +import "github.com/interlynk-io/sbomqs/pkg/licenses" + type Spec interface { Version() string FileFormat() string @@ -21,8 +23,9 @@ type Spec interface { Name() string RequiredFields() bool CreationTimestamp() string - Licenses() []License + Licenses() []licenses.License Namespace() string + URI() string } type spec struct { @@ -30,9 +33,10 @@ type spec struct { format string name string isReqFieldsPresent bool - licenses []License + licenses []licenses.License creationTimestamp string namespace string + uri string } func newSpec() *spec { @@ -63,10 +67,14 @@ func (s spec) CreationTimestamp() string { return s.creationTimestamp } -func (s spec) Licenses() []License { +func (s spec) Licenses() []licenses.License { return s.licenses } func (s spec) Namespace() string { return s.namespace } + +func (s spec) URI() string { + return s.uri +} diff --git a/pkg/sbom/supplier.go b/pkg/sbom/supplier.go new file mode 100644 index 0000000..dc91afc --- /dev/null +++ b/pkg/sbom/supplier.go @@ -0,0 +1,47 @@ +// Copyright 2024 Interlynk.io +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package sbom + +//counterfeiter:generate . Supplier + +type Supplier interface { + Name() string + Email() string + Url() string + Contacts() []Contact +} + +type supplier struct { + name string + email string + url string + contacts []Contact +} + +func (s supplier) Name() string { + return s.name +} + +func (s supplier) Email() string { + return s.email +} + +func (s supplier) Url() string { + return s.url +} + +func (s supplier) Contacts() []Contact { + return s.contacts +} diff --git a/pkg/scorer/quality.go b/pkg/scorer/quality.go index 1e917cc..7ef3080 100644 --- a/pkg/scorer/quality.go +++ b/pkg/scorer/quality.go @@ -38,8 +38,8 @@ func compWithValidLicensesCheck(d sbom.Document, c *check) score { compScores := lo.Map(d.Components(), func(c sbom.Component, _ int) float64 { tl := len(c.Licenses()) - validLic := lo.CountBy(c.Licenses(), func(l sbom.License) bool { - return l.ValidSpdxLicense() + validLic := lo.CountBy(c.Licenses(), func(l licenses.License) bool { + return l.Deprecated() || l.Source() == "custom" }) return (float64(validLic) / float64(tl)) * 10.0 @@ -101,7 +101,7 @@ func compWithNoDepLicensesCheck(d sbom.Document, c *check) score { }, 0) withDepLicense := lo.CountBy(d.Components(), func(c sbom.Component) bool { - deps := lo.CountBy(c.Licenses(), func(l sbom.License) bool { + deps := lo.CountBy(c.Licenses(), func(l licenses.License) bool { return l.Deprecated() }) return deps > 0 @@ -133,8 +133,8 @@ func compWithRestrictedLicensesCheck(d sbom.Document, c *check) score { }, 0) withRestrictLicense := lo.CountBy(d.Components(), func(c sbom.Component) bool { - rest := lo.CountBy(c.Licenses(), func(l sbom.License) bool { - return licenses.RestrictedLicense(l.Name()) + rest := lo.CountBy(c.Licenses(), func(l licenses.License) bool { + return l.Restrictive() }) return rest > 0 }) @@ -227,10 +227,8 @@ func docWithPrimaryComponentCheck(d sbom.Document, c *check) score { s.setScore(10.0) s.setDesc("primary component found") return *s - } else { - s.setScore(0.0) - s.setDesc("no primary component found") - return *s } + s.setScore(0.0) + s.setDesc("no primary component found") return *s } diff --git a/pkg/scorer/sharing.go b/pkg/scorer/sharing.go index 5c5d43d..04fca05 100644 --- a/pkg/scorer/sharing.go +++ b/pkg/scorer/sharing.go @@ -27,8 +27,8 @@ func sharableLicenseCheck(d sbom.Document, c *check) score { lics := d.Spec().Licenses() - freeLics := lo.CountBy(lics, func(l sbom.License) bool { - return licenses.FreeForAnyUse(l.Short()) + freeLics := lo.CountBy(lics, func(l licenses.License) bool { + return l.FreeAnyUse() }) if len(lics) > 0 && freeLics == len(lics) { diff --git a/samples/airflow_lifecycles.json b/samples/airflow_lifecycles.json new file mode 100644 index 0000000..2fe2d0b --- /dev/null +++ b/samples/airflow_lifecycles.json @@ -0,0 +1,68222 @@ +{ + "bomFormat": "CycloneDX", + "specVersion": "1.5", + "serialNumber": "urn:uuid:341876ef-52e8-4318-9e85-436986ca2a27", + "version": 1, + "metadata": { + "timestamp": "2023-12-18T17:45:47.699Z", + "tools": { + "components": [ + { + "group": "@cyclonedx", + "name": "cdxgen", + "version": "9.9.9", + "purl": "pkg:npm/%40cyclonedx/cdxgen@9.9.9", + "type": "application", + "bom-ref": "pkg:npm/@cyclonedx/cdxgen@9.9.9", + "author": "OWASP Foundation", + "publisher": "OWASP Foundation" + } + ] + }, + "authors": [ + { + "name": "OWASP Foundation" + } + ], + "component": { + "group": "", + "name": "python3.10", + "type": "application", + "bom-ref": "pkg:npm/python3.10", + "purl": "pkg:npm/python3.10", + "components": [] + }, + "lifecycles": [ + { + "phase": "build" + }, + { + "phase": "post-build" + } + ] + }, + "components": [ + { + "group": "@ampproject", + "name": "remapping", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0289708ddec7482d8fc98d1f0e3ff003f1229904f81df127158369e6cf42425add872bd64edbd9e58ceb50fbba47aff58ca894971bbc6d48647529ca1cd00730" + } + ], + "purl": "pkg:npm/%40ampproject/remapping@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/@ampproject/remapping@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@ampproject", + "name": "remapping", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a919a38fc9e3f6a98b4d05d799a47571c93751749130fadbb0b2406ac66917eb77ae223bd415de77979b20e630427b7291e66e863b1dc1e11cf41c47e49736eb" + } + ], + "purl": "pkg:npm/%40ampproject/remapping@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/@ampproject/remapping@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "code-frame", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "f69cc3ab273a38b0daa9efb36c00a01646fa7ca30d1ba08e6caa676170a146cbd81b211d73b080d816aa78e33ebceb424b99dd98989c3c984a03061123a51f17" + } + ], + "purl": "pkg:npm/%40babel/code-frame@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/code-frame@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "code-frame", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "205e0438c115f9b7d8c0e98dc46cd29e347612642877b7f55173a964cde5e22e28e10370ce3b4902efc7c5d8c7ab469806f76a32e4046357a0d27a96f593ce44" + } + ], + "purl": "pkg:npm/%40babel/code-frame@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/code-frame@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "code-frame", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "8805ea527f0821e05335def6c6c16581a5c790c04cb7acb81c9a75b4868ae3ae4258b4ff7c6d5aa81ef292bf798071e69417466c579659fc81e0d249d2799e22" + } + ], + "purl": "pkg:npm/%40babel/code-frame@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/code-frame@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "code-frame", + "version": "7.22.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e4b6e856949e60fb74c95dce6ea5df4ab351eeb5202b8a4ea37f67808d817220e7f87a3dd137ed7ce1c65bcc3bdb3e7b932485213ca289137708b184e2013df" + } + ], + "purl": "pkg:npm/%40babel/code-frame@7.22.13", + "type": "library", + "bom-ref": "pkg:npm/@babel/code-frame@7.22.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "compat-data", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0c68edd9066c7b948677d9df392a8ee162c9f0d37fa079228db5db3ebc6ea093b7a083c92f74dc899b3d157f9c38736263d13d974a292fc83b0662dedd3fbd7b" + } + ], + "purl": "pkg:npm/%40babel/compat-data@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/compat-data@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "compat-data", + "version": "7.17.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfdd9bc939691965ccbf815bc96c37b0067f16b5bf0ebc2a2c65e9cb499bc8d7bd4daaafd6683dc8e379fe8d1c9ebf176029054d96c2d5e57e73e2c044e82b9e" + } + ], + "purl": "pkg:npm/%40babel/compat-data@7.17.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/compat-data@7.17.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "compat-data", + "version": "7.18.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "071844e343d5081c55109b1206107a516c80baa251c46b00c3c05d1cc27700a1b275cc2e596e2438edc79aa05001d72afce3fefc39535712efb02cd14e766e1a" + } + ], + "purl": "pkg:npm/%40babel/compat-data@7.18.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/compat-data@7.18.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "core", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "998644bec8414471ac2008b21f93f30854c27db59fa186cefe3712757412510bb5fe95b4c4364050feca11cdf685ea964c07c01e157d8f5bc7f126afee5f8935" + } + ], + "purl": "pkg:npm/%40babel/core@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/core@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "core", + "version": "7.18.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "30663cbe0dc3c4c9dcb70d0b76f484a233acba673bd20d2dd7c80dc9474066a07546977506aa3fb2f1c6bedf9427a25c197f8321e906143c71216a1f0712c29d" + } + ], + "purl": "pkg:npm/%40babel/core@7.18.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/core@7.18.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "core", + "version": "7.17.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "477547e46e365520e89511f250ee15d9c7da83c587719cb176ae59fe6f17c9bf76956fc4ae6ffa90cf97b511467f732e96b7b79af7a78b63477c4530b3cc12bf" + } + ], + "purl": "pkg:npm/%40babel/core@7.17.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/core@7.17.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "eslint-parser", + "version": "7.18.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "a05418904f12b87d78fae479d4954099dab02985c6463117c7bb3e5a26a0563a90f873c4fa79f0c85daa9551bc7af52c50798f700fba6173040db22113241ce4" + } + ], + "purl": "pkg:npm/%40babel/eslint-parser@7.18.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/eslint-parser@7.18.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "generator", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "451f215027d1427f63f513ca1155e8f4b8b0a312cf627ea135996f50e47cb529dac650f4a74fa56b4d193fdfd29d1b7a1dc84aafe5f47cedabf2fac44e22467b" + } + ], + "purl": "pkg:npm/%40babel/generator@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/generator@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "generator", + "version": "7.17.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2373a68afe8518e0b6f5db6566191f5ceea98249ae9094a54f6e908d5bd2d431997bf37349508f1b8d57d2d4b6d68664258968bdf8fda835a028ff829f86d7c7" + } + ], + "purl": "pkg:npm/%40babel/generator@7.17.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/generator@7.17.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "generator", + "version": "7.18.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "5b5946e6f53016f7cc77c1d55ea75f6ee1bb46e692ad30820fc725f1f3fcc0e8af75bb5b220d836f721651c82f7f129b6e7e990466115bf664d4c2302b8f6683" + } + ], + "purl": "pkg:npm/%40babel/generator@7.18.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/generator@7.18.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "generator", + "version": "7.23.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "94df3941147ee486d8acc58ce98e2913f9e8690b60e29362a9e3465fad1ea8e7e8ea0b448fabb0fc96a07a507cbd5ced49ded1e8ce67d7e3d09036c76c1454e2" + } + ], + "purl": "pkg:npm/%40babel/generator@7.23.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/generator@7.23.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-annotate-as-pure", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "22d99817dbd1e3303c701c83a1c634e68d0b194929d7385b4d0387d4d172979c5712a95325008426389eae2c3e685a71a35eacc0cc549d488a4bb6bfaf8bed1e" + } + ], + "purl": "pkg:npm/%40babel/helper-annotate-as-pure@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-annotate-as-pure", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "b3ab76c3f20f4154c0113d478ada28c11197a285fc98282db8fe75f79c03fd024f57ac188e9ba308617b26e30e0d55f664024e7f5193e834fd307119bcb3854b" + } + ], + "purl": "pkg:npm/%40babel/helper-annotate-as-pure@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-annotate-as-pure@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-builder-binary-assignment-operator-visitor", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f4aba578b4f47bbef015492ee93524a99cc213298176db90436ecc8442b37fd50e389bb77188fdf24c9a0c0cf1a42ee557a0c689916e0bc5ea0ecabcfca97a69" + } + ], + "purl": "pkg:npm/%40babel/helper-builder-binary-assignment-operator-visitor@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-builder-binary-assignment-operator-visitor@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-compilation-targets", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4bb89a393d52625a8ad2c41a0a2db5457e3ed778667669f120402741407f7a1ec67809d18ce5204d8a4b9143a2457cc3fb2a20d49c4fd2ac80419ed9c55c4b56" + } + ], + "purl": "pkg:npm/%40babel/helper-compilation-targets@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-compilation-targets@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-compilation-targets", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "986a23070216730183eab7ea8115d59556263c0bfb78ea487a6506ddd1a70dd098e0f69eef444e8a3dd799fac7e856b58756a20f29698256d9ca4b5fcf2a3f84" + } + ], + "purl": "pkg:npm/%40babel/helper-compilation-targets@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-compilation-targets@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-compilation-targets", + "version": "7.18.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "b358e73e8b494bdb909f316d8995415317baec2b816baefda16147a716189d3a512ffd5f7e1c97e3847db98897a1afe92d7718f47da6a09b5ad2269a9e593fad" + } + ], + "purl": "pkg:npm/%40babel/helper-compilation-targets@7.18.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-compilation-targets@7.18.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-create-class-features-plugin", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5cbc16bea11aab5f731651793d380ea1de1b500f976e447858b40172dd5b9339b124607464425aa0a17873c7201fda01b420ee609f013f9341f6e1621203b940" + } + ], + "purl": "pkg:npm/%40babel/helper-create-class-features-plugin@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-create-class-features-plugin@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-create-class-features-plugin", + "version": "7.18.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a1f334c647d75edc9eb77b99d2d2b414751b3f91bb70a1e410d2cae24b4948b630bdeaef175d937a94aa6ec96776728292535de9cbfcbe2d399384bb955f43e" + } + ], + "purl": "pkg:npm/%40babel/helper-create-class-features-plugin@7.18.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-create-class-features-plugin@7.18.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-create-regexp-features-plugin", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "dc3c86d3300501929c3a9eda56bdf775dc24c49d19d09af957df72dc8ebdd1e60ba6e909b09bc06f34f2d5ec280aab0c2fc49b22b8c7d7825cfe7490e13bcd3c" + } + ], + "purl": "pkg:npm/%40babel/helper-create-regexp-features-plugin@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-create-regexp-features-plugin@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-define-polyfill-provider", + "version": "0.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "3aba4f67deecf9a3e2ea1da7d4e5f3761562b354864ac314d9a30780b70e29fb29e3fbf5356a71dc2593de5063e5e781abd70390f921f9809f745eced76b8d0d" + } + ], + "purl": "pkg:npm/%40babel/helper-define-polyfill-provider@0.2.4", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-define-polyfill-provider@0.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-environment-visitor", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "48b2dbd00027e8f9147807ca24208e97d7b5479de94251807dce32e17b8c4597ea78c60b13474cd4b321a9b180946418d257f0e7fa21a185807bd575ca26d16a" + } + ], + "purl": "pkg:npm/%40babel/helper-environment-visitor@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-environment-visitor@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-environment-visitor", + "version": "7.18.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "d78190296917f682733e2410eff277e854d7703e244a9f1e80a8cef6720d9522a21c84d103dabf47be2abbc4bdc6573f6ffca3b0922d41479e877c6718dd2fa1" + } + ], + "purl": "pkg:npm/%40babel/helper-environment-visitor@7.18.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-environment-visitor@7.18.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-environment-visitor", + "version": "7.22.20", + "hashes": [ + { + "alg": "SHA-512", + "content": "cdf79d488cc585ab7f8058567c7b605af95e7349ea07d604215ae9bb08ebb8b9577d44a703c7090749a21cac2a0e743b777d9a2a8db1b7cf3fc59a6dc316df84" + } + ], + "purl": "pkg:npm/%40babel/helper-environment-visitor@7.22.20", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-environment-visitor@7.22.20", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-explode-assignable-expression", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e4d922f10bd65b70e84ba60ff23339f3275d56fbe960e4631bc6dd5ebfa4d7522241d0de3628f0beef0f1af9e586baa0e7518bb04ad26864733b46098839a19" + } + ], + "purl": "pkg:npm/%40babel/helper-explode-assignable-expression@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/helper-explode-assignable-expression@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-function-name", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "059878984935c62da1e071635945d1417e40131e2bbda6711e06b1f6072374b59d923b18ecc2ade69d28b63b20e67a17c3ea41f9c94c0a3c3e684558003323a2" + } + ], + "purl": "pkg:npm/%40babel/helper-function-name@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-function-name@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-function-name", + "version": "7.17.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "edc462b06955b6256a674316d3fc850786ad82918b5841d45589dbe38f2164ae31faf8a1d183b95284b5d57218b5962a1ddd1d20f31d512bfcab92b82dd32722" + } + ], + "purl": "pkg:npm/%40babel/helper-function-name@7.17.9", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-function-name@7.17.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-function-name", + "version": "7.23.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "384ac4aacaf18d94c97226783a8f9ea19a9e5bd50888e72e60a449038640815f66c80fa93978619a97cd08a8c41ff6ae55f11854527acb54dce2bd1e200a6a8b" + } + ], + "purl": "pkg:npm/%40babel/helper-function-name@7.23.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-function-name@7.23.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-get-function-arity", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0120aab8d732c02d4d91887fcfb0a0a77c37d585bc6a88e360894d83855e2621e4ab23f803322faf8ab1ee96036f8fecf1872c656aaa392c6092f8d4cf59290d" + } + ], + "purl": "pkg:npm/%40babel/helper-get-function-arity@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-get-function-arity@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-hoist-variables", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d40665a5ace3511d0441942fdec81135f33d9845563cadcceaf95a95ccc0f8410270fcf75cf87a56995b12b2f95283290a1852724e700091ed8658f56d8a5c9a" + } + ], + "purl": "pkg:npm/%40babel/helper-hoist-variables@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-hoist-variables@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-hoist-variables", + "version": "7.22.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "c068e4f50655cef92703ac8a2145116fccd8de0ad709c399b7effb59ccbc3b6b9cb7186996650f90e76582836199d55e7b673dd895db7f5c6932d54d6dfa3147" + } + ], + "purl": "pkg:npm/%40babel/helper-hoist-variables@7.22.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-hoist-variables@7.22.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-member-expression-to-functions", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6ec8e50453ee593e885a1976f0476b43e813bd2be3e6da953f95de7eda74ed212ecf9a4b9ec5d9b839030f745f731cb422c1e66d9fbb076ffd487cf13b44feb1" + } + ], + "purl": "pkg:npm/%40babel/helper-member-expression-to-functions@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/helper-member-expression-to-functions@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-member-expression-to-functions", + "version": "7.17.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "b61c5782743ca90d755b6c1550e6c8a832f8a75e3c54cc64b794ffaa93799367dba11cb31461662ac4c6562aaec8ce501ca532e3c399a1c6bc930e1a8da0cfcb" + } + ], + "purl": "pkg:npm/%40babel/helper-member-expression-to-functions@7.17.7", + "type": "framework", + "bom-ref": "pkg:npm/@babel/helper-member-expression-to-functions@7.17.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-module-imports", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b0acd1eee50592f385e51f01983c3b42c5c03486b4a52f6ca15982e078e734c3b71c3a5daabf8b3f9c0448d1a6195be6d2c002f90ae91e5c0e3b07fd4d29c9d" + } + ], + "purl": "pkg:npm/%40babel/helper-module-imports@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-module-imports@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-module-imports", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9241fbb16cca3ead31b771f59fe8216f8c4430ff24d14ed757792407e646cbaf640e4db24855b5a8f8b4eac8cacc5637b758fa5db252aabe2617d2fb09857286" + } + ], + "purl": "pkg:npm/%40babel/helper-module-imports@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-module-imports@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-module-imports", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d5b52e93aa324715cfa761e213468e952d7bdeef4c66abbc0f8564ea0c9bac2448069a4000096c0c89336bbdfa10a3a844845c00222c4d92f0748cf5c32fc5a" + } + ], + "purl": "pkg:npm/%40babel/helper-module-imports@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-module-imports@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-module-transforms", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "332e1cafd01371a05b99a11af0cd1d64d03be1c7c8ea08adbd402c9200ed005980ab214a0d21d0a3962cb713db37e9731e5d83f65fd838416a6f69ad521e207c" + } + ], + "purl": "pkg:npm/%40babel/helper-module-transforms@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-module-transforms@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-module-transforms", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "81aaad2c3c4910509e41b629f5a2c079f8e190a76329c761e8307b8e7888194dcfcf9d960263f6ebcccad1580fcfd85436431261e1fdefa2b6fd8eb23da7699e" + } + ], + "purl": "pkg:npm/%40babel/helper-module-transforms@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-module-transforms@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-module-transforms", + "version": "7.18.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "91c95461250122396f9f3376fbe2bd7f6ab360a1608e69e68f02f8ce5994e5ff19b738167bcb34ad43d24c6cb61e62b83fc4f9d8c42c4be1d340081977774c10" + } + ], + "purl": "pkg:npm/%40babel/helper-module-transforms@7.18.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-module-transforms@7.18.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-optimise-call-expression", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4ae238ebb1a2d95f1f9287e6d893e767307f494b97a09039cd77bfc73c8f3f6334e3af3a47314a1473cae870d537a26f5812045bcb6df613d1edf5dd9f62e0a7" + } + ], + "purl": "pkg:npm/%40babel/helper-optimise-call-expression@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/helper-optimise-call-expression@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-optimise-call-expression", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "12d801860eeb77f25c9e96455e9072d337b56117dd9bb067057e2e28c05dde2c5add1180134d3625907ae85272347ee0d05dfc534e695e60393fc70187bcfed7" + } + ], + "purl": "pkg:npm/%40babel/helper-optimise-call-expression@7.16.7", + "type": "framework", + "bom-ref": "pkg:npm/@babel/helper-optimise-call-expression@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-plugin-utils", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "ff7eea4021372b4bef64ac282b85d4fe2ac82507487c226e854e5e2a7371a450ec3a48056940306eff91630e9e620b02d04e214bbaf92aa1942d4a20aae8b47d" + } + ], + "purl": "pkg:npm/%40babel/helper-plugin-utils@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-plugin-utils", + "version": "7.17.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "24391fd389aab4ddf2e2201b3b586ff54d804693f23cbd73ab25acff6586d69812abd9651c58d2b57e637716fce218a68099bef0d83ec74a22585fe7c3f5d028" + } + ], + "purl": "pkg:npm/%40babel/helper-plugin-utils@7.17.12", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-plugin-utils@7.17.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-remap-async-to-generator", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "30b33520e31ef5a401a8c5b1711c3c75c6fd8e533ce8d230eca0345ab8bdd5791f89e77e744d10b8115206330dbeace64b4392203b0c342db87411243d48bb7b" + } + ], + "purl": "pkg:npm/%40babel/helper-remap-async-to-generator@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-remap-async-to-generator@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-replace-supers", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4d0c6e41f48276885aedca51349bdf698c71c7399bc57c3ffba712ed5d3679e0d8ca1c5d7ab4a831500bbf0ba9039e3fa5970e4ed55e274c5c729d6719695a74" + } + ], + "purl": "pkg:npm/%40babel/helper-replace-supers@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-replace-supers@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-replace-supers", + "version": "7.18.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f3008cb1c7ebc59eb3b1890ad3a1250ecd43a7d1ed49d8b8b8d27b5d75e93563af405d44d7a03278d3f0f945d8c5bbbb3ba8789a7a84e27a6a5971bb955e1d9" + } + ], + "purl": "pkg:npm/%40babel/helper-replace-supers@7.18.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-replace-supers@7.18.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-simple-access", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a35ae3053fe0a6902a2ac61f51d7c7ab9464d3794c42b90f1c6d4e5b31d6a4b8155d11f81e730cf44b7d095748ab0902425a1b9c61c424cb2058ffe3135cd48b" + } + ], + "purl": "pkg:npm/%40babel/helper-simple-access@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-simple-access@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-simple-access", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "648cc7572a1e2ccbd730dfefa24fdae0b591cbc1b6bf6d3998d3f45ceb9ff5744bc97e7fbbd0a756e954b438144da99ade54fe6dffd4aae72e663aa21ae4d2d6" + } + ], + "purl": "pkg:npm/%40babel/helper-simple-access@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-simple-access@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-simple-access", + "version": "7.18.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "ecb22b8d8ce7768ac363cf0cc9cba992940b292d4015fb15466da4ffd3ed292712cb9b59ab431c6538fe0e2311ca76e865f22a38abe8d37a668536948220fa7d" + } + ], + "purl": "pkg:npm/%40babel/helper-simple-access@7.18.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-simple-access@7.18.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-skip-transparent-expression-wrappers", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fa2975813cb4a07c14b01419c89bee91b078bcf31d71806b1476b451ce008b32f16eae813980b9d51bf8b56a1c5fd04b0432d9e2473aa9416943a1d180bfb7cf" + } + ], + "purl": "pkg:npm/%40babel/helper-skip-transparent-expression-wrappers@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/helper-skip-transparent-expression-wrappers@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-split-export-declaration", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1830c469b8314d1931cd4628aa257d7d1a33570381f413c8d9da26dc71f4b1682a206e6dda9b958dff69d0363d189d0c0658cd49d3a18e710daa9e1dfed296b" + } + ], + "purl": "pkg:npm/%40babel/helper-split-export-declaration@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-split-export-declaration@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-split-export-declaration", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5b5a8cbf3c5a314966b3213a13f5289ffa325396b31c9dd22c68e2af4c0eaeed0128ee2964459a637b0d7cfd6ddcee79bc7d77540d7874d955d36d9d2918337" + } + ], + "purl": "pkg:npm/%40babel/helper-split-export-declaration@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-split-export-declaration@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-split-export-declaration", + "version": "7.22.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "02c527c6e2e1458b22b0589a270be9d5017e2372a30f914ec6eb75e2afc6ce8bd47baa2b1cb7ac5b60bb77be789119b9de1e60aabcfab0597ab31738055b44fe" + } + ], + "purl": "pkg:npm/%40babel/helper-split-export-declaration@7.22.6", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-split-export-declaration@7.22.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-string-parser", + "version": "7.22.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "98ce023a3819a31f14f897174303e28c864b1259201293b9aec111543253736a9f0837c4472a1bea4e567a04b5e125f5f08223bfe5c3f86aea36e998e494420f" + } + ], + "purl": "pkg:npm/%40babel/helper-string-parser@7.22.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-string-parser@7.22.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-validator-identifier", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "e65b1eb6ec422e2966546ca22c47e81c1457f140850fed66db1dd18fded6ad6dd5ec7deee115915c0e1ebcc8c8982b229f6276613d106950c67fecfca2775b02" + } + ], + "purl": "pkg:npm/%40babel/helper-validator-identifier@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-validator-identifier@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-validator-identifier", + "version": "7.15.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "2b826f0ad42a69df4e636fb24d4f30f84f36cb093f7def842cd96dd46f33ddb5469597e7fe139c410b14846856fcdfad6f77f12bcd34c0bb4a384fda3349bbdb" + } + ], + "purl": "pkg:npm/%40babel/helper-validator-identifier@7.15.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-validator-identifier@7.15.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-validator-identifier", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "86c12715e99e896e03d3c039814019c4b0535e9677f4ff9af83183b07c35cb1ab243f8f31449f17f9b93106a7eddbcc06cd3b1535a5a4e0612e04094fc881f0f" + } + ], + "purl": "pkg:npm/%40babel/helper-validator-identifier@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-validator-identifier@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-validator-identifier", + "version": "7.22.20", + "hashes": [ + { + "alg": "SHA-512", + "content": "638399fb2b656ad47c008fbc2997cab8be6eacaa7ba9ecb4f216b7d4bf1bdc1c1ec0902825a993cf2bf13d1ff90fe2a47490863eaffef13ba41c1958d74157f4" + } + ], + "purl": "pkg:npm/%40babel/helper-validator-identifier@7.22.20", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-validator-identifier@7.22.20", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-validator-option", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "397f03e5e797e17c1cae8556e3934cbe861a22e148f864290366bc1a2f97fd4fdc0d4211b15dfba907c5f74e45d21b534424444080782aa3de6af7912549773b" + } + ], + "purl": "pkg:npm/%40babel/helper-validator-option@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-validator-option@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-validator-option", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "4d1b5e9ceb91515a3da084063c2e46f4380ae3be3771dc6fb4ec34c1e40da595da4b5e920818b930d8d917cbdb6b71135118d9a536d59fb56f71fd9e030168cd" + } + ], + "purl": "pkg:npm/%40babel/helper-validator-option@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-validator-option@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-wrap-function", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "555306cd8637be45a008930bfaa54bbc621a9bdd369895b416f4fb02f8f5cc47b41a7ec3f7769674b6e5600453c44c3ee838599adce104cdb3bf47a4139ce0d6" + } + ], + "purl": "pkg:npm/%40babel/helper-wrap-function@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-wrap-function@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helpers", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "75544cd12b4531d2a592dedc55c1a0c03f1431a05f5891e5dc0f3761fb3c190dcc3b42c720820cbcaec56b4446386510d74aa290b697e83ee8e61b5c41681331" + } + ], + "purl": "pkg:npm/%40babel/helpers@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helpers@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helpers", + "version": "7.17.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "d10bbb44b4757482e8cebffa334c608fe0c53e68ba067ba5826f4cf0155af59096c43aa54a7aadddc7fc2033c1e66e39b155d467492e400814add485147efd7d" + } + ], + "purl": "pkg:npm/%40babel/helpers@7.17.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/helpers@7.17.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helpers", + "version": "7.18.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "8fe77ebb9c53e6eb5c412ceb87da7e3da257f7887ef8a37e9e0f5bf56109abba6450f01deb5146aa18ee50475f9276f713fb8305beebbb011e2a42313493c8ae" + } + ], + "purl": "pkg:npm/%40babel/helpers@7.18.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/helpers@7.18.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "highlight", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "a9ff6ed96156555d0ca6968bf3bee3d9d06d4080e09a27608c6939548330dce69d5ef61a5e7eba535045947dade3eb778bef0f85e769a51bfe8b8d0007377e82" + } + ], + "purl": "pkg:npm/%40babel/highlight@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/highlight@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "highlight", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b7c307e35914432941b6edbee08400ddab6a7af03695182a036c32541fd88969ac0d2bb295966e5ce532f6b89cdf485fcdab8415f76cba4fde5d346b1ab7ddd2" + } + ], + "purl": "pkg:npm/%40babel/highlight@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/highlight@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "highlight", + "version": "7.16.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "e459d340b48bb30123e88920570e4abac35450563d646a9efd34459cffc12981d881f87bb5cf82ee6c22cbde7fc8d3fb0e1f71e7cd15bfcafbbbb65f4c117177" + } + ], + "purl": "pkg:npm/%40babel/highlight@7.16.10", + "type": "library", + "bom-ref": "pkg:npm/@babel/highlight@7.16.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "highlight", + "version": "7.22.20", + "hashes": [ + { + "alg": "SHA-512", + "content": "76474c08dde9cb4fa4b028189861bc8ca78603ff1393e809c126189451b11b996685f28da00cb4d386292f1a52d56d89f26fc42b6130fb23acf69551c0ef3d9a" + } + ], + "purl": "pkg:npm/%40babel/highlight@7.22.20", + "type": "library", + "bom-ref": "pkg:npm/@babel/highlight@7.22.20", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "parser", + "version": "7.16.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "4545694f41b687aace670a8b0d3aca93b92c36fed8a408a54e761ed7f43e7838f111c79130a5566c2b17eedf21e82d6a0858bfd58f166637043c10051b6ec63f" + } + ], + "purl": "pkg:npm/%40babel/parser@7.16.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/parser@7.16.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "parser", + "version": "7.17.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "54a5d2090c790fc4b4e1e8fe0eab2bd42cd8bef5a07f6d23230d83f988500ab225af651919a0ddb36dd8d3183be7fb243b1a4b091a5466f93fd44015906a033b" + } + ], + "purl": "pkg:npm/%40babel/parser@7.17.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/parser@7.17.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "parser", + "version": "7.18.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "6195956a094c8a9968eeff1fd68310e593d0af4be7ec73de657c575acc572518c656bcd4167f4ec45425d6c6f9c337e8a2d8c0ff20a1856f38055fb7f371523b" + } + ], + "purl": "pkg:npm/%40babel/parser@7.18.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/parser@7.18.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "parser", + "version": "7.23.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "bef3ca29d31e994f3957d584fe5e706449889a90ad2ea6e74efa834b65357c9f7a2abc685bb2ab5e136c3426e542583c0a4e1bf39cb1753c9e96c3148055178b" + } + ], + "purl": "pkg:npm/%40babel/parser@7.23.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/parser@7.23.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "version": "7.16.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "877ec2be92d27fc81bda5209d82802dedf848c56e2d2df2a4bb2c24b5c5c2489445c4e1cce5a1fc1a5bb5b51c0f33a60382cc8f42d679a8a8d475cd6924d2942" + } + ], + "purl": "pkg:npm/%40babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.16.2", + "type": "framework", + "bom-ref": "pkg:npm/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.16.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e2d705c3089ca564eba65f6a8dfed4b28a2c680ae022617ce40c6a09166581cdc8403be45078c9a6bb9700be7c5a68fe4fa7f2a564c2fc16a47c493020bfe9c0" + } + ], + "purl": "pkg:npm/%40babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-async-generator-functions", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f2626228ed9a8ab18e8fe259d5981971a7d0776bde82b1c6cba2d96c36e92d3076a1903c283d81235eb6475344e3f38e19f5fd48b615714259f9ee6864704c7" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-async-generator-functions@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-async-generator-functions@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-class-properties", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9821771dcb99498f45731e7a2db9fe086753e388a804c32f8cd5657692ad8fcb699e211374b8e7c5d1c8d7eb0359720cd6736df846a724e677206f65cd58ecec" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-class-properties@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-class-properties@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-class-static-block", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "980cb7b1d718f6c28091fde541b0e2bf7a2539f88ba88e7573d0d1f5bd7db8ca11d99eabe6998697b75f345a84bea3b2a9b7f5b5ae259272b881ce4f267de67c" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-class-static-block@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-class-static-block@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-dynamic-import", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "406480e84c5693de63150830cf9190d83afde5c7fb788ed32aeb485d74dbec1d6008b4c2cf98538c54d019f2c5041882e5648d8bbb9d3705aca9b6cc875738c9" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-dynamic-import@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-dynamic-import@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-export-namespace-from", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0a32389f133f0fee700a7843d753070750304520187834fe87c80275c54967f38aefec11cc5b1fecf14f595a55a4d4641cc98c9105801e94eafb5e485d0d5d88" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-export-namespace-from@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-export-namespace-from@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-json-strings", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "928b883ee8aff264a2e499048730298391a7ea117228f9e590ed1af584b3a91bab1fcc18cd295fe9125dce5b80b1ba9e71d5b9a41bc32437f20c8511fef2f1be" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-json-strings@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-json-strings@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-logical-assignment-operators", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a5b5b47c4df4b154d85d79bd96955043f55cfa24de40a89795a35164f3cdd80d957655b202db14aec437c727529435b4d1314c2bb6bc9b77034e4045e569d5dd" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-logical-assignment-operators@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-logical-assignment-operators@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-nullish-coalescing-operator", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ddb9c703c080166edc1bddeff25a2084363243cafded0c9d7fadc17988868186e328a07f5cfe775b5e707d10bb76f29fa22277e1fe916f2cb1d9bb44c5cf17b1" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-nullish-coalescing-operator@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-nullish-coalescing-operator@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-numeric-separator", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "140844d88ea68e2b29cbebf0c1deb158fc84c77358152d77a6290305650014666faba3ce1ace5e35c870f3ed42628120065f67d75237364cc3ee0867db93d0f5" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-numeric-separator@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-numeric-separator@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-object-rest-spread", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d4ffe8e9f3d79f7b91ee5892e6326146d3ec5bcfe236ad223b88b73502569e48c0cc386cd695ce7226b30dd5dd38a2c5cde2c49fa68e0ef9ace404d05eb348e" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-object-rest-spread@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-object-rest-spread@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-optional-catch-binding", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "922703a3403fe49d27aec08f6e7f3d9931b7066e178188b4099b6f7b1f4ecb0ee01991371d7183d33a50347fa6a3eb447dba3cc1b98cbc97ed3b0a663f2eda57" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-optional-catch-binding@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-optional-catch-binding@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-optional-chaining", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "638ac5a6464e0df1eb568ef451a8fa702d4924eb773e9d0c7564b020ab5bf33d7f96c8e5f409a707b12b44557e40d1887dc63512bb9cd94331e4a6919d78ccca" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-optional-chaining@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-optional-chaining@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-private-methods", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "22f1e67131c3173b501a79fa696ab8b75d906815d32abd70845fdd829f64cfce17e8651cc2af6eb63ef3db014251f78eba9fd02a73a5b76934cf1906171f6e6e" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-private-methods@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-private-methods@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-private-property-in-object", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "de3414aff1c16cc5599a2ef62e98d0c25679e62d6ab9e2fc29c0d34049001e286db499c03eb72f1bd64d5c87ec776ba0a62cd9a39f797a0615eb1cbea6fe0e7f" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-private-property-in-object@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-private-property-in-object@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-unicode-property-regex", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b62ec874ce78357bf6f5c038f9b34d284312e232cc09b26097e0ebbfe160632d1eac92c0c4d0085dc363363ad1644716ab4c491ec355c107b3b24305a45f0df6" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-unicode-property-regex@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-unicode-property-regex@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-async-generators", + "version": "7.8.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "b727266719067d96b184c45b5e53d7b95169756957a62af65b800c85226044ace4fde0e52173a16f62c75a82e90c5ed3107ca5579ccd872917e8a0201c999337" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-async-generators@7.8.4", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-async-generators@7.8.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-bigint", + "version": "7.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "c274e71651be631426def0f1a46139ecf8f4b2b454e2c1c4fe60e4b75aafd9824949e50079cda66b858b52750f78a8f2adf9ed5707bf37a7425e953eccbdcda6" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-bigint@7.8.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-bigint@7.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-class-properties", + "version": "7.12.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "7e6e227632a56b461a85436014d2c2074ab249db283e264fde2404deb932d26054b4c676df20c9f5225d83a7574d20e7ba5395aa21771e0afd9db5ef5d341960" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-class-properties@7.12.13", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-class-properties@7.12.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-class-static-block", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "6fe6323e6afa95dc8d9cceaca9878c584f9b809709a4eeb24b8403ef29b1807df81813cd0ccfd31c187c8ae9f2bca219ced8b02c7e02259d11c5393d7a68298f" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-class-static-block@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-class-static-block@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-dynamic-import", + "version": "7.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "e607466c5a27f8fb33633aacf374b71399a98bbff2ffc33d782f743114d97ddb903985bbea283a48e48f35ee35206e4ba0fdc51819f6374463543490892f7891" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-dynamic-import@7.8.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-dynamic-import@7.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-export-namespace-from", + "version": "7.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "3177f995a5e8e9cd486c46de8039b318fc06353b07666132e901b39eee528765025afb9ecb06f679ef82084e3342266cb7153d04ca103bd8bacd41526342a3d1" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-export-namespace-from@7.8.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-export-namespace-from@7.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-import-meta", + "version": "7.10.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "62a7e6f970f1d3e3eb8775527844023d4f35c82f89599da90cf1524b865da5f661a7832414c6830b552ab1ea2f10ac125299c82fbfaf2be0a5a7b6df874883ee" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-import-meta@7.10.4", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-import-meta@7.10.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-json-strings", + "version": "7.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "958ea4746a561ef8e87b6be4e16ac06a912e051ebd10cc5997e46819186b14635854af2638f016f157db4ff660ac56d794336289ac509c0b6054267a8efdf410" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-json-strings@7.8.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-json-strings@7.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-jsx", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "a21b8522c38c5c99db38c45f5fbff0ecba1c751e91ef0861b910f86b1f088a92dc2cf9591892a4071807a7ef94e0dfef2b2535ebf60342bd9fe6c79a8c3de323" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-jsx@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-jsx@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-jsx", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f33bf6fb188f1f0972df544ae119a7118639cf38ae1773bb5b69080d6fb4edec160e1e8e8b4751abc930bee95190582de8307ded194ab39735cb4ebc88f94252" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-jsx@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-jsx@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-logical-assignment-operators", + "version": "7.10.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "77cc1a4a19691438a743932dbc653dc4300ecca1f8efe145a277b2d9b68522832bf79da128e2e9d4747b56cce866f3ac57fe3e451b33358ec3d7b6dad2d7b48a" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-logical-assignment-operators@7.10.4", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-logical-assignment-operators@7.10.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-nullish-coalescing-operator", + "version": "7.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "6927dfe333c8235bb6403ef2f85f280eccf5f5ec3820610983d4955be6eac29c2d7c595e8900cc77303f47e525583cdf9c7142c7195e153d0f308ad1dfa5cb35" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-nullish-coalescing-operator@7.8.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-numeric-separator", + "version": "7.10.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "f47e9875f91c2bfb8e9d8fcaeff680db1a73680824427dfbcb35943112bb39a3cea8ea464b5fa7d07e61c53f40530f44b128cf5bc495c8c270611b56b375f7ba" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-numeric-separator@7.10.4", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-numeric-separator@7.10.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-object-rest-spread", + "version": "7.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e8a8c8a31996fdcb7cb65ec90df8fd70506895c16679266a03470c79fb71a612994dc95336b360e0f082c5426f2b58ce3ca2b1b2e58a48e4197c535cbbc9d94" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-object-rest-spread@7.8.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-object-rest-spread@7.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-optional-catch-binding", + "version": "7.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "e953c3d0f7359694eac3468aa1e45332207e916840a13db83c0fa4b16481ac5b65e52211569665c0ddcd34f4237a103613ff75155dd18cb5a855382559c495dd" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-optional-catch-binding@7.8.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-optional-catch-binding@7.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-optional-chaining", + "version": "7.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a82bd12b1f53019423f15745403645d6dbf770e2f95b183ac5833f1b994b0119890545c6d1c0c87a70826e6dd3eb931470b8676d0a4d2fff03d329b42006392" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-optional-chaining@7.8.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-optional-chaining@7.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-private-property-in-object", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "d30567a7d77127bd995090d5dbb65f6d28fa8872e8cad6199a1deb15cc4d9efb0917792d9332c364fcbf980d7b1c6b1a413dff0d0b16617d5fd50196902a1552" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-private-property-in-object@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-private-property-in-object@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-top-level-await", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "871fbeba92efe54d6b8187f07b5c41414851994e35344be952fae9f2392b48276f1929cce7fa9d44cb72949e8f1b938590168791b4c02939dddff63211244717" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-top-level-await@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-top-level-await@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-typescript", + "version": "7.17.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "4d86344971623b7d585ed360dc7b45c0d2478cbb00c88221021356910e7084f3d2ec759416583dcf44dae2a01036341b3f5c2c4adfe82a4999ff8fd659d314a7" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-typescript@7.17.12", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-typescript@7.17.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-typescript", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5efea6117a9575aa8205f245c9e69bd1f1f60e752832c0e685a9b1b128b88fc9cb77856dc36d7758c26be79c71aa2a42fd8556c8f6372b46e526770f6238be75" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-typescript@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-typescript@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-arrow-functions", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc815be76e7445b87bae858046f08bbc827f3ed014e4b86fec1b59d6edb808ec2923d6298ec87e6d970a93aae52326a52beaf48ce7355d0f08e28bcdc4dad6ac" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-arrow-functions@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-arrow-functions@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-async-to-generator", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3db22bec6f6447cb5d1fa83c5a8ba2af9b958e49444e4f7518c55252af9568e8228a76c29013fa43b34dfecb8cfd0bad66430932f73202b8a881c60076183c1b" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-async-to-generator@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-async-to-generator@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-block-scoped-functions", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "575e00b3785a50e3f8656acb277555c79ac29eb6213121cdfe35fbcfa140b798634642ec6f4b273c2989c1238c2f9a3190a3b814da0dbfb579870ff2d9b8eebe" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-block-scoped-functions@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-block-scoped-functions@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-block-scoping", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "dbb9f797aeff47752b5df8b396f1c6b93c2c44817271edc3ffa6b7ec64719f6f22c933ef357696e17bf39dec51875cd434b3e36cb2f6d887745d012557de2bbb" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-block-scoping@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-block-scoping@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-classes", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1d4c4cbf2e86b4075df862813580d608803befa6f25101fcce39df8f1c13d4fd4046fff016ef1e043a665d070b4bf23046daf12117868a994ec0c7b23bb9ec0d" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-classes@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-classes@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-computed-properties", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "eb79757515dd6b2e92f15dd6158e665c9c1c4409cf631bc57d396debb6f0575ad3c954cce73ae9d030416f5dca97bf9e864095c0864fba63e914fff8bbbd3e4f" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-computed-properties@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-computed-properties@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-destructuring", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "43bb415308f12d3b07128aa4b5e98704cb5bdcd630c893d325d33ec03c1bd20f0f677910508ccdbf00f994f6aa5bfa79e135c173f31766ef49afbb5b50450cf1" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-destructuring@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-destructuring@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-dotall-regex", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "15794365f41e2c82df2650ba235ab21307072b95294421646a85720359e4f40d4bd58bb9f3760ee2e9f62ac2c1b2edc825be0251b72d664b3cb43f713d0b9b2f" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-dotall-regex@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-dotall-regex@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-duplicate-keys", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c87b691c1ca0193890cdc6e8ef9a9eb3de67cde95f65271b9b5387c9206a100a429edc473639c6dd9583febd6fbee0ca71c06d1dd70483389b505b990b9e465" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-duplicate-keys@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-duplicate-keys@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-exponentiation-operator", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3b0604bf3148dfc857925b2b6cd8afce93b77e1f3bb24cf1f0f9ea8b82e849879abf4c4796e792a0226b4a04cf7e76f2ce8a68e5bdd8540264148714a4adb0b3" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-exponentiation-operator@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-exponentiation-operator@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-for-of", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e50294c3690ef865662abdb03184804c24d39c7cac725eacc4544063eaef37b87b581d25706d28e0da15e99414df6399195b1852c7cb1a03d0a4315d91f8e525" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-for-of@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-for-of@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-function-name", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "941ccc95ef6370e5ed48e5d4a5ceedbef4e910dbbf36e7a4349568bdae6508258257dfd4d61a361c7db2d29ea6060f1f3e6fecc8401b7da69e99818e1c26379a" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-function-name@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-function-name@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-literals", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8100e5b121758aff51534e1c9605ea463acfcb2a0931372516ddcad5c8cb9932a291cd2cffabc4de1943784542ef5c0b4d1bbbd85abbeb9d24001add4dcdb031" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-literals@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-literals@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-member-expression-literals", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "591a70e472f82619f1c3c40047346fc288e9f4c204ed3764ddecfabd1c9493533082324dd1a3694685da8a72d1e528319a85f1fefb17199e8eb613fab7f45b52" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-member-expression-literals@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/plugin-transform-member-expression-literals@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-modules-amd", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ad616159b089f56766ce59f5366482aa7ecfd11003fa88171bf6ddf4a83973b3ca5a426d9225e662c3017978c39731e955327823f8678ece39cd7e1d12ff35c7" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-modules-amd@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-modules-amd@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-modules-commonjs", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f38be356ab2128b60ce4fec6fb92040f2507fb009910056b15a7537a256735941568d2f9049549c676bd4fcd40667ec08237938e1726b746da5e1e4d79a0b29" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-modules-commonjs@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-modules-commonjs@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-modules-systemjs", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "cae1816874b7945d66ff947ee9f8c891eeb88a2e65b91520f7b376c2bfb3d6c17457eb0d4973f15c374410bfe260bb33b0de552b1541d483df12a8735698aabe" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-modules-systemjs@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-modules-systemjs@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-modules-umd", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f1e1fea7a39ee18a65a21e1c43339a63c2169ee6f2e94cadb30a70c7f3ec0d2c9cb44d5111fcb2511e5d9b92deb0f4069ddac3c3e6234da14a58dd7f6c4c60e" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-modules-umd@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-modules-umd@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-named-capturing-groups-regex", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e880df3cb8efbb121c5673c599b90f2fc5d4b2546c61921f164c2dedce54fc2dc70cb90740f357bd48657acd8ee46362e30e1843385750571746c0fc810a7be" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-named-capturing-groups-regex@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-named-capturing-groups-regex@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-new-target", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7e18eb0c462fd8306c18dfcfeab96a6a4c11c08a7bac118b3dbacac7087ba15b7934d90885954e63619157e50b2ec42b8b56c3ab00d69d4def8659b1e41d9a0b" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-new-target@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-new-target@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-object-super", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7ddb3ea6e79d4079f870f2ec8681dc4750d330dd2ad55f68bb49948e6f30871f6919c36f0eb555ae0c3e289cf309a89375a62195db6b529b3c0d654c82b484ca" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-object-super@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-object-super@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-parameters", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e09d0126d427af29138fc7eb9d3a2ffc7fc4e21a1ad45a21e2694088a78eed134b691438f35cd4d973d1390a60b0c4d8d74d6115aaf45f59960e4c5bcc6bf65" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-parameters@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-parameters@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-property-literals", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5cb95d0f857cfa93aa5f68707d6860c17cc67670ce4e1c5a35382a6a039ca41808c5b52fa6053614cbe8e44d51c876e4ef9e9662075b4b44fccb40a3f452a459" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-property-literals@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-property-literals@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-react-display-name", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "14915d240a9a0a99dd2fea487f469e0ffaa54304fb4173af47a09cf093ef361289062db373f0cf738834e58ddf6c3ff489600c4051a28f8f97c3ee0bfc13294e" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-react-display-name@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/plugin-transform-react-display-name@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-react-jsx-development", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "aaaeb9892a8146ad07af7c2ae7b606d80996d07eb08139c8ce97df4e986b5165202c238afb37f57fb1b4bee3a25eba7b754d6aabe7d0068a99df0083024845cf" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-react-jsx-development@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/plugin-transform-react-jsx-development@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-react-jsx", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "aea0e021bba4678e29aaaecd2113c63c636496c84f92f966bea8ddc773997063e4e331887a7624c434ef9772ec48bf20a9c7376731a65cf13a851feefefa0d3b" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-react-jsx@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/plugin-transform-react-jsx@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-react-pure-annotations", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "342fc18f6306fadf047f93dda68df8032ef85f846df34e21e72f353f03a97cfb6600ade2e828b3990ab0c8143321ea73d58b7cc0daf66762fb2eedea04c7d930" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-react-pure-annotations@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/plugin-transform-react-pure-annotations@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-regenerator", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "240bc6c602aec12d8f8a189215a0eba7de173b3cd351e0de39095c2b3540c9a3daa7b0676572bf96f3038ae6e43d3768b4f28e219abdc565d69e0814318884c6" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-regenerator@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-regenerator@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-reserved-words", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e0b3c34d09e8474af5dd8448659fcbbf4ed2717d5c0660280fd8e3abe59dc0afe07ecd789c10e28d4f273e79c6b672e10e32d8d6ea6f4ff628ceb7c41da9692" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-reserved-words@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-reserved-words@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-runtime", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce53dfd7f5c59f9faf59dbdedc00217fe4b197e3156b9565c13c168272f1db7bb81a56ad491409dc4a28f6f9657f46bd8a5df0a10b13e122bee59edcd3a87c6a" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-runtime@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-runtime@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-shorthand-properties", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8956f5993703f1fba14afde4f7dfb9b655eee4dd2ff3f0cf9b698edd60022c6e9a975086647eefd3d1c9c946f54ed625fd9f8aaccea91d2209759c4fe40fb1a3" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-shorthand-properties@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-shorthand-properties@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-spread", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "028e0c49845a2c041ccd9569f7fec4ed01ec0ae2bddb21d1ae654d45efd29442638738afab40529fc984ada8a62fcc22cc76777ee687c4a1f48b0cc8d771b21a" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-spread@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-spread@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-sticky-regex", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe7b53d8d96347d7e8a1b2a4e04fd8c8e4b0706517b585afe6d8a730aff7464ca9c8d04d7611d46aae8eaf0e435aaf5970d952d3704894400b15e420795028e1" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-sticky-regex@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-sticky-regex@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-template-literals", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "45de0873cf6103f7fbc54489424e4f9c2fb8b28e74bc1a017f18dd40076f9e0c2274cf23608055c4167fb004710f87b4c8c5d16c9543ad87fb77246d208293e9" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-template-literals@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-template-literals@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-typeof-symbol", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fbe5762fc05d7f8bdc6878b6ada20b9e9b530631841719f9df5e5853e7bcf84a9722e700faadf8f6a5a78022e9518aaabf6df7b2e27a34e89e9c8554a52f5caa" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-typeof-symbol@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-typeof-symbol@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-typescript", + "version": "7.18.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "978bc7b922d46a3a6da473443940c41ac9e997da5f44bb0dd575280d00c3fd806e5d333ebf7ed21c64be73a9f88dd719cbde90b6e52e4af65830b492b231fc33" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-typescript@7.18.4", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-typescript@7.18.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-unicode-escapes", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5458b876180933b06993c95173908c6911a5299dbd5bd0b781e663b7d6debb3494ae5271b0dc17ed178bc1a2fa584bec39fd84424c882443ed17c1178c1fe0d8" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-unicode-escapes@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-unicode-escapes@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-unicode-regex", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c72cae0bc611e3bc27990d6c80f5cf8ff571f5b0ec5177544ef7132d0d544038d0ff3dcccfaa2cc4b55771e13405ff0c8f69ec2aa53fad81015832737f3fde0" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-unicode-regex@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-unicode-regex@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "preset-env", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "71d4eefd6d08aef89a9ad9d98937e2c4f7c89dcaf633556a46b923cd95a5af50784d562298214ae6393239d3f8ab0d8cae52878be6f73918fac7c1a809ec3c0e" + } + ], + "purl": "pkg:npm/%40babel/preset-env@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/preset-env@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "preset-modules", + "version": "0.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "039eed87a6111bba11ddcabfcadfd8f3832f1a01347891b617524b84abb21be8c5c4482b77f1c03096ad885b663a266eaf3fb40e4aef6e17822da5797f625f8c" + } + ], + "purl": "pkg:npm/%40babel/preset-modules@0.1.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/preset-modules@0.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "preset-react", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "777d48156d9b2d1076f2e2f55a8125caba3c447e65eb9df55dfc4cb427829a9e91540175b937f1c540342c7d6d5e5fa9b197707e621bc281b853957081b86d2f" + } + ], + "purl": "pkg:npm/%40babel/preset-react@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/preset-react@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "preset-typescript", + "version": "7.17.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b556217c5b643000a506257c4ff4d01f35aa860dd10124aa589311dfe58cb60b834f3f35c6791dcb864ec6f3125a68b7054d17cd8d56ed6d5b66f066f49aabe" + } + ], + "purl": "pkg:npm/%40babel/preset-typescript@7.17.12", + "type": "library", + "bom-ref": "pkg:npm/@babel/preset-typescript@7.17.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "runtime-corejs3", + "version": "7.15.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "956700a8a781eb6e3fb70b53737c3ac3fda8f51a893da34184f18ae8328b4a2c2e5560bb585932a56c8d83e0a9668c891f48d5cefd6e32d5d9ff9fe540e2ed0a" + } + ], + "purl": "pkg:npm/%40babel/runtime-corejs3@7.15.4", + "type": "library", + "bom-ref": "pkg:npm/@babel/runtime-corejs3@7.15.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "runtime", + "version": "7.17.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "8737b2272300d5819d253b965347bf8f8c0a5eb53838c16f63631295a23d07b5506f4af97314c4dc40084b643b4e7d9121c0e446f4c0fefd89b00121c5ef7dbb" + } + ], + "purl": "pkg:npm/%40babel/runtime@7.17.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/runtime@7.17.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "runtime", + "version": "7.15.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "f7d71ab69e9b1c26b1af8b09fc36d31a01d2e3e46cd9155dda0ee239aa7a48b18f0e49d12bdced28db04fc583a42149e8751461397fa8071909afbe7dc8df187" + } + ], + "purl": "pkg:npm/%40babel/runtime@7.15.4", + "type": "library", + "bom-ref": "pkg:npm/@babel/runtime@7.15.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "runtime", + "version": "7.18.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfc63c7fb61485c7bf2bb44cc13a7b9b4b82ba6a6ff616648ad09b04296a408a30d6a49b0af1a471e80a397a4458240b7d699ebe04625a8919d469297e16d9ba" + } + ], + "purl": "pkg:npm/%40babel/runtime@7.18.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/runtime@7.18.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "runtime", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "361b7c2f43bc60292d9ac0d5e85a85b9eeef40b471dc76f4077ee54b9cb48c346a4719411b8c082479dff7f6e0484d94ca2a4a140d3562d4be9e945d4d6054cb" + } + ], + "purl": "pkg:npm/%40babel/runtime@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/runtime@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "runtime", + "version": "7.15.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "3afc0c2ea3579025d2cf59129b9f2c12c36e86a3b1fdf2a99d49ca9c5079bfcb8375ae5b2cd10736028fbe10cde885342c37271d0f742e527443a8e7c8148804" + } + ], + "purl": "pkg:npm/%40babel/runtime@7.15.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/runtime@7.15.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "runtime", + "version": "7.14.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "fcf081dae27ba0ce38b73f18842e19ffa3de38a5e9e0ae7cf1ffb9337725af5338cdbab3b65a345c47c9d8b1338ff160c1f806708765f27ed86234c2234058c2" + } + ], + "purl": "pkg:npm/%40babel/runtime@7.14.6", + "type": "library", + "bom-ref": "pkg:npm/@babel/runtime@7.14.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "runtime", + "version": "7.21.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "f2323af6da19aaa72c9ea186ab0192e106f55702ce129e21cfe0973f2c1cbe3b3ad2edc1e0fa26fd4ffbae6e16f2d30e60407e13dc200f4996d65debf2a948f5" + } + ], + "purl": "pkg:npm/%40babel/runtime@7.21.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/runtime@7.21.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "runtime", + "version": "7.17.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "95288106fa1dab6f6e4a1a5618d6e015d298362143a39fc7218b1a08463d7dfe2c6f5d31f638b3a36fa946b4b21788ca6425ea833baa04e40a6d49bdd2043026" + } + ], + "purl": "pkg:npm/%40babel/runtime@7.17.9", + "type": "library", + "bom-ref": "pkg:npm/@babel/runtime@7.17.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "template", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "32765da450ff65d6215f08ae9ccaaa832672b9c698b1b2f422b8e81a36958468a5cfec7c601fbe9117f28123888f5c8eb5628f971ecd069fbd2354504a0b1de4" + } + ], + "purl": "pkg:npm/%40babel/template@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/template@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "template", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "23c8ffc7c90752b6d84535315ebacc6df09aee3c6413bb59adedfdc77923afd86f23cd9c2b515fa8bca0a2d71637991d3c659c2dd58c1e94816afb1ee6d5b0df" + } + ], + "purl": "pkg:npm/%40babel/template@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/template@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "template", + "version": "7.22.15", + "hashes": [ + { + "alg": "SHA-512", + "content": "40f12b5159b8bb225aeb4ae423bdea9de0da72f76fcf1b214f7924b06aa519661d3932143b027b44350bf2c1aab25635b975922fac4c14a1170d2de8c76b85d3" + } + ], + "purl": "pkg:npm/%40babel/template@7.22.15", + "type": "library", + "bom-ref": "pkg:npm/@babel/template@7.22.15", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "traverse", + "version": "7.23.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "6b3a5ee7d490e3ca86ea7bb60b370c2dbc54b9db4df9d38cf640db52a1aadc75d4251968ee2f1fbcfa31414cd880b67870c566b99826f2fbc1a4d79185de974b" + } + ], + "purl": "pkg:npm/%40babel/traverse@7.23.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/traverse@7.23.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "types", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c9820fe4dd274bb066f78618ac16fb4b3b0e6db35d77925ae92ee20fb4224853e041db87eaaba95ff115aa289123cea5d1f40107d6b21be574eac011c1fa442" + } + ], + "purl": "pkg:npm/%40babel/types@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/types@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "types", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "33f37306910bf792391e1e1dc218a7e49944ec4ccee4f1cc02ece3c6cb37b623810f8e8a7d0bd579d37fde310f66f751bedb0adb6db65df747a20348b6d16072" + } + ], + "purl": "pkg:npm/%40babel/types@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/types@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "types", + "version": "7.17.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4e629234ee03e6bce12f96e35857151c72c44f37d0fc099b2a928f3928e53f45a81d9e8bf75d5f82838a638025a7f7a6cc6e1c1c9772378f73a6091b5c51071f" + } + ], + "purl": "pkg:npm/%40babel/types@7.17.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/types@7.17.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "types", + "version": "7.18.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "4e137598170cab9a46fd59b621c0663cf7f23d76ddf12d36ad2f8e0480c435db9fbea0bb67f8c73c2bfd21c3f4d76efb68ab4323c83fd97cac04de2103c9e28b" + } + ], + "purl": "pkg:npm/%40babel/types@7.18.4", + "type": "library", + "bom-ref": "pkg:npm/@babel/types@7.18.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "types", + "version": "7.23.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d2823251f2a8237992a8cbecc4175c943c315ca5c0500f2ffdaa596dcfa24b2011628bb5a3c6460f16d46322c5a16d9aaea4b68c31aa26e66fbf577f8a8d5ac6" + } + ], + "purl": "pkg:npm/%40babel/types@7.23.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/types@7.23.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@bcoe", + "name": "v8-coverage", + "version": "0.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "d21610f120780dbe73bd90786b174c1c6c046908e467316342237d2d562f2050769d25075bdb58a715ab88fad60c0488c626976b1f3744470bc6e49d9c63d9b7" + } + ], + "purl": "pkg:npm/%40bcoe/v8-coverage@0.2.3", + "type": "library", + "bom-ref": "pkg:npm/@bcoe/v8-coverage@0.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "accordion", + "version": "2.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d0156ea4afe05daeed038ca03c6a40b8040cf5540262b0b828e13b09c233ceda04d2d33afdf42fb76c1b3dba80e78d22407f5f3f439cdd5efd7569d03c9f65c" + } + ], + "purl": "pkg:npm/%40chakra-ui/accordion@2.1.4", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/accordion@2.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "alert", + "version": "2.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "ecba8fbfa11406d7b85ccfd0daa045213e68e010b47529678bd047387d81800739075345fa90403034d41fb24d06237b4474d5ec41c02160f38a25ff34adbcf9" + } + ], + "purl": "pkg:npm/%40chakra-ui/alert@2.0.13", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/alert@2.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "anatomy", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1378cc3c6a8ab864dbb7b98ab5cf20fcc38e7a7c36738c2a442d6f3b2a72160982f30b1ec1d63e0c924d10d1776ad5c02bba7954c04a41f67b8a93651e70c0c0" + } + ], + "purl": "pkg:npm/%40chakra-ui/anatomy@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/anatomy@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "avatar", + "version": "2.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b208a881f2ccf2f6acf10253b7b0092385f135761d5620968fec58270c8ec1437dddd58a226aaac773b68a1097a174c8a905a0d6b7048282790b10a0eab41a41" + } + ], + "purl": "pkg:npm/%40chakra-ui/avatar@2.2.1", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/avatar@2.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "breadcrumb", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "3926be17da89d71985d335710b5194e3a3966db8467f492eac78a8481ef6f5dfad470fce3339aaaeb7c227b29551437c3449d36574f914882890cbc7184b7e1e" + } + ], + "purl": "pkg:npm/%40chakra-ui/breadcrumb@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/breadcrumb@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "breakpoint-utils", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "f2e86b724330a11fe9a3094087188564f334b3cbe7d01db213211a45cc29cb93664402524c4a2d0b65a44b2425fc28f2b31f6c72b79dba607983e7c15fb22a19" + } + ], + "purl": "pkg:npm/%40chakra-ui/breakpoint-utils@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/breakpoint-utils@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "button", + "version": "2.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "4fd5bfcc7a4765571bc7f04c8342485c2811c9cbadfde6284d879efc4f9e071c8f087e399f7d3c02c614d9b67c4e06715306d835180ca78a912ff2875100efe6" + } + ], + "purl": "pkg:npm/%40chakra-ui/button@2.0.13", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/button@2.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "card", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "bef99fb8d9fa8247efe9b19c5d07ba92f587b29ce23d98189e77df8848cf69962d69ff7c591b33a63c8f6c5bf4a1047fd87d51484d68693a9afc9d6b1ebcf0dc" + } + ], + "purl": "pkg:npm/%40chakra-ui/card@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/card@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "checkbox", + "version": "2.2.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "edf347f90da7076b8c4a76003ed6319eec19d4c389a9b9591dafd271f67f7e388f0f211a7b59b4ebc64ffe5f72279ce56b060c4e4a7cde6fc955cbb940562eac" + } + ], + "purl": "pkg:npm/%40chakra-ui/checkbox@2.2.5", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/checkbox@2.2.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "clickable", + "version": "2.0.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "e58d9d9797313603b11db8f1cb1b0be957737b8c1452fc2c302096de45f0833d8e508db2e54b0164d72f84d271dd17212447747f294c2a22a82a69d93073766b" + } + ], + "purl": "pkg:npm/%40chakra-ui/clickable@2.0.11", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/clickable@2.0.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "close-button", + "version": "2.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "648ff7a7ce053e55b4c680c2658aac9c8bd1e9b4dcd9dfd3961c324c7b030f1abd64e5a9f5cd8989c567e964dd58676c864f22b67659746e7421c9e2cc69e298" + } + ], + "purl": "pkg:npm/%40chakra-ui/close-button@2.0.13", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/close-button@2.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "color-mode", + "version": "2.1.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "6943e8b8e50f9fb20f9b5bf4d3ff4022446e36b902c0995b8d52f5909ccbcf18a36236c7bc41cfc67b484edf895a3b573d3f3174eaba99ec4b60238603aec9c1" + } + ], + "purl": "pkg:npm/%40chakra-ui/color-mode@2.1.10", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/color-mode@2.1.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "control-box", + "version": "2.0.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "5096f8beaabefc53eec130ae68f7876b6970b64eaeede16f2eec030924f67bfb01586242d51fb5fc8979a4771c9d6b34f455b1c99f6ffcec6483f086de3651e1" + } + ], + "purl": "pkg:npm/%40chakra-ui/control-box@2.0.11", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/control-box@2.0.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "counter", + "version": "2.0.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "d5846dfe3a26fa6de25b0f49f6dadc33aac01c3bc3e25c138623bdadac542bb051b185219cf66fb0ca5c5d4d4ca1ac76d7c0b8ad1a5b23d29f3cb6a28349b5c5" + } + ], + "purl": "pkg:npm/%40chakra-ui/counter@2.0.11", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/counter@2.0.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "css-reset", + "version": "2.0.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "1701ce7f0d8fe1c91ba526a10d979fd8aa3172f1cf520d3d8e589c59da76e3f32376c38ee4f001fdaa66d9406f41f958e16009c8ea9868e7675c5951ea717871" + } + ], + "purl": "pkg:npm/%40chakra-ui/css-reset@2.0.10", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/css-reset@2.0.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "descendant", + "version": "3.0.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0d2c8e8d4bab9482bbd84ba22686873562523a6dc93aa5fc4c0497275d549f7488c3e978c299e636620cebb434bea3e27c6c1dd825e2001bfbec572e54484e5" + } + ], + "purl": "pkg:npm/%40chakra-ui/descendant@3.0.11", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/descendant@3.0.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "dom-utils", + "version": "2.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "3fddfaf962a29f3e5f807cdfc225108c4fedecd0bc6d4f3d4dc7a29b8b5b9fc0889bff5bf82b075fae1e370e2fc89a91c2defc4d740aeda18121b4b5f11d2ae5" + } + ], + "purl": "pkg:npm/%40chakra-ui/dom-utils@2.0.4", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/dom-utils@2.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "editable", + "version": "2.0.16", + "hashes": [ + { + "alg": "SHA-512", + "content": "90814fb9fcc895588dbfbaa2d8fc7159606f8cb6fedc83f98541a6a8e03da9c633e5301da9b950a830a59b489a8e52033541569d2e21d39ea8f232ac438d9ae4" + } + ], + "purl": "pkg:npm/%40chakra-ui/editable@2.0.16", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/editable@2.0.16", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "event-utils", + "version": "2.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "648a2a51b809e537026d945c84cbf89fbace97524bd3876831e6c40fcf0b3b99aec77ea254ff5eaff9e7398e0e91ed5b00d28a51132b41fe554d3f61a18780ec" + } + ], + "purl": "pkg:npm/%40chakra-ui/event-utils@2.0.6", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/event-utils@2.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "focus-lock", + "version": "2.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "015489b7edd49226bf9bd4c26598325af4d8ee9c3cf2302b8af59527683248661822ceb3fc524c9e5c1b09595d57669f4b48377186a28bb68045bfd6ae51b7e1" + } + ], + "purl": "pkg:npm/%40chakra-ui/focus-lock@2.0.13", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/focus-lock@2.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "form-control", + "version": "2.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "27deb826582bc4ff8b3f791898b935b6d6e5ef7bba8214fe2500e312390451cf25492f48bf8bbd5e4443407bb3daddb2d0a1e341d1f5d8f51f51f06a7084db63" + } + ], + "purl": "pkg:npm/%40chakra-ui/form-control@2.0.13", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/form-control@2.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "hooks", + "version": "2.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "fef0c13aaaa7868f6afbe95acb465cbe71fc56e134c13d8e9198fea83c05c2388702d18f5711c24a9bbd282f01207304e539568f23baae25725026f67b68a9eb" + } + ], + "purl": "pkg:npm/%40chakra-ui/hooks@2.1.2", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/hooks@2.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "icon", + "version": "3.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "45a0cb0b8a6c77cab2227636457e0095845fa4b04dc3756c322875ec115ff04112561057349718cbb43d78c57f2b836f65f653e36bee56a1953459a41bcf6505" + } + ], + "purl": "pkg:npm/%40chakra-ui/icon@3.0.13", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/icon@3.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "image", + "version": "2.0.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "b9c94586cd3ec2adaaba31aef169387845884c0de26594138ad1a21521243bd5ace55507f86aad9f79948a51f4a2bb9bac8e6cac9b170268d54ee57081ed4a25" + } + ], + "purl": "pkg:npm/%40chakra-ui/image@2.0.12", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/image@2.0.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "input", + "version": "2.0.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "0a44ab50978a5a880e4adda951fdaf56fe6cd1b5157008b8fd71a3d4954209fc885fa6ba8759bc47af4c4a14cfc4f890d0c75e6eae404eb5bf6994105d9cd119" + } + ], + "purl": "pkg:npm/%40chakra-ui/input@2.0.14", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/input@2.0.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "layout", + "version": "2.1.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "50fd7d57c11e23f0c43836d6ad996a0b4b20db8f1ba45696a4c88cffe83d06cc6cf5aa1fdf27b1a4c0ffee06f4cab7db22b91dbd206b7107aac571b36dfa28a7" + } + ], + "purl": "pkg:npm/%40chakra-ui/layout@2.1.11", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/layout@2.1.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "lazy-utils", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "490e48e6b26b707a5551c11fb472ce87c532798fb4e91f06bf7936463729bccea66f61a4b65cffe3197619c521dcb5b27601900d6ffb46c7b9ad084a5a0ce672" + } + ], + "purl": "pkg:npm/%40chakra-ui/lazy-utils@2.0.3", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/lazy-utils@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "live-region", + "version": "2.0.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "96d39b68a41e90fef918209b37ebedd7f98600148269175010b9a8b474c1739022a00de2c820c71faf5ebfe7ebcc4c0bbca16aa3e468980740020a8120c274d9" + } + ], + "purl": "pkg:npm/%40chakra-ui/live-region@2.0.11", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/live-region@2.0.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "media-query", + "version": "3.2.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "76398483f789e50ae39fb480ad3aa3b2f97017a98d78cba26b0ad3c2753ed042aaf4fabfc1549bed56888717506092c0fc36d1844fca3cca20c352cd54a6b847" + } + ], + "purl": "pkg:npm/%40chakra-ui/media-query@3.2.8", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/media-query@3.2.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "menu", + "version": "2.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "d94bacad0b711dca9c3bd9ffd18a1b34ddd1242f3201953aa096d13eebec43d20bf3db1c1160932315c462b9c88de87fe738a47121031a8f7333d51d83f5dcb0" + } + ], + "purl": "pkg:npm/%40chakra-ui/menu@2.1.5", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/menu@2.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "modal", + "version": "2.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "2b671a7f2348d1be0e480079e6a217b790cb66a8fb1351b4f85cdad3664e059a604c2350c83b5cd0acdd54c259f6bcb129dd7a2d4939526287ba063f5691c459" + } + ], + "purl": "pkg:npm/%40chakra-ui/modal@2.2.4", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/modal@2.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "number-input", + "version": "2.0.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "20045401b3f8a67d603f97d8d9d2b8c2d6d1dce363cc78138c7e198f712b66f76eff24d444b6999a56fa5061f082a8d62f28a869cb59ffe9f83638f90918ecf3" + } + ], + "purl": "pkg:npm/%40chakra-ui/number-input@2.0.14", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/number-input@2.0.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "number-utils", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "4e186886796acded22e470493bdc647ce3ead6bbf78e2fe134f7f6c61d5f878871acdcdd9b71c2933d1cea5c914301ae5687a5b441f2b1864b1ffb962c54c249" + } + ], + "purl": "pkg:npm/%40chakra-ui/number-utils@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/number-utils@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "object-utils", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "feb20ca18237736b8bb4522b9d314e3d1008f12b54baedf7e56b33a8a3342805b59701bd1fab926f1aa5a594f53f18bf550a9929f85e1a23103b1e657d398cfc" + } + ], + "purl": "pkg:npm/%40chakra-ui/object-utils@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/object-utils@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "pin-input", + "version": "2.0.16", + "hashes": [ + { + "alg": "SHA-512", + "content": "e75722a0d629052822f7f8eae82af3a03be8f1fa4cc055eedd268545b28ee3bb3d0f3fce016d0ca63c9a6d37d2a703afd3129913e6b2ad8189a290b36525973e" + } + ], + "purl": "pkg:npm/%40chakra-ui/pin-input@2.0.16", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/pin-input@2.0.16", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "popover", + "version": "2.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "35756dc8cc58cc32b3cd0a61ffe185452337b448f780dbe5097ff1191b023adf48e38eb327522709dfdba1740a01cf35ddca0437d31c48e8cd5a0a3e342043f9" + } + ], + "purl": "pkg:npm/%40chakra-ui/popover@2.1.4", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/popover@2.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "popper", + "version": "3.0.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "e8b69c6c1197d29887598fc36313860934c5028446447a46211cd381f372f23c70e1ffabba4695b9d7783dcd9fc230937686c928cf2718d60860dbfdfc39aaf5" + } + ], + "purl": "pkg:npm/%40chakra-ui/popper@3.0.10", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/popper@3.0.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "portal", + "version": "2.0.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "0acb3ad62e162b328ef28bb56868c1cdcb17332f4b9df9e990e15fbda342a5450d11de9ce3bcfaf8585936aec6737f0f18d8d27cc2c07782e61fe1f465a9d820" + } + ], + "purl": "pkg:npm/%40chakra-ui/portal@2.0.11", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/portal@2.0.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "progress", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "75d01769818d39b1aa1f5b2d44063191da2ca5fe89e020ce841d2ecb0f41787452b189025105a450177f99e949b997861c41f622d17d4fb159e0985c7a93f718" + } + ], + "purl": "pkg:npm/%40chakra-ui/progress@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/progress@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "provider", + "version": "2.0.24", + "hashes": [ + { + "alg": "SHA-512", + "content": "df6f8319fa1700e50e5f08cbb2d74643e93f6280b0745c566f09c4029ed695e8ac958b0c725d0978834301bbe4b101f4a6206dcbbeecc13b967d4539708a31ee" + } + ], + "purl": "pkg:npm/%40chakra-ui/provider@2.0.24", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/provider@2.0.24", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "radio", + "version": "2.0.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "7bf858d60f765ddbb9779036ecd15f6b5f9c704daafc0e47eec73f33ba747c877a28edf70ecb76e47cbe1d386daa760dd18dce9b9f1f89710aa394ac76dbd27c" + } + ], + "purl": "pkg:npm/%40chakra-ui/radio@2.0.14", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/radio@2.0.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-children-utils", + "version": "2.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "aac29411f2bf0210db31ec56a3926199d964c4b839584c367458785e8aef535fdd4d8b117cfe9c8c57cef3313e5f717464536c80acfaadb379a14df8f462c417" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-children-utils@2.0.4", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-context", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "5984b4541979437fe4352850dba04ff90d0e18c793416728de14a2256bcedb060b63b37504baba74ab3cbf228765fa702a1d982f66d078039b8bebd2917a7ab5" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-context@2.0.5", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-context@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-env", + "version": "2.0.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "acfc141d17925a1eeb6c2c341de3daf0fbdcf90f367d416f5631d321b5ca9c4e9dfb4d5c084ee3e1fd4d2de443f694ad28f23ab08666f714c6bce0b397c17c8b" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-env@2.0.11", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-env@2.0.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-types", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "180a69f91fd58d2d545799ace62aeb8a3e4b38881433476a4951da832105133f3c2d12a4a8c0fd46e3b9efb66c55de069f450bb1a715242500d07b4d50124dcc" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-types@2.0.5", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-types@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-animation-state", + "version": "2.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "336914cd99120600e97ef9df7e1de44ec3083370ef9fe09332acbdcdf63decd2f83f72c058bd4cb85b4a76529f43c86cfd0a704bf7b0f024e60ad6b2c27e2c2a" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-animation-state@2.0.6", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-animation-state@2.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-callback-ref", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "bca9d795e0f63f30749c669b637e5f46d925322778cfb71e71b306d1f91ab0d36c8169ab41c5c93ae10a514542ca72fa14153a8019e92858b902a8fac7e2b8b7" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-callback-ref@2.0.5", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-controllable-state", + "version": "2.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed6b8aae1424a52468888e4f281bee22c3b8e8820fd30b114205ed4ad49a217bfe148bc8265f5cc505d36e6679ab50eceb8d5074050ac78fbabf42bfce86441e" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-controllable-state@2.0.6", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-disclosure", + "version": "2.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "e143de3cbf8e702637eca679f3988b8e0f22e89d2c8e92e6ee2646dcf53099bf7ba0a1d51eae83a6658833455f4a3713e806d2ab219c779057650060c2df0759" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-disclosure@2.0.6", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-disclosure@2.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-event-listener", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "7ad2c1a61322831cbf726ed8836db2dbd810f2efcadcf9e2479003657ed6557eb50a0b1af1c882aa34c4f6c4ed949416010c926d6c6df7e9a3953e7369ffba67" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-event-listener@2.0.5", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-event-listener@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-focus-effect", + "version": "2.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "c08f0e50dc1f6e4bac6a32da73c42d8df4b2366b0dbb50f9a403669d21c89ed1e1ba2e89c2fef93f1c7b4609811277c112995e06776147d13be620a33cb859fc" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-focus-effect@2.0.7", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-focus-effect@2.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-focus-on-pointer-down", + "version": "2.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f760aa2e222efb41b5c7f6648b18417325b243872acf95c45cbaef93482ee661a2bd13edc0a7e4554805718fe09f433ee1096a6290f79c283baca483d6972b8" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-focus-on-pointer-down@2.0.4", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-focus-on-pointer-down@2.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-interval", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ab6e28f97394242f836e17253899f63f9f245c90d060a067bd89cf39ef85553492177dab2c7af664d1607e96fa819f95d978b7f64e3f8e189ae0e23e07f70cf" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-interval@2.0.3", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-interval@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-latest-ref", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "7b1352403e2b3dc9434a6370b5c0a150227836e0b6509e1a9b234606ac128f268ae6334793692433bad9e88d08f2e97edba96fad7952ba1cafe9cd8f1706c541" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-latest-ref@2.0.3", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-latest-ref@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-merge-refs", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "b9cf8ca33059f1ab1a5293bc49670ae83e2cbd13c008deb78efe6ea2c5245c947ed398d02645287e47d06dfd8778655bad60abd1766c7ed2c89b832dfd032857" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-merge-refs@2.0.5", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-outside-click", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "5a6b5751e55a32dc4ff5a506186f8641a0de527fc1bdff13237114e66135f93b6a2c7c7203dc2dbd0babca7ae882fa6294b681003c27fc97817aab36c07a6fa8" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-outside-click@2.0.5", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-outside-click@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-pan-event", + "version": "2.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "56d825ddcf8c8f885d7a115114882bb9055772dc271b5e7dd048a7d45894f2c56796a3ba6e9ba0e99f81d78c416be17e5f468af83c67864245c9623ddcf92cda" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-pan-event@2.0.6", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-pan-event@2.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-previous", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "03638339ad2b9b61cce1aa977f1c48d333cb727e50ee20448d1c9f21085bf841fe776385ba3dcbdac955a08a69e9efe49b75f3bf677ebbf59b8e04f3750dddd3" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-previous@2.0.3", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-previous@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-safe-layout-effect", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "7654ef41447399d7f205b35dc9d80ee16cb6fc757c68937c2eccd3b726f9bd166cc9ab250ccfdfb5cc68f04f108c7c112c3fd5d44a5bfc0f3bdf541f8a67d569" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-safe-layout-effect@2.0.3", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-size", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "e1aac00297625e4e6ebf965e14a96d1140ace61df20fd769ea04c86976c076afbf10d2b78cc593c25ab335b26d0b2870a0e16b6e52d2741aecb01308b0d41f65" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-size@2.0.5", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-size@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-timeout", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "ac1054919490ab79c943c7ee324819358d92820e2f2a228da74e46c40c254fb4e2b4e7d5672a13ae2a90a6acf6f7a6d696690809367196a0967c4e5f5a9b13b2" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-timeout@2.0.3", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-timeout@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-update-effect", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbdb4232bd72b8397c01361d87ae06bfc9207b9c44d4333292a3c3670fbe3a806c4da5abdebc78d306e503c3485ae4b225ee44aed28fd8e7a096f264621af225" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-update-effect@2.0.5", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-utils", + "version": "2.0.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "9e5c0f05595099c9753e22f3656cab4f71529eddef292901333434105e1225603f9ce22a4ef99f7dbe430b30aa3f3810684fc36b55e0bacf89b9f14633c18b09" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-utils@2.0.9", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-utils@2.0.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react", + "version": "2.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "94f0c20ae6374bb5d27882be3feca91882fe945a84650b7c1f7232ab87286e550b32c8fcb2475252a6a843823d7c680e8b59284cf7b83a55dbfab9aac1043d31" + } + ], + "purl": "pkg:npm/%40chakra-ui/react@2.4.2", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react@2.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "select", + "version": "2.0.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "7ef546c40b4b6885c638c89caf349aea298cc39876e92d5aaf7c723665e0478d1d6e94cf1e6b502646c705ff45c3041781280a5a0073b33b70e620c70a93d5cc" + } + ], + "purl": "pkg:npm/%40chakra-ui/select@2.0.14", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/select@2.0.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "shared-utils", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "a4253e49419d5f38c0b948944fc9ab89e90bded2557cd77049321a35e8a9ee4fd2583ce2beb2863300050717775d54c37afb55bac9dd90ee0626e437c882f30e" + } + ], + "purl": "pkg:npm/%40chakra-ui/shared-utils@2.0.3", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/shared-utils@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "skeleton", + "version": "2.0.18", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa3703f01815c7890bf0b99bf04be698318cd880a5e82aa1544d8b4a126b806ecf0cce91b7aad833ad7b92a2eeacb6198db2548b081ff555d689f4b42294f7d5" + } + ], + "purl": "pkg:npm/%40chakra-ui/skeleton@2.0.18", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/skeleton@2.0.18", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "slider", + "version": "2.0.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "cf8439ad6b5855374580156f47a694852320dc242e0208c9187bcb1c41830948d80ae057adbdd2996cafbf4dee2b28d26f04722aa4acbc09d20b1b661ce0edff" + } + ], + "purl": "pkg:npm/%40chakra-ui/slider@2.0.14", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/slider@2.0.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "spinner", + "version": "2.0.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "a623b682159d273432ffef3d983cdaef12e13e75bba40f800cd6e009bd6f9ab8889d679d4b8d4804a7bea523f3e0889d8c26c5bbbc70284d007ab1486eba1c08" + } + ], + "purl": "pkg:npm/%40chakra-ui/spinner@2.0.11", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/spinner@2.0.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "stat", + "version": "2.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "e977ae13fef0d018f20874b131bb1febfacd38eb3c0528add4d4bb83bf8977fe343dcfd22a53562ddde4c573e2778793dd1c3234874c3ed9b7d0e01cb6bf67a9" + } + ], + "purl": "pkg:npm/%40chakra-ui/stat@2.0.13", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/stat@2.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "styled-system", + "version": "2.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1b81e96c5111ab80b5701c0a343364a428a588e2022d78d8c0a23f7bfea1c4d63e1a53f1b7c042cf3dee85ddef984a06daf44ce2a8e2765563a61856b1feaf45" + } + ], + "purl": "pkg:npm/%40chakra-ui/styled-system@2.4.0", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/styled-system@2.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "switch", + "version": "2.0.17", + "hashes": [ + { + "alg": "SHA-512", + "content": "05069b7c2eaa622e71049bc414fccaab4ca5e9f4ed4cd3441d389de6bee1d0f59c0a70221f04094e9411a71a7e0232b9ebd2cc2ed4d745e4d9bcd06bcc4c0eac" + } + ], + "purl": "pkg:npm/%40chakra-ui/switch@2.0.17", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/switch@2.0.17", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "system", + "version": "2.3.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "ff69bc8457c5cce30ed8e9701f14d6a8834e049323c56c14e55fc0701ec2d2a4b9d43723f5cee4ba98a533a41daa238b2dd312ee621545262bf239fc80cc3d7c" + } + ], + "purl": "pkg:npm/%40chakra-ui/system@2.3.4", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/system@2.3.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "table", + "version": "2.0.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "4d2c73a5facea01fbd2d374d4cc9da402e8e4eca77e93942471275fb59c08829a593e9be1623734d0b2605a9430e1736f6b9bee80751b3148fb2319607c615c2" + } + ], + "purl": "pkg:npm/%40chakra-ui/table@2.0.12", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/table@2.0.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "tabs", + "version": "2.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e69ca0dc94025ed05a16e2d742f009676693cde5f723f76978af6b2a88bf56c9854433bd610f166e7844c8a61fc64ed7cc7a51bb67c7b9bc11cfe2b875453e6" + } + ], + "purl": "pkg:npm/%40chakra-ui/tabs@2.1.5", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/tabs@2.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "tag", + "version": "2.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "5b5bab7feb6f18cb7a27771cdf51ee7726d84a5f81e636143f90c9c735ccf69fa7dc9aef5d6028e03e8b9a92c11d8e734f698d9ded78245d6b55e45c1b846d76" + } + ], + "purl": "pkg:npm/%40chakra-ui/tag@2.0.13", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/tag@2.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "textarea", + "version": "2.0.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "afc845d6b0a2f86b1e2ed63f20679559714dd14bded9bf36d1442e9918f8ab18fb3ec3eac3584583b09e71b6dbf73c05dfc2bf9be0f721dc05789cc8d4cb6044" + } + ], + "purl": "pkg:npm/%40chakra-ui/textarea@2.0.14", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/textarea@2.0.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "theme-tools", + "version": "2.0.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "9557039aae69c94d106ec2052a3b7f8955050daa7b762d901ef3ef182840d584a3b60d4fb6e522f81c445d6ce9dcd7e0c3f378accbe506cf92d329c9ca97706e" + } + ], + "purl": "pkg:npm/%40chakra-ui/theme-tools@2.0.14", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/theme-tools@2.0.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "theme-utils", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "410a3048cf1fbd0953993d30f70b6a52558e0788bef5e03b3f85d19b86df841319ed7a4ae1cb55f79b0f786a9a5d571cb33e66d2ad40b8659afa3e9e3026ebae" + } + ], + "purl": "pkg:npm/%40chakra-ui/theme-utils@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/theme-utils@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "theme", + "version": "2.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec394e4225e69daa98caa5f0aa67c5482586914a27baa98d0b99a6502c31238df92a01cd09a1366c89ba0c8ecdd8d70872e55c7dcf159f452aac3a06537cc906" + } + ], + "purl": "pkg:npm/%40chakra-ui/theme@2.2.2", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/theme@2.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "toast", + "version": "4.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "1afe76510e1f26dce22fd420d18b5eadbefa0b51a0cd58abc8f0dfd9dc52cd396709c2886d8e24b4485e8721418c35d8a069056f8ecd654132872faef29dc650" + } + ], + "purl": "pkg:npm/%40chakra-ui/toast@4.0.4", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/toast@4.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "tooltip", + "version": "2.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "58381054430776cc94a4a1bd368832d8528b0607dd246ee14d2ad26c7d562ef1ec3e4a4f2e49cbe22e59fe90afa5ae00ed2cd36baa6cdf9d26c6d274e7831e32" + } + ], + "purl": "pkg:npm/%40chakra-ui/tooltip@2.2.2", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/tooltip@2.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "transition", + "version": "2.0.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "7dfe9e53e9b4f1c7187c2924d2129f63f5e5986c42adf6c182c2a05789a2ad9e122942f5195c9ef0262e1f0590941268fbcb34c88a6c4cdc40b97e27fdc5bdff" + } + ], + "purl": "pkg:npm/%40chakra-ui/transition@2.0.12", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/transition@2.0.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "utils", + "version": "2.0.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "d59d4c82cadf31084d7a349dacf264f2fe49e2009e7c7a3ed700663cf1d3cf96c611b0006d9d7769701f5f2f30d1e172d0dbe76b09f41075bb3b29e9fcc747f9" + } + ], + "purl": "pkg:npm/%40chakra-ui/utils@2.0.12", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/utils@2.0.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "visually-hidden", + "version": "2.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0311e7848cb7c80f7df7102e3a35d09b84ad87c8c5e5a65e47cdc263bb0588a72573e04d60290f61970a6aea0ae28ef9b3792cb04390f7b53c14aef65c93829" + } + ], + "purl": "pkg:npm/%40chakra-ui/visually-hidden@2.0.13", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/visually-hidden@2.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@csstools", + "name": "css-parser-algorithms", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7532922071d6734ccfbdc4b972a18ffbf4cf154241d1e909f5d18abcc005a0db811610cf06df4e306359888039bd388d7461c705e49c60f5c818132754e6a1b0" + } + ], + "purl": "pkg:npm/%40csstools/css-parser-algorithms@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/@csstools/css-parser-algorithms@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@csstools", + "name": "css-tokenizer", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "19bad38f667c3024d4bfee76184d116c518ce76ef1b976745dae60d19f98379ef7baf792e06d2a8ba58d38ccb3df2ac533f8da20b4d3c09d3eba6c7cd44cea7c" + } + ], + "purl": "pkg:npm/%40csstools/css-tokenizer@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/@csstools/css-tokenizer@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@csstools", + "name": "media-query-list-parser", + "version": "2.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "33c705186c25f3aea8ebefaf218ee3d402aeabdbf9edc7fe7467a949cc0271bbadf72a4936be028fe2cb4d6962818519d2eca11282432ade65bf205f8762f765" + } + ], + "purl": "pkg:npm/%40csstools/media-query-list-parser@2.1.2", + "type": "library", + "bom-ref": "pkg:npm/@csstools/media-query-list-parser@2.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@csstools", + "name": "selector-specificity", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "84123db5f06db8f222f3ce59b19df620c114ff99e5647fca39560908e87b8323316952c698b79d62a14de948b52d7908f09942f08b2e0b4ac5d1bb5c45929de6" + } + ], + "purl": "pkg:npm/%40csstools/selector-specificity@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/@csstools/selector-specificity@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@discoveryjs", + "name": "json-ext", + "version": "0.5.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "74156e5d1d3cda09378ec169ed177f248e24cadc061de7270a84ed5c56fb0c1e82347a78ae0e64d5b860d2759d2c62e7395ef59660f319068b332f223cb634a7" + } + ], + "purl": "pkg:npm/%40discoveryjs/json-ext@0.5.7", + "type": "library", + "bom-ref": "pkg:npm/@discoveryjs/json-ext@0.5.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "babel-plugin", + "version": "11.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5192b0055dab003ba1469f9938680d5a0d9e6206f32b34177d03ed25bbbf3cbcbca27babc653422efc4c404be5af5fc6b9d82e3c8e4853da88635fb6cf53396c" + } + ], + "purl": "pkg:npm/%40emotion/babel-plugin@11.3.0", + "type": "library", + "bom-ref": "pkg:npm/@emotion/babel-plugin@11.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "babel-plugin", + "version": "11.9.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ebffb1c61fa1fac8a8275453448f631596b7aedc00ea7edaa3ab052f0f2fce27328583129e4d0f9e7947f6d05393b875640ce37688d6b6e6b017558b562428f" + } + ], + "purl": "pkg:npm/%40emotion/babel-plugin@11.9.2", + "type": "library", + "bom-ref": "pkg:npm/@emotion/babel-plugin@11.9.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "cache", + "version": "11.9.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1d82423f24a9425dafa5117be268cb4604bd329e9c78a2c87bae339713bd6af5b205f06f9784982f8bec03bb407421d095c77ec17df8b05e537d23752ecc5be" + } + ], + "purl": "pkg:npm/%40emotion/cache@11.9.3", + "type": "library", + "bom-ref": "pkg:npm/@emotion/cache@11.9.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "hash", + "version": "0.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "90126d7fb3c7e9a5b067a7e46b7cd0d29e92058cf1e1f9752e865713646b9d8493f579639bb59f289ad4e20fd7af705e83bd8c2eba750163549ae6094cbec2a3" + } + ], + "purl": "pkg:npm/%40emotion/hash@0.8.0", + "type": "library", + "bom-ref": "pkg:npm/@emotion/hash@0.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "is-prop-valid", + "version": "0.8.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "bb95ad9de100af92031b65afeb9ca1ba73d230b229b8ab1bb8e92d4688dfac4884bd1c82f392e03cc648eb772becd52a4fc64819d49583c64a1b122e83895770" + } + ], + "purl": "pkg:npm/%40emotion/is-prop-valid@0.8.8", + "type": "library", + "bom-ref": "pkg:npm/@emotion/is-prop-valid@0.8.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "is-prop-valid", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f5192296f5c0b9f407b12b234373c8cd29ecfa9c6e5f8116f046c67923e364c1ee331eb3fcc3b36fd2e9a8d89e417e05de6adedcd592dbe5f724d4474d0ced51" + } + ], + "purl": "pkg:npm/%40emotion/is-prop-valid@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/@emotion/is-prop-valid@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "memoize", + "version": "0.7.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "25afd57ea7b71e9bb346c1b5a01b564c79363c667b191fb6573e626067a5030f1dc77d8ad32ecf8d5bb12bacf59cca593aa005b1150f0a42b5623279eaa26583" + } + ], + "purl": "pkg:npm/%40emotion/memoize@0.7.4", + "type": "library", + "bom-ref": "pkg:npm/@emotion/memoize@0.7.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "memoize", + "version": "0.7.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "8a05fd6b7ec347664f198b55eacb99eb086bf294c5b721cbdcafe82d4a2dc694953b60126a9ae601ed8392aeed068ec2458ecc303ac06bd9ee40ff7f606f05c5" + } + ], + "purl": "pkg:npm/%40emotion/memoize@0.7.5", + "type": "library", + "bom-ref": "pkg:npm/@emotion/memoize@0.7.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "react", + "version": "11.9.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "83d43519c4ce9733848eac2e2c5fd977d2c2fb81658e33e30dfc5233b2a611a926fa1b075e4f9b619daafbf853273af4394364ba3a3bda95cb42f5e3e87f8625" + } + ], + "purl": "pkg:npm/%40emotion/react@11.9.3", + "type": "framework", + "bom-ref": "pkg:npm/@emotion/react@11.9.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "serialize", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "f79320349f7efda8f153b40802bba2380758363c595fb1b69a182bb435acc00db556f8982113f5479422959fdb0d8e36c622ac6a4b4fe1e8096f741d610662d4" + } + ], + "purl": "pkg:npm/%40emotion/serialize@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/@emotion/serialize@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "serialize", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "d491da992a47f0f21f17000caf23b66cd91afb2f3e280e7281ae4e71fd9ded91222636fbc652d6eda92704666a24b6a3b8b3af27eef6bcdf88052c0f9570f53e" + } + ], + "purl": "pkg:npm/%40emotion/serialize@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/@emotion/serialize@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "sheet", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "27760f71c5513224d9c58018d083aade477e8543fc89d63c2b3e81fc2ca8f89b97ab9d8493ecdb3db49052b550a7de5a27e96c016ec33cbd4fd99f94d631a428" + } + ], + "purl": "pkg:npm/%40emotion/sheet@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/@emotion/sheet@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "styled", + "version": "11.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7d4a0b70ddc17cc88b951849f02b8f50c1322a42c4a0cfa7f94c806e7a8612c09de48cca43b55014bb73a4939a083dbf551dbed615d04e74995d525e893365b4" + } + ], + "purl": "pkg:npm/%40emotion/styled@11.3.0", + "type": "library", + "bom-ref": "pkg:npm/@emotion/styled@11.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "unitless", + "version": "0.7.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "3963913697e332c49250156b44154610292159c50b380273f595bcb8af6a8310fef3b33b8c745cbe1fc0f7a5d73615d32e629ca18490b41117ee51cc3bb611c2" + } + ], + "purl": "pkg:npm/%40emotion/unitless@0.7.5", + "type": "library", + "bom-ref": "pkg:npm/@emotion/unitless@0.7.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "utils", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8912dafd8e11b391ff7f69e299ccd8992e6414911ba6256f80ddd755f674db621886e340d484521c48b37287fcf0bb424d7b65f52d82c6ddf62a069712eef625" + } + ], + "purl": "pkg:npm/%40emotion/utils@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/@emotion/utils@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "weak-memoize", + "version": "0.2.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "e94ef50b65a9eebe57b45b50cd8ad6e622854faece8b1ad2c63238329b421f375256581a6dccf3a8b7b4652827b9bff92a9e2149ba43075b4ccad658f69c31c4" + } + ], + "purl": "pkg:npm/%40emotion/weak-memoize@0.2.5", + "type": "library", + "bom-ref": "pkg:npm/@emotion/weak-memoize@0.2.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@eslint", + "name": "eslintrc", + "version": "1.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5165b44cc4e693677b84b7160f5fdeda0e470ccfc743772c68b4aa5c27eac21e2e343b8daa568a597984b0be02b38d59d0a9c82cdbf06c701a8770b6cadd3a93" + } + ], + "purl": "pkg:npm/%40eslint/eslintrc@1.3.0", + "type": "library", + "bom-ref": "pkg:npm/@eslint/eslintrc@1.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@exodus", + "name": "schemasafe", + "version": "1.0.0-rc.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a85f0d14d9069adf79b7794731b879c7a4dbc78cd94ba3482d574f755c1a5a44835a0785fa146086e572b148534588fa6e8140ea36bb87cdaaa94dd0e6e003a" + } + ], + "purl": "pkg:npm/%40exodus/schemasafe@1.0.0-rc.3", + "type": "library", + "bom-ref": "pkg:npm/@exodus/schemasafe@1.0.0-rc.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@fastify", + "name": "busboy", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "25414969de65bfb8f18fddba18f8329ab590c718cf62e24d88d8cd333a93f878ae3fa565ddd939c731bef2c4d7f7a9e9d19025baf68cccfb23847679acdb8d41" + } + ], + "purl": "pkg:npm/%40fastify/busboy@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/@fastify/busboy@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@humanwhocodes", + "name": "config-array", + "version": "0.9.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "39bc8cc96c59882bbfc938ac03bbb3c7cd6ce34c51d9f0f90a0ff62aaec6d366a390db9b25fe81a298034e60f273753bb17a4d28cf1c60ec3bb3b4f2afe0e70b" + } + ], + "purl": "pkg:npm/%40humanwhocodes/config-array@0.9.5", + "type": "library", + "bom-ref": "pkg:npm/@humanwhocodes/config-array@0.9.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@humanwhocodes", + "name": "object-schema", + "version": "1.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "66740c9cb5787bb843954bf0f07f94f0048bd36492d869fafbd01cdf01862c87bbfa37b601e00ec4f63e8b320f2437c50dbede0e37afd14b3c30ed6215137c84" + } + ], + "purl": "pkg:npm/%40humanwhocodes/object-schema@1.2.1", + "type": "library", + "bom-ref": "pkg:npm/@humanwhocodes/object-schema@1.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@istanbuljs", + "name": "load-nyc-config", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5637874a5233a6ffcdc83dcdd18b877d738f0c88b1700d6ad9957df30b0ca9c6253e6bf69f761bda560ff5730496768555783903b60b4de2eee95f38b900e399" + } + ], + "purl": "pkg:npm/%40istanbuljs/load-nyc-config@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/@istanbuljs/load-nyc-config@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@istanbuljs", + "name": "schema", + "version": "0.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "657458e2336f56049543c0cbdcb4dc6a4680b57c13554c44f3586c96cc83d80b685d6ff05686f5d0790e2755ffa4095c23b0fed98a192a0e5da3c1bfc3a45880" + } + ], + "purl": "pkg:npm/%40istanbuljs/schema@0.1.3", + "type": "library", + "bom-ref": "pkg:npm/@istanbuljs/schema@0.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "console", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "919fed3694b73579f49a55d75cf36e0d99dbe1cd28676d2be0ae5e7a6336937d190b71b44f4da75d4bf285fe5875b5d61cf1092dcf6a18bc44676d7a31d2fe66" + } + ], + "purl": "pkg:npm/%40jest/console@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/console@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "core", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "00aebf513aef403d02776e0d4aa98803aacab2ed2d288c5f88276e719beac58766322b0e600b1d22db294fe7d00d060044f7fc5e08c01598b4a205b66a01f99d" + } + ], + "purl": "pkg:npm/%40jest/core@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/core@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "environment", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd642384f25edff8216a897fe01ab8f3424a5d5fd17f0f2741d37b7f8d5f33c5431cb731297a2ee90c97021dc416bf7f6d51b7c7be33d4d58390ff3b12263c80" + } + ], + "purl": "pkg:npm/%40jest/environment@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/environment@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "fake-timers", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "fda3e8c28a25c1ad3b93bfe83376804a778d78118298642c737ba0378bbab380bfface4ceb8305a3ff9d8d3762c1c6d09517c51251ae0d75b36968fa42028e6d" + } + ], + "purl": "pkg:npm/%40jest/fake-timers@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/fake-timers@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "globals", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "64424d078d4e0504201b383222702fd1451f0c38f7ba9987c9d8e2792c45bd346e64496bc7bb5783fb95439858544c225ecdfe68cb0078473d5fbc6248a0a6e1" + } + ], + "purl": "pkg:npm/%40jest/globals@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/globals@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "reporters", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "70f5e1f6158895524c424564f38688bd7b81078b9042616a66269c96816e1a23f76a1d6c6c2c42a2c89d5c50dfa86f3ee9f3b5a11d9d4c94e5b0ecb85459947f" + } + ], + "purl": "pkg:npm/%40jest/reporters@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/reporters@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "source-map", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbd3481d4605dcf25194793df0d742fcdd6097cf012f4f1a41082ee24e19a294240b0f6df5c57c9ad9774d5f1bfd8081f176954c5ae6513009be3b27b438ab7a" + } + ], + "purl": "pkg:npm/%40jest/source-map@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/source-map@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "test-result", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "116df9976458154714431149cf90afe4c4cec6524842ce08ee0c738b6cd553b3c984ec1f62ad4c742e678529988d7d6098c98b3ef077b08682f8191c1d105f6a" + } + ], + "purl": "pkg:npm/%40jest/test-result@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/test-result@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "test-sequencer", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c285e245ed6076fbd26e092ed507f126188750ba1b6a8d1348f40e3789d1efdc4e0a96d093b0fb0bc6f75ab9b147498c18fdf3633168e5eaf35184388deefa5" + } + ], + "purl": "pkg:npm/%40jest/test-sequencer@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/test-sequencer@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "transform", + "version": "27.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ddf4af434da4baf8ce2350b5b2ca8c541289a597fa9f0a02892bb4d3300a8799eba774a9b4db59cbff2ce5d79ac879eac618c3f4258327ecaa430b90d1969f5d" + } + ], + "purl": "pkg:npm/%40jest/transform@27.3.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/transform@27.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "transform", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "8a938de96b58825ff5df6f60e4020955b52e121d306556dda46c02f7d270e0bc2ea01352f79315a6153acce783f690e4a27f8b2db14bee539045aa5b07c4821f" + } + ], + "purl": "pkg:npm/%40jest/transform@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/transform@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "types", + "version": "27.2.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "9e6b8ce15b83b4265c63e793a70fb49efb2dc1178cb233e88fb651f34fc16e2c6e9612da897f9f6eff2878b5bc59994931cb0642c4e630a4ff89366ed54cbf95" + } + ], + "purl": "pkg:npm/%40jest/types@27.2.5", + "type": "library", + "bom-ref": "pkg:npm/@jest/types@27.2.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "types", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0b1e3a889f50a704138c876ae5526ed904cc32cdd09448c8d31d506c13f95b5fa7333c9cd979a29a2451fc26d7f533b470f4de525c5630ebbc9ac958b09f0313" + } + ], + "purl": "pkg:npm/%40jest/types@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/types@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "gen-mapping", + "version": "0.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b105c26ac164f94f2559811eeba5b1443384f4f8d5cf8bd2339d5f4eedc7c3e0a54e951241bef5f3bef6bc7de9c92e694a1a7a96f40ced2c602035d75e6397ef" + } + ], + "purl": "pkg:npm/%40jridgewell/gen-mapping@0.1.1", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/gen-mapping@0.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "gen-mapping", + "version": "0.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "9a1eb9c4a400cc8ea205c173c2fdbc29559298291d4415a83a1f9b610196dfee8e66f6db3774ea306a3986a631427891707f45d95648a090a6e296b704f0cafc" + } + ], + "purl": "pkg:npm/%40jridgewell/gen-mapping@0.3.2", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/gen-mapping@0.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "gen-mapping", + "version": "0.3.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "1cb85258e2d18bcef9ce38cc1bfafe36fd28096f2e9866f4060121c97ddd0d7dde83066d07c3ea2e78f3df279db7c4794ad06bcdc838681a6787c500f43d41a1" + } + ], + "purl": "pkg:npm/%40jridgewell/gen-mapping@0.3.3", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/gen-mapping@0.3.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "resolve-uri", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1769ac95aded69df8c7e1b79709abb2d25dc76e74a4d6095614830ea92c538e1d24ed6658fa496358029f8086ea8b9967413b65f984facb72ef1c54ff1fcb6f3" + } + ], + "purl": "pkg:npm/%40jridgewell/resolve-uri@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/resolve-uri@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "resolve-uri", + "version": "3.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "75261987b1e1083b422a6e106a45f4c45a6c443aa38ed65ffe48c8fefdd3dcdc2de6bf3fab3fccd7d17dc92c8ea94f78497066786f6db53ba5f989d1e0b3b114" + } + ], + "purl": "pkg:npm/%40jridgewell/resolve-uri@3.1.1", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/resolve-uri@3.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "set-array", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0ade4ca9990b1845d35664186c6b71f5256a0f67eac2f76e6dda6ce43ddd8e30248242b04fdd7c54d3b3eb9a441c56984de59cba4989987e52c2c03d4e7d8e6d" + } + ], + "purl": "pkg:npm/%40jridgewell/set-array@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/set-array@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "set-array", + "version": "1.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "c6792c7ae3400ccd20b766ecf81be13b4a7bf0c93beb662765db2ecc5574d7c3681b54a3d52090be94aa6bb5d46936a6e6f0066ac00157da9701230a9c533033" + } + ], + "purl": "pkg:npm/%40jridgewell/set-array@1.1.2", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/set-array@1.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "source-map", + "version": "0.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "9bb3bda36b91f24d8e6c3cac658cdd7e16f4f15b849a5e685868a8b1ad5575a3d9fc0e90c8f90026ec0dd10d658542ce7fa07b32d4261c4352ef8de15ad0ab83" + } + ], + "purl": "pkg:npm/%40jridgewell/source-map@0.3.2", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/source-map@0.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "sourcemap-codec", + "version": "1.4.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "5cf4891d69a2dfde1fb94bb30e71b3d7088aa967e8d725de70740c45fda5ea1ced4cefa73ebbbae7c0320e781a05eee2b08c44911b0f47715987eb3b8956b853" + } + ], + "purl": "pkg:npm/%40jridgewell/sourcemap-codec@1.4.14", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/sourcemap-codec@1.4.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "sourcemap-codec", + "version": "1.4.15", + "hashes": [ + { + "alg": "SHA-512", + "content": "785dabc4246e9442971d34620eb0f2e9eacc616a8dc382cf750f14400e21baec5a42c55e44f165da833ca031b130584951665ff4c7292ed25ab030d96ff0697a" + } + ], + "purl": "pkg:npm/%40jridgewell/sourcemap-codec@1.4.15", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/sourcemap-codec@1.4.15", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "trace-mapping", + "version": "0.3.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc5bfdb6d21e762bf1d2ec774128e182d0958cf65de65e3a64e303482c271f5c943b67bdeb880ef0b646cafd9092a72047a4e7054d6ffb5205aa67a81bed1425" + } + ], + "purl": "pkg:npm/%40jridgewell/trace-mapping@0.3.4", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/trace-mapping@0.3.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "trace-mapping", + "version": "0.3.19", + "hashes": [ + { + "alg": "SHA-512", + "content": "91fdfb42d7d6f87c31fdbb9618c3dc47ad2217dce21daeabfc26492076e6726e3ed2aad78957717a0007d05eb275d11543bcdd9237060a00b352ef8171b850c7" + } + ], + "purl": "pkg:npm/%40jridgewell/trace-mapping@0.3.19", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/trace-mapping@0.3.19", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "trace-mapping", + "version": "0.3.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "a35c5b2a1a7daa7200a0725259de8a94265faac94be2f6a5485f351fc2268a8380c65b966163a95a4a7292d636be7b78b5bad7f5761ac68beae9c828c1a269db" + } + ], + "purl": "pkg:npm/%40jridgewell/trace-mapping@0.3.13", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/trace-mapping@0.3.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "trace-mapping", + "version": "0.3.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c95847d0f653d3be6dd29de5b044554bceb87a9e18f0ab0ed350514110ccf0be0eedecf0837a77f6943c2aa383505f37698015f21600d69d003edaf92bba4b1" + } + ], + "purl": "pkg:npm/%40jridgewell/trace-mapping@0.3.14", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/trace-mapping@0.3.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@nodelib", + "name": "fs.scandir", + "version": "2.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "beadb806adf29b91c4426d8d282af7c970f08dceef4ec1138510e7929d832bda75baa2d1f831eeae6fcd393a34286ec760753b7a9a4a663dcccaa62e3017fada" + } + ], + "purl": "pkg:npm/%40nodelib/fs.scandir@2.1.5", + "type": "library", + "bom-ref": "pkg:npm/@nodelib/fs.scandir@2.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@nodelib", + "name": "fs.stat", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "46484f3e9db3aea0c0400ff68cd867ced70f025bfae17761229edaef8e78039a2f23b06e93182decc5fbb9dc00bb7ce0d437293d4d2bcf7555d5279aaaf638f8" + } + ], + "purl": "pkg:npm/%40nodelib/fs.stat@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/@nodelib/fs.stat@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@nodelib", + "name": "fs.walk", + "version": "1.2.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "053221a1c6cf052ad1987c4e00916d475f282e1c53b4014302f2fc858d52de253c93e13ad16fd816ce23ae2c46cd08cca45e2a3d7c48407723543f5dcf50b640" + } + ], + "purl": "pkg:npm/%40nodelib/fs.walk@1.2.7", + "type": "library", + "bom-ref": "pkg:npm/@nodelib/fs.walk@1.2.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@npmcli", + "name": "move-file", + "version": "1.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "d5251ffc28361b3183c9a7f5e5a47d4adf535a56fe5ef6d95d6a43c7c60ab3b30bccc1ff0427a8a6ffb2f6fcebce091fca4086b963a54aede66618f6f8541cae" + } + ], + "purl": "pkg:npm/%40npmcli/move-file@1.1.2", + "type": "library", + "bom-ref": "pkg:npm/@npmcli/move-file@1.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@popperjs", + "name": "core", + "version": "2.11.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "f761519a9a638eacf6f55309d9d9fec5dc97641acc944e36015e8aaba0708d657b08d516d61b3616dc5234b404fa0261699e8002662e3bdcbc76c86170197bbc" + } + ], + "purl": "pkg:npm/%40popperjs/core@2.11.2", + "type": "library", + "bom-ref": "pkg:npm/@popperjs/core@2.11.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@reactflow", + "name": "background", + "version": "11.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "49841b091094d06bb14ffe344e6ed92be979c01c869cd2522ed6616cbf42fc797b261b095d5dd4197af4beb96155950112d91603b5e164cff94bd5c40395d214" + } + ], + "purl": "pkg:npm/%40reactflow/background@11.2.4", + "type": "framework", + "bom-ref": "pkg:npm/@reactflow/background@11.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@reactflow", + "name": "controls", + "version": "11.1.15", + "hashes": [ + { + "alg": "SHA-512", + "content": "fffdf75df058bbcbd0e9badf9a56702ab0e887ef2187ddf13b677cf178aa7c86eb3c411bdf64988ec6fd992f55b8728d952216f9e076edf040d46b74d26123e7" + } + ], + "purl": "pkg:npm/%40reactflow/controls@11.1.15", + "type": "framework", + "bom-ref": "pkg:npm/@reactflow/controls@11.1.15", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@reactflow", + "name": "core", + "version": "11.7.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "9edd13f04469f1313b6020d05626a8118f656f44ad0cfad61d5c77cc18e14ad158113df073cf2df1045ab1975ff7dc514e6c8db48dd4dcce343391012cd52933" + } + ], + "purl": "pkg:npm/%40reactflow/core@11.7.4", + "type": "framework", + "bom-ref": "pkg:npm/@reactflow/core@11.7.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@reactflow", + "name": "minimap", + "version": "11.5.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "d6d0c18f6cd7da0c6eda81d4eaabc7e5118dace5917d1c6ef37ebd2a10e8b6eb81379c89ac65c9cd620a8a4c21ce3b0db10258381f81d1c4b8e325807f04b0cf" + } + ], + "purl": "pkg:npm/%40reactflow/minimap@11.5.4", + "type": "framework", + "bom-ref": "pkg:npm/@reactflow/minimap@11.5.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@reactflow", + "name": "node-resizer", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e50f8806665fa69fdb62cc37f8a455241d6751b8fa5b75c0a79c9cc78b8d587f8af7cbdbb2cca6c90b16d2fbca90887110f83ab6488cccee145915afc01c2dd6" + } + ], + "purl": "pkg:npm/%40reactflow/node-resizer@2.1.1", + "type": "framework", + "bom-ref": "pkg:npm/@reactflow/node-resizer@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@reactflow", + "name": "node-toolbar", + "version": "1.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "b85432f71a6883ddacd06d70b0f2e78b057d9f21f88bf3262fb42832c59d9ca68e8bb5cc85df1225c0b351d1c2de2991db51e5b6cb902137dffd7439d40a4c6e" + } + ], + "purl": "pkg:npm/%40reactflow/node-toolbar@1.2.3", + "type": "framework", + "bom-ref": "pkg:npm/@reactflow/node-toolbar@1.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@redocly", + "name": "ajv", + "version": "8.6.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbda8d8f4fffb59b560768df5cd2b7057d7c052069f73351eca13b94ccac547c1b66d637f763890a39ba45bfe1e141c7dabd40aa33441c50fa6d19fe0ea53d33" + } + ], + "purl": "pkg:npm/%40redocly/ajv@8.6.4", + "type": "library", + "bom-ref": "pkg:npm/@redocly/ajv@8.6.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@redocly", + "name": "openapi-core", + "version": "1.0.0-beta.102", + "hashes": [ + { + "alg": "SHA-512", + "content": "dc5af77e0fbd544178fb8ba8caf38e93ef62a665f61988656f5f2e65ba42e2fddc5201a991344664cd907ad7da87b4e0c762e0a8bbb0f00d627030fa65e7761b" + } + ], + "purl": "pkg:npm/%40redocly/openapi-core@1.0.0-beta.102", + "type": "library", + "bom-ref": "pkg:npm/@redocly/openapi-core@1.0.0-beta.102", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@sinonjs", + "name": "commons", + "version": "1.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "c6435c2c09ffc19697d7844f9708b370a89c0e4f46dc5f26da75372fb5249b9cc1813c224f4c2ca05007c7d26ae7a7c9035cffeee286b4246ed7ab0e5022c81d" + } + ], + "purl": "pkg:npm/%40sinonjs/commons@1.8.3", + "type": "library", + "bom-ref": "pkg:npm/@sinonjs/commons@1.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@sinonjs", + "name": "fake-timers", + "version": "8.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3803c9500b6078836187f4c0954203e104ece773639bbc7375d695944b3f497c20b620f5b56db6cc007f5b5c1da9fae99a292069643d170e96b3e86c8919b956" + } + ], + "purl": "pkg:npm/%40sinonjs/fake-timers@8.1.0", + "type": "library", + "bom-ref": "pkg:npm/@sinonjs/fake-timers@8.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@testing-library", + "name": "dom", + "version": "8.13.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f551e07c86ad28d5d035a653b4b9da948cb48cd673637e5ae12de88b4f1802df47bf556c7d9fc37c0e3994cf03fd486d1c1189e3f946c29d0f66456775192839" + } + ], + "purl": "pkg:npm/%40testing-library/dom@8.13.0", + "type": "library", + "bom-ref": "pkg:npm/@testing-library/dom@8.13.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@testing-library", + "name": "jest-dom", + "version": "5.16.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "1b2f88a05bad6cc41c932d24f9baaaba65d9d5c4c6b302ec16a98d2f335d48a914f4a195daef685e1ba409b6c9f7f2d13ca8aac31104f15a55ffe61995f90f50" + } + ], + "purl": "pkg:npm/%40testing-library/jest-dom@5.16.4", + "type": "library", + "bom-ref": "pkg:npm/@testing-library/jest-dom@5.16.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@testing-library", + "name": "react", + "version": "13.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0c1efd680e36ebe75e1601928e77f982b7330cf88be2d68ade115a6be339abbab6d0a72f7bd790a2db4e1b9919ef8284af9e6fd2d536090a2b9924832bcef361" + } + ], + "purl": "pkg:npm/%40testing-library/react@13.3.0", + "type": "framework", + "bom-ref": "pkg:npm/@testing-library/react@13.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@tootallnate", + "name": "once", + "version": "1.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "45bcc9be5373991ab97373b4f548a97ae5e7a38b40d4513a8a43a3c592b4b6ec55bf7e35da5eb8979b755b9a63e3eac9abdbe9926fe4c22474eda6579ec28fc7" + } + ], + "purl": "pkg:npm/%40tootallnate/once@1.1.2", + "type": "library", + "bom-ref": "pkg:npm/@tootallnate/once@1.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@trysound", + "name": "sax", + "version": "0.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2fbcfd060acd11c632518b45f876847e24b979b921f635ea6eccf3ee90b485104f69ab55d178d20f7f9e1eba6a15e9907e0c22145d103c86ab9c88a12039fb38" + } + ], + "purl": "pkg:npm/%40trysound/sax@0.2.0", + "type": "framework", + "bom-ref": "pkg:npm/@trysound/sax@0.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "aria-query", + "version": "4.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e7629004d58ea447228cfd7904ba24508531ef933301bab4c79e914b60b0463c8ca564d3ecf6325cb8e3985b13cb242484b66653d18f2b1c3a2428deeb4538a" + } + ], + "purl": "pkg:npm/%40types/aria-query@4.2.2", + "type": "library", + "bom-ref": "pkg:npm/@types/aria-query@4.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "babel__core", + "version": "7.1.16", + "hashes": [ + { + "alg": "SHA-512", + "content": "100107b62b1330cf8a68ac1f59d0b7a3296522ab309739d7088542b7bfe844dae1f838604f850404d0bf8e5003363bf0ed49df6dc76419070f559d716222dcad" + } + ], + "purl": "pkg:npm/%40types/babel__core@7.1.16", + "type": "library", + "bom-ref": "pkg:npm/@types/babel__core@7.1.16", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "babel__generator", + "version": "7.6.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "fc65829b3256a95edd8905b9e2c98967359b4857f8418b45ef55822a1731e91bbfb45c90218d9e8a221370201eb8f6cd4af4fd6021a454caaabd293667499788" + } + ], + "purl": "pkg:npm/%40types/babel__generator@7.6.3", + "type": "library", + "bom-ref": "pkg:npm/@types/babel__generator@7.6.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "babel__template", + "version": "7.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6b304529e997ea4320e48a3efeb7464f47641ab79ba14551d02766ddfcfd4095a96901894505e5ec2fba84e4c265c32597b285c8442981b608da51ddb12e14ee" + } + ], + "purl": "pkg:npm/%40types/babel__template@7.4.1", + "type": "library", + "bom-ref": "pkg:npm/@types/babel__template@7.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "babel__traverse", + "version": "7.14.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "2b6c1a5dd5c18b6df4d9751d707711d6309e5342cbe130fd1d1b3f824d0dd97beb86df86fc17c96b840e6c14197e131dc620a957708e97935fab8b8a4de4e724" + } + ], + "purl": "pkg:npm/%40types/babel__traverse@7.14.2", + "type": "library", + "bom-ref": "pkg:npm/@types/babel__traverse@7.14.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "color-convert", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9bb186ec828a1ae2545ef919d6aa86dc285c71d20cfea041a3dd77cfe5dfb749ca097e21014fc8c4ac19054e1ca5167b192e64578bce6e552420bb524a108f5d" + } + ], + "purl": "pkg:npm/%40types/color-convert@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/color-convert@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "color-name", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "aebf8e432023c737bb1a05ab49a270c9d1d2b48847ab696f63704e0b6323eca9f323b5cad14c354ce39d23d943a1a8c46d258b898828a387f5479d5ead07e13d" + } + ], + "purl": "pkg:npm/%40types/color-name@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/@types/color-name@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "color", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "5fffeacc9ddddd98fcd89f6c0bf0b5f196397f8deeb4f6c027a3e162dfcceee1ba7ad705e8c46929d37cf34281cb8dc1d0133349f793f7a333aec363148dc66c" + } + ], + "purl": "pkg:npm/%40types/color@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/@types/color@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-array", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "45ea32fa92a7bec92c374950525707e9d3868d167fdd64705d1fff9beffc96dd415de238c72694668a942cd8f25d746e874323e0b369902be15294256375f9c5" + } + ], + "purl": "pkg:npm/%40types/d3-array@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-array@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-axis", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce38bf8886dd778f60f56374688b067307130549202ec092c01fae1fe2cf54302229610d32d237709116b7eeff618c1e94ca1999b05fcc0dea09dad9d9714d9f" + } + ], + "purl": "pkg:npm/%40types/d3-axis@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-axis@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-brush", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "079df60e8cec893b90307bb660285d654d2ab052528a8dd0ea398160660da7780c0f3066b851603edf6a280e1562e2d9329e2a73a797ec8505504b2f1e25d903" + } + ], + "purl": "pkg:npm/%40types/d3-brush@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-brush@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-chord", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "7907dcc481eb83b57ef96f10c67e9092a04d06893285d592012ef701b91b333bcb42655506f8a49e8cf64914bf6497483a685c9a6742444fcd14e9b6f19d4033" + } + ], + "purl": "pkg:npm/%40types/d3-chord@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-chord@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-color", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1caba270f1c9baf3e0083fa7a7a49ef4c42f4ba3826c998e8c6bf29733094650f05178ca4d35ece8fc2093bf4ed3d563fe1a37bb5a1f5e784539a11658fae5c0" + } + ], + "purl": "pkg:npm/%40types/d3-color@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-color@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-color", + "version": "1.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "7d8b6254b058cbb5505fe2b1ef053fb8e2241909fc680118f2858ca328dadcde1d2ddf187fa5e048847fe325af32ebde34e1f9552867a82811aaa87f50d6a704" + } + ], + "purl": "pkg:npm/%40types/d3-color@1.4.2", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-color@1.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-contour", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0b7cdf06b84766fae90002b7617a8b595006a3cec0e12bc9f3743fcd527cac558974a7a35270d869664f900f0af3891bdaf0c0fe0f742d3400cfb7ad5dc82841" + } + ], + "purl": "pkg:npm/%40types/d3-contour@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-contour@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-delaunay", + "version": "6.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b4bc50dac7d3d29eacc5d1bbe5ce9ffde92ac63c98474f8bc0faec3b599b0bd6030733c986cd876c9251ae7f04cf50c1a07468db2c7b60401323ef15d6718c9d" + } + ], + "purl": "pkg:npm/%40types/d3-delaunay@6.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-delaunay@6.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-dispatch", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "361c4c9f76c092a863a3169b54958aaf28676575d86154316819db00dbb43bde3e3bf9d7f6a4a3ac0d4fd636c0409c497fe542ef64f10d7fd825c2ae7b96d1ab" + } + ], + "purl": "pkg:npm/%40types/d3-dispatch@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-dispatch@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-drag", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a3555aedb2f0c24ea1d37fa748cf1da5a184627a081b5f4fd252aa96273c527dfaca687d35290d157d7289730a34cc7cac9d0a7e79f67a8bee15a2fa26f8f4cc" + } + ], + "purl": "pkg:npm/%40types/d3-drag@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-drag@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-dsv", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a34ffb465325f69e67e85403a6db8954cc437ffec40c4bf649810efc2c1d1b6b6bd614df5158b421abe49366b1f95a5a43fd63561a678f9aead678fcbf0867d8" + } + ], + "purl": "pkg:npm/%40types/d3-dsv@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-dsv@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-ease", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "68ca3879a00e8a326303ab94f8621e5b4d7c76fcbdfa81f963654f3f38e37f17afbc643fa110ecfad7d80bd6f9d10e01ca0451f321364022ecad3d16b4056c78" + } + ], + "purl": "pkg:npm/%40types/d3-ease@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-ease@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-fetch", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6864934ec2b388ab3ece87a43b976ce468d7d791f47b985489bc6be50ff0a2abff92437f5de60ca71c967fd1f8edf3779cdd62fbfaedecb2a2228d0b41212b3" + } + ], + "purl": "pkg:npm/%40types/d3-fetch@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-fetch@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-force", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "cfc1ad78655f91624c2acc7a8700b74a24d22eca4bf7c54da66bcba4414942964fabac6903523c1cd043352a6e91f2b455bd25eb8cc6161cee9cb80401c05648" + } + ], + "purl": "pkg:npm/%40types/d3-force@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-force@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-format", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4a63bd227c20b3a2b90bb889037b467d6137fd451d828c15f589a246fab80cfdc3cffac3beabd61d43d59d8507203e3d44422276ff4fb25249338931ba2ee6e" + } + ], + "purl": "pkg:npm/%40types/d3-format@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-format@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-geo", + "version": "3.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "0dba8aecc2d803c2e9c8741fbfa2a5cf4e36e9b4047fb6d14ef84ccb8e2c3465726685a7fff07473e41b7a0f0eb22d8e6dd73d04b2d76002a9c967a07b6ffb2d" + } + ], + "purl": "pkg:npm/%40types/d3-geo@3.0.2", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-geo@3.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-hierarchy", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "83eb1ecbbaab09add46ec42531964138744e905ab1eca64abd4a51cc8fed029ffc7ab656a58abb16034abd8c1e6e2d8b684895b359258547dddd60938719a659" + } + ], + "purl": "pkg:npm/%40types/d3-hierarchy@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-hierarchy@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-interpolate", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "8f1e657a8b5279a7378ebd1178f387d4a751f6b2121bdd50204e10d8f613bb83b298b4d97c0dd2ae751148bcca1f8f07997554aeee746fc9e37b813bf6841243" + } + ], + "purl": "pkg:npm/%40types/d3-interpolate@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-interpolate@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-interpolate", + "version": "1.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "ca5c9cb6cea59457fcc8012cd6d5f3c76968c71cc3647b1eba13e892ba8aa6b4d0493703dc96c9235a2664fd6ba61b042d93b743ea1fddf7f4652efe3bac95ce" + } + ], + "purl": "pkg:npm/%40types/d3-interpolate@1.4.2", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-interpolate@1.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-path", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d20fc0fa6657805910c4ddc79e24436d730defd2b709d4e92ec7af8fe3d789371bda1572be4654060dfb4ad9a009091a0fce1c509e2e683016abb509390cb64e" + } + ], + "purl": "pkg:npm/%40types/d3-path@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-path@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-path", + "version": "1.0.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "35a21e488062160482e8819406365672c714244abbbe956eecab611cdf1e89e4d5f5df4caa448e64b1f8721ab53e670acb4e8f35eddac4b78a991232c49f8f65" + } + ], + "purl": "pkg:npm/%40types/d3-path@1.0.9", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-path@1.0.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-polygon", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f8f73e03cb34ca5ccd2c18a56a8930d362bf831e0feec6c8960c090daf05d8ba265577da3dc17648a3e62c1e489f3a2c819264969449e01c24267b9e3f8671f" + } + ], + "purl": "pkg:npm/%40types/d3-polygon@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-polygon@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-quadtree", + "version": "3.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "40d70af0982ebdcf2553ee0e7de371faa9d5cbb73456b0c9f82095152f6cac1a3618bf58d7c0a723105d4c5defdfc7e5ac6cb9b3562081ca008aeeace1f2d023" + } + ], + "purl": "pkg:npm/%40types/d3-quadtree@3.0.2", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-quadtree@3.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-random", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "20813a6137a419cce92d8a3f1de840cb7246175b72efebac23decbaab68d6bc2220eeafe2f8e1dd153a302f15058955d64e247ba4509c3e65d641960794b0739" + } + ], + "purl": "pkg:npm/%40types/d3-random@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-random@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-scale-chromatic", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "76ca09184212868b0a551059074568dc2f27a920ea546ba3254ead3f39ec049c4d24dc0c17cbad992f379ef08129060fa630b369a1dcadfeba893469668b0b3f" + } + ], + "purl": "pkg:npm/%40types/d3-scale-chromatic@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-scale-chromatic@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-scale", + "version": "4.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "624e21b6e9e13c0c0dd171a523002b46898e8dda011570b7fa40b12b651b83b23db21425552272fe91bf1ede4048dfa074c21a96993c4c9e7157be2316c7ad2c" + } + ], + "purl": "pkg:npm/%40types/d3-scale@4.0.2", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-scale@4.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-scale", + "version": "3.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "806aabef1d68b2df69c7716f21f50c8b95c0fc5ff201fe149140ed7508691fdd97093d0e6bbce4911cd8eb580f549abe0f1a479ff6eda2ec39a215a46c1b02cd" + } + ], + "purl": "pkg:npm/%40types/d3-scale@3.3.2", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-scale@3.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-selection", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "330e5c7fa9e55b532579fa43f73aec859f830162f8210e4b9d67d185e5bac70b1d69639be88451bb61fb5cf0107325c4c750fb5d05a0768291f37ba2d7f1e510" + } + ], + "purl": "pkg:npm/%40types/d3-selection@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-selection@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-shape", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d8218c45140f6fac9f0777849ef37608e9717e8330cbd5a0b90c2b2575a8b85d862254d761b6919b03f18cea2c90f1aca14a9ddad78f0b637e21cbb0384f164" + } + ], + "purl": "pkg:npm/%40types/d3-shape@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-shape@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-shape", + "version": "1.3.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "82a7e7333e857791fa18e2d88b13993ffc65accb499acf41692fbaa16c5328736a3c667ddc19165aea50482626e981eac7a87dc2346ea6e25bf746ee9fa65a62" + } + ], + "purl": "pkg:npm/%40types/d3-shape@1.3.8", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-shape@1.3.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-time-format", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ca37c151ee83241b038a7d81308ba58521e6af9a8d4793f1b35efea16e03a153f25485d9fa6e9bb3b8f551528fd3c126bfa8d1998ad8ab16333bade6431cb5af" + } + ], + "purl": "pkg:npm/%40types/d3-time-format@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-time-format@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-time", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b192c2747bc151c35bcb5701e85777641ac005b8f3defd559bdd27cac090e95b7bbdde9efe1f4bb7b4a2254a045f49780f373b3f99652b286a4a2d727127f51e" + } + ], + "purl": "pkg:npm/%40types/d3-time@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-time@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-time", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f4c558966220991477d42e5be055525adb8c9811e1da63964187e5ed701839af1db276fb88499499149648581716d923c4eeb977b853507402f91851ffd21616" + } + ], + "purl": "pkg:npm/%40types/d3-time@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-time@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-timer", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1cd07ff461eabbb168f00422ba0c896efe99c58cf9f3079fd1eb25e0cbfcdbcc3564aa40b21c3fb855950d470807d28a15e14aa314b7707634ec5160b53459d6" + } + ], + "purl": "pkg:npm/%40types/d3-timer@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-timer@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-transition", + "version": "3.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e8e68fd17fefeeeae7ab27ff7adc3737f4d235e85433ab039ce786f0be4b0601d55fbc3aea0e955eabde5b12f3ed0702c2559bad004c80b664b210cc4deefc5" + } + ], + "purl": "pkg:npm/%40types/d3-transition@3.0.2", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-transition@3.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-zoom", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "eece4bf538dfa8861099040451ca4c01c04e6a17a6ed346848effe1a4cf4d866cc56e50b899ce317604e770dbdd5d6ced9a3689f89b639d16c446682ab671a2d" + } + ], + "purl": "pkg:npm/%40types/d3-zoom@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-zoom@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3", + "version": "7.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c87cd54ad1997172e4432ad452fd2ca9132390e941da15004abf4df65f8e55bf1489e988b91bd6de872f61ead3531d30c687956af8a6e60635162e063899e08" + } + ], + "purl": "pkg:npm/%40types/d3@7.4.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3@7.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "debug", + "version": "4.1.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "f40a27533c938d75e110e6b40e7aa9cd98ba54796a28cb3081af445e3a579e7ab1c0bb5dbcf3ed94ef1ebeb2390fd4ba6ac151090eaffb0a6250a6f0faf2aaca" + } + ], + "purl": "pkg:npm/%40types/debug@4.1.7", + "type": "library", + "bom-ref": "pkg:npm/@types/debug@4.1.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "eslint-scope", + "version": "3.7.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c1de5772adc9c089c4f7e5358fb3921cc0a0fc4b7df71cc69ad9556fe3ec1dbde6c99235ae5bfc444a807c23045ca20f0761561a99bd60fd1df542fe41c74de" + } + ], + "purl": "pkg:npm/%40types/eslint-scope@3.7.3", + "type": "library", + "bom-ref": "pkg:npm/@types/eslint-scope@3.7.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "eslint", + "version": "8.4.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "60fd52ed825130fb3eeca64a0dbf46eb79fc61e8c8c16f4100babb6b98f6f87e3297a88ebfd081dbd79d868f9cb8546bbe625b6da1f6ca254284a2c9572b031b" + } + ], + "purl": "pkg:npm/%40types/eslint@8.4.3", + "type": "library", + "bom-ref": "pkg:npm/@types/eslint@8.4.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "estree", + "version": "0.0.51", + "hashes": [ + { + "alg": "SHA-512", + "content": "0ae3e053a7f7793fd780a28fa8a77f80b655d579af7f56b64793ce04e1906babaff36c6996cf3d1d4e7329e568c91f17cc777544634e95096f51edc21648d635" + } + ], + "purl": "pkg:npm/%40types/estree@0.0.51", + "type": "library", + "bom-ref": "pkg:npm/@types/estree@0.0.51", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "geojson", + "version": "7946.0.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "3668742b7896409ce7893b8f45c267e61c5791f0754f5a6007cf520628393e5250539ca871acdebb88c04c995a03419814a58ca8376f61e9a84a7176a5780b54" + } + ], + "purl": "pkg:npm/%40types/geojson@7946.0.10", + "type": "library", + "bom-ref": "pkg:npm/@types/geojson@7946.0.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "glob", + "version": "7.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "48461e1802102105fc34de8b0caa6b2e36eb77974044ce445ec77c188fc0e65d1aa582357c631680f1d27b864a2f87a8ce503223e768504f576d84b8c42910d7" + } + ], + "purl": "pkg:npm/%40types/glob@7.1.3", + "type": "library", + "bom-ref": "pkg:npm/@types/glob@7.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "graceful-fs", + "version": "4.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a72a42e6659fb19b8a7c25605fe2112590ce1747e119780d8cf4102491395d99cc8363899b748267460843247dcebf9a2863bfd402810db6674c4a468077b0b" + } + ], + "purl": "pkg:npm/%40types/graceful-fs@4.1.5", + "type": "library", + "bom-ref": "pkg:npm/@types/graceful-fs@4.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "hast", + "version": "2.3.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "c0b126d10bdaa1ac040e84d1c334d7a786f88e9c22243bd1e4a327167568766dec72e7d3941396443e8dd4e05ff5364c86394db127dc3b957eec0178f95cbef6" + } + ], + "purl": "pkg:npm/%40types/hast@2.3.4", + "type": "library", + "bom-ref": "pkg:npm/@types/hast@2.3.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "istanbul-lib-coverage", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "b33ee22eabd5520d6021e7413af964c4f95cf3fb95cf24b93b01b3d5c2a35f3925dc5a4bdda97472b53c6065355a81e4c67d16c5bc39b728ba86fcc928dcc5b3" + } + ], + "purl": "pkg:npm/%40types/istanbul-lib-coverage@2.0.3", + "type": "library", + "bom-ref": "pkg:npm/@types/istanbul-lib-coverage@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "istanbul-lib-report", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a651a05c03df54a16861f6bd369603024b1e1be83a26bdbde11a9ea9ca838b149b537e0c6552518bf3feed8f060e9ce41302da19964ea4a20499e55936d2acae" + } + ], + "purl": "pkg:npm/%40types/istanbul-lib-report@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/istanbul-lib-report@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "istanbul-reports", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "737980644b8ad25bc1a7cb66b8bef85d12a7d7ecb675cc0e5291fbc785ab17a824d462208a5b8346031842dc36385701bc025696de80494ded4aac69d14bb403" + } + ], + "purl": "pkg:npm/%40types/istanbul-reports@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/istanbul-reports@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "jest", + "version": "27.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "e1d471912fc0157d1ce575ba20f30d3b274b9f6b4484d84957b0e760afb46e3a0967e41399fb9c0658a15fb6a812c87fa1c62d90b0bbdd46e7057057231b142c" + } + ], + "purl": "pkg:npm/%40types/jest@27.0.2", + "type": "library", + "bom-ref": "pkg:npm/@types/jest@27.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "json-schema", + "version": "7.0.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "c0ebaf1b548de14b38adecfeb72970c30095d69b223553a425e33701459435683f8c3418dbe1c4ff8e38cb981cfa306646a0123a6d8e7a1e5cd5ac47a1bc1129" + } + ], + "purl": "pkg:npm/%40types/json-schema@7.0.11", + "type": "library", + "bom-ref": "pkg:npm/@types/json-schema@7.0.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "json-schema", + "version": "7.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "731585415b1e066e8ef466f0d4859bf2be8e4b83a14adde13d92e4140a4b8ccf1311744e06e4062c01f68b6819a5c5dd2c122ba57b930e11fb55b9b589798d18" + } + ], + "purl": "pkg:npm/%40types/json-schema@7.0.7", + "type": "library", + "bom-ref": "pkg:npm/@types/json-schema@7.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "json5", + "version": "0.0.29", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + } + ], + "purl": "pkg:npm/%40types/json5@0.0.29", + "type": "library", + "bom-ref": "pkg:npm/@types/json5@0.0.29", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "lodash.mergewith", + "version": "4.6.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "458ffc21a5443631b5f6bc5366ef4dba4aa1d16d94ad8826063e6c767b38856459695f0fa91ef020a1c52b3bce4e3a38cd5455eec548fb2161009aa5d7629faa" + } + ], + "purl": "pkg:npm/%40types/lodash.mergewith@4.6.6", + "type": "library", + "bom-ref": "pkg:npm/@types/lodash.mergewith@4.6.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "lodash", + "version": "4.14.178", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1de56774f48b50587d6a15b13243ba13437199acc7ed8792646cddc4bd328b5dc1cb44349778b9e5be53a7d30bf1548c0ae68d8cf09ccffce5b3ed3dcd46c6f" + } + ], + "purl": "pkg:npm/%40types/lodash@4.14.178", + "type": "library", + "bom-ref": "pkg:npm/@types/lodash@4.14.178", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "lodash", + "version": "4.14.182", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd31f28aac9000ff407c0468e2917e68219cca243de2d5ff22cd88ec7a1f351aa860b80dd4f068396bb6ff34c0e73331ccfe4416eb4cb56b4600544a51ef7ad5" + } + ], + "purl": "pkg:npm/%40types/lodash@4.14.182", + "type": "library", + "bom-ref": "pkg:npm/@types/lodash@4.14.182", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "mdast", + "version": "3.0.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "5bceb8b60fceb33d7ef5fe25ac64d9a4248ee7fcf8eb4f1e529d7db5ba3392ad8724aea2df3d644f41fdb650035ee6086f561838107253826caa493be6ae3ca8" + } + ], + "purl": "pkg:npm/%40types/mdast@3.0.10", + "type": "library", + "bom-ref": "pkg:npm/@types/mdast@3.0.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "minimatch", + "version": "3.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "d73f24e30cc59cd8d52bfb65c6fad6b8ae5632dea6c9d5963fbfb3bc7e5e15ea78a23f9492b7e225346d8c27815cda70680fc562aaad6f8fd04b889a9c5a4844" + } + ], + "purl": "pkg:npm/%40types/minimatch@3.0.4", + "type": "library", + "bom-ref": "pkg:npm/@types/minimatch@3.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "minimist", + "version": "1.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e1b8a2c846b86f08f2eac0f731e8836a98a7a2039116aec08e3e1ae5152adbae653864c3e38f9525fe82c23033bdf17454230566efcc480b3e043c27a4b7379" + } + ], + "purl": "pkg:npm/%40types/minimist@1.2.2", + "type": "library", + "bom-ref": "pkg:npm/@types/minimist@1.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "ms", + "version": "0.7.31", + "hashes": [ + { + "alg": "SHA-512", + "content": "8a25202b357d02e684919aa438b0c8be54222fa96db9977db46716de0c299d7f096ee8ae8459441a69855c45e4379d02beaeceb3cf08636bf47640ea5d859580" + } + ], + "purl": "pkg:npm/%40types/ms@0.7.31", + "type": "library", + "bom-ref": "pkg:npm/@types/ms@0.7.31", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "node", + "version": "15.12.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce343af46e7ae0e088588387497c901040e97691a5f86df8f1100a6345d7cbd679914f55cefd4630d9e46abfd927c7735c1dc23b30fd328f4db51678c5f814c3" + } + ], + "purl": "pkg:npm/%40types/node@15.12.2", + "type": "library", + "bom-ref": "pkg:npm/@types/node@15.12.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "node", + "version": "14.17.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "7ba668c20189993b976b71b268f6d31b15f5eed9d3865d9a4928b3ac5b6143b9bdb8b199057886860139e5c8d165317992366f627f4438f38c963763c1b7e5c7" + } + ], + "purl": "pkg:npm/%40types/node@14.17.3", + "type": "library", + "bom-ref": "pkg:npm/@types/node@14.17.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "normalize-package-data", + "version": "2.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f98f96ff19fef52fe75bab12294386765a5988fe63c9d1f3a418698582d6fab00bbdec43dccf36d2dffb492b199c6038f9e4e5fab2cab00c058e1c860344318" + } + ], + "purl": "pkg:npm/%40types/normalize-package-data@2.4.0", + "type": "library", + "bom-ref": "pkg:npm/@types/normalize-package-data@2.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "parse-json", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fffa28ac46632fab1b3dc2946827481a5214787dba9a0ce29a3041efb1ba5d18270e5fcbe703a7a7204645efcc99fe42556dcfc04044d4d8e2319fecb05878c0" + } + ], + "purl": "pkg:npm/%40types/parse-json@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/parse-json@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "prettier", + "version": "2.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "168efda238f7bdd119387837c11f64b00311cf83f74b97c30797bf616662167c85408d5663655fb6ef57a17555b497f107b06971efd04ea5924a7b64cf6667af" + } + ], + "purl": "pkg:npm/%40types/prettier@2.4.1", + "type": "library", + "bom-ref": "pkg:npm/@types/prettier@2.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "prop-types", + "version": "15.7.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "ad9e5dac2fe35a3ac0aeb4bc051e9222be1c5a95b4f5135362df40319a37270c227fe89a71702a8158e6d01d01bff4b58e10d7287a9154d09b002909f3d4409d" + } + ], + "purl": "pkg:npm/%40types/prop-types@15.7.4", + "type": "library", + "bom-ref": "pkg:npm/@types/prop-types@15.7.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "prop-types", + "version": "15.7.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "24207c0ba4a70e841fd1c37272a77fdf903b3237272be653a84ee3b9d4baa3bbadc540a0ea298983740adaacc72acce54e3723d9c9fe370301da2f7ab9ba63ef" + } + ], + "purl": "pkg:npm/%40types/prop-types@15.7.5", + "type": "library", + "bom-ref": "pkg:npm/@types/prop-types@15.7.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "react-dom", + "version": "18.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "3963d64d4ad8fcd22b8ec00f900935c16f4b65e2234af917461725b053bc0997191823a0d86d18672e1fb7eacec98c72f01eee8b9899ce2f4e90379b67bfd048" + } + ], + "purl": "pkg:npm/%40types/react-dom@18.0.5", + "type": "framework", + "bom-ref": "pkg:npm/@types/react-dom@18.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "react-syntax-highlighter", + "version": "15.5.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "8bbc05b8b6c800595a6d3783d88d5c2e310eac6ff174c6bfae9c76cf0cc0a061ee5c90e14aaa7d0527c394c1d287d252b8d7f11e4f5e126317e83e791a2ca31a" + } + ], + "purl": "pkg:npm/%40types/react-syntax-highlighter@15.5.6", + "type": "framework", + "bom-ref": "pkg:npm/@types/react-syntax-highlighter@15.5.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "react-table", + "version": "7.7.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d151e9edf8d47f5b0b431b023f06a859f179c7821c07c341d429ea21cc1e713772b6a8a598139c35f5eec60ae3a42f50970fd1a2d47172ed3226d80be05941e" + } + ], + "purl": "pkg:npm/%40types/react-table@7.7.12", + "type": "framework", + "bom-ref": "pkg:npm/@types/react-table@7.7.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "react-transition-group", + "version": "4.4.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "8ee283fde892337ff1658ce3bb31fa670a4ffbf95e8e5b66892dd013357fbe66ff43cf877c39b1bbe05a81af1410c181a95f3c35b838976858fcad8393268b2c" + } + ], + "purl": "pkg:npm/%40types/react-transition-group@4.4.5", + "type": "framework", + "bom-ref": "pkg:npm/@types/react-transition-group@4.4.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "react", + "version": "18.0.15", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b3dc1b4bb88607d6e59db2feb05d8761a3386a8f6d280f8fc79360cd5c89f5905b26a7dc7c77d401e859cf85f91b85dd8f80438db7d435c7f79b9308df14ba3" + } + ], + "purl": "pkg:npm/%40types/react@18.0.15", + "type": "framework", + "bom-ref": "pkg:npm/@types/react@18.0.15", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "react", + "version": "18.0.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "76e17539301248142d722814be1ba24c1d586b73af4b2fb13910a211fdb41f43f4973c7efca795b00f7d5395232d749bca8d434490e52caa9378cd67828b2ab6" + } + ], + "purl": "pkg:npm/%40types/react@18.0.12", + "type": "framework", + "bom-ref": "pkg:npm/@types/react@18.0.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "scheduler", + "version": "0.16.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "869a501010e69708450172895f62a758b62ee7231f8bdd726b33dbda5fa56c98b05bec1da3580d79103edd180d48edfd5985f67ae7b2e35284c27a9eb14d897b" + } + ], + "purl": "pkg:npm/%40types/scheduler@0.16.2", + "type": "library", + "bom-ref": "pkg:npm/@types/scheduler@0.16.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "source-list-map", + "version": "0.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "2b92beca697c2d3a3d6d6248feb1027c83eb1a0c5da5e35b8fe779de5c0de108d6d4c0b09648549acfa0b5dce2813794c81af4f7ebbc070388637317bc775cb0" + } + ], + "purl": "pkg:npm/%40types/source-list-map@0.1.2", + "type": "library", + "bom-ref": "pkg:npm/@types/source-list-map@0.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "stack-utils", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e5db5f7f053e5f2c06b3e8d0e44ae8736accb8f5dc104bf0d276ee0c76080507ccdc5efeef7e5048df1a7b1449a499d0e40542366cf50d78cb6da7692761dc7" + } + ], + "purl": "pkg:npm/%40types/stack-utils@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/stack-utils@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "tapable", + "version": "1.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "d15069ad5a9f8050fb1216f6bddf0b87d4c6de33fdf20bebf2b81e850ab3ced64d23ba3ccd2f007788f266778a10ba61a6e136d760fc27bd0b9d23504b23ba6d" + } + ], + "purl": "pkg:npm/%40types/tapable@1.0.7", + "type": "library", + "bom-ref": "pkg:npm/@types/tapable@1.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "testing-library__jest-dom", + "version": "5.14.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a4f6f6977dbcdce7309723d79813d048e41347129e03dc55a382a044fde3c660494b00ff8abf105cb1d9307c856f7b3b3ad39a22c9dfd5ae98877b739e83e03" + } + ], + "purl": "pkg:npm/%40types/testing-library__jest-dom@5.14.1", + "type": "library", + "bom-ref": "pkg:npm/@types/testing-library__jest-dom@5.14.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "uglify-js", + "version": "3.13.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "10692b243e54cbe3e0d0d511f2e0386c9e5631f963c9a7741beefce2f2c2354903f90c0e25751b0581315df5467fb62dcb3750a772ff5cc61c96207df3b90be5" + } + ], + "purl": "pkg:npm/%40types/uglify-js@3.13.0", + "type": "library", + "bom-ref": "pkg:npm/@types/uglify-js@3.13.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "unist", + "version": "2.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c18c85316473ae8f4475e7fc6ec09623162f8a65d345ade86870286fe20e61bba685ae81ee7bc9b49413f43ce74ada72b36f0d1c815d66c2cf3e57f24070491" + } + ], + "purl": "pkg:npm/%40types/unist@2.0.6", + "type": "library", + "bom-ref": "pkg:npm/@types/unist@2.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "webpack-sources", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d79ffa1822905eb9c80fd442096ca436ff8666a6f465f9d96b15d5fbfbde12291515dc4bf2dc5b1f319637d7cbc68645944b930f86d38cdf0d7f84238039772" + } + ], + "purl": "pkg:npm/%40types/webpack-sources@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/@types/webpack-sources@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "webpack", + "version": "4.41.29", + "hashes": [ + { + "alg": "SHA-512", + "content": "ea92da391695359c620771521dbc8189633b41d6b301675ad73bc0ab849b64e6d9a874836d62e2eb688575b95579ae922bd7b2048569e721e12adff2350751ed" + } + ], + "purl": "pkg:npm/%40types/webpack@4.41.29", + "type": "library", + "bom-ref": "pkg:npm/@types/webpack@4.41.29", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "yargs-parser", + "version": "20.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "eed1489a080d78d05532c9f4bcbae99f51f5b8fad405d9c044f4e96688ad637ed9add2511337fb235ead32b94ade17a7df8f60af535887c0a66506bb0931ba03" + } + ], + "purl": "pkg:npm/%40types/yargs-parser@20.2.1", + "type": "library", + "bom-ref": "pkg:npm/@types/yargs-parser@20.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "yargs", + "version": "16.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "4fc61cf70b7fe4b6c9c8268b8873d17896b4900a5c22027b067ef7e468c8b547e1d3c675a49beef1066a6fdb3e98cbca57a59441157b2b6478e986e33174d327" + } + ], + "purl": "pkg:npm/%40types/yargs@16.0.4", + "type": "library", + "bom-ref": "pkg:npm/@types/yargs@16.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@typescript-eslint", + "name": "eslint-plugin", + "version": "5.27.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e9d33934a4f9ed976e36725fa58f353e17bd9dcf70a259cc0a79276f58a6e9bad68b5458bfce276cc4b7a2525adbb07afa2ad4555d57fd66fe026d058c974617" + } + ], + "purl": "pkg:npm/%40typescript-eslint/eslint-plugin@5.27.1", + "type": "library", + "bom-ref": "pkg:npm/@typescript-eslint/eslint-plugin@5.27.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@typescript-eslint", + "name": "parser", + "version": "5.27.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed56b664e9078b934ff806706f945e2e0345ea758b19379425fc5d9155003cf49a01d6d6367159ccb6781061a69a209383e03095b1352b25184c1825a2c48b1d" + } + ], + "purl": "pkg:npm/%40typescript-eslint/parser@5.27.1", + "type": "library", + "bom-ref": "pkg:npm/@typescript-eslint/parser@5.27.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@typescript-eslint", + "name": "scope-manager", + "version": "5.27.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "7d010e49afd0ae8584e9f00483e6c9c6d4592531fc353b24820c9ba201ede07f436bccdde1c2638bbea0039481951d0c82dc05eeb79bc536c3281e3d6140a902" + } + ], + "purl": "pkg:npm/%40typescript-eslint/scope-manager@5.27.1", + "type": "library", + "bom-ref": "pkg:npm/@typescript-eslint/scope-manager@5.27.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@typescript-eslint", + "name": "type-utils", + "version": "5.27.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f940b5bd55166831d19c2d9c42b089e10b558e98e30a08cd16983c6f4de71119a41eff4957d5f9335f43ed414c77efc6ed3fec805c17da91a658adfcaeacaf5f" + } + ], + "purl": "pkg:npm/%40typescript-eslint/type-utils@5.27.1", + "type": "library", + "bom-ref": "pkg:npm/@typescript-eslint/type-utils@5.27.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@typescript-eslint", + "name": "types", + "version": "5.27.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e0a203559018424d953f9bc5e01182162020fa9b87661036ca5c44826ea3977ca67144a7aaa6225740812bbfaeac768a512993e8e65df6ca636a89b6041ffc6" + } + ], + "purl": "pkg:npm/%40typescript-eslint/types@5.27.1", + "type": "library", + "bom-ref": "pkg:npm/@typescript-eslint/types@5.27.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@typescript-eslint", + "name": "typescript-estree", + "version": "5.27.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e766fbeadd3009e647be864d0b925bf1c18b275e945da9463981a552d03e2b68ab5bce73f3ef55091a73d31c4168d060f1a8b38b74c9249956634a9113d6117" + } + ], + "purl": "pkg:npm/%40typescript-eslint/typescript-estree@5.27.1", + "type": "library", + "bom-ref": "pkg:npm/@typescript-eslint/typescript-estree@5.27.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@typescript-eslint", + "name": "utils", + "version": "5.27.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "999f56127d592c3695ae145a620cdb9170644cf8213c5b2ea7ccc36dbb184f10b93a6aab144eec924292fecada56c2cfdd3713dca8b9092c841414642c7fc7ff" + } + ], + "purl": "pkg:npm/%40typescript-eslint/utils@5.27.1", + "type": "library", + "bom-ref": "pkg:npm/@typescript-eslint/utils@5.27.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@typescript-eslint", + "name": "visitor-keys", + "version": "5.27.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c58b3a7dfa34d6785d2603e27b293b1c03a98e14ecc7baffa01f4b5848700178309f7ded92bf96f032360a16e8aa16650b8ab74c2ea078360fa225fc44eab239" + } + ], + "purl": "pkg:npm/%40typescript-eslint/visitor-keys@5.27.1", + "type": "library", + "bom-ref": "pkg:npm/@typescript-eslint/visitor-keys@5.27.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@visx", + "name": "curve", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f5be893a7c7dd6098e42248f8543b176cbdc9d6f3c7e0a9f4cf2a856043189d32c0ff237c24b22c6dc28f1347fbed133d9a1f3cec104865bf5a8aed8df26920f" + } + ], + "purl": "pkg:npm/%40visx/curve@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/@visx/curve@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@visx", + "name": "group", + "version": "2.10.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0cd2435fbd5feb912dd7e52042f62565b13aea8c185007dcc53902f7a0dbe939f1576db554a2374f9976dd459b9cccf01413fd751dcf5948e3aa1845d76379a4" + } + ], + "purl": "pkg:npm/%40visx/group@2.10.0", + "type": "library", + "bom-ref": "pkg:npm/@visx/group@2.10.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@visx", + "name": "scale", + "version": "2.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "dda0f2486513a5ee95ca40d0985fa0da7cf9a5a16ef6248f4dc08e12091caeed3fbf9b661b351dbe2bf2f029186ebf3b1cdef757f25ce779469be90951070b07" + } + ], + "purl": "pkg:npm/%40visx/scale@2.2.2", + "type": "library", + "bom-ref": "pkg:npm/@visx/scale@2.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@visx", + "name": "shape", + "version": "2.12.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "e203747f21d6617889f8293c5406b35d7d22f133a72c9bce7398d90676890d5c609d221f0a3267d3e36ccbdea5f43cbf6c23138780c161406ff64f9820205438" + } + ], + "purl": "pkg:npm/%40visx/shape@2.12.2", + "type": "library", + "bom-ref": "pkg:npm/@visx/shape@2.12.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "ast", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ba4061d78a852e3c5340d4d7a1c77292c37941d336f12d42c47b76addb241722fec4557b56b7a6b812d56e609e3e3f9445a957044371ffd2e6ee59e18a1b424b" + } + ], + "purl": "pkg:npm/%40webassemblyjs/ast@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/ast@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "floating-point-hex-parser", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "88645fc9ce41abe36736e5fc6f987006b463cdfd2872b24f23a1961687411739859f2beb43cdd21ca8668a5094ffc26febb8b818964132113396dc7370d6a0b5" + } + ], + "purl": "pkg:npm/%40webassemblyjs/floating-point-hex-parser@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/floating-point-hex-parser@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "helper-api-error", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "465852f020425df45447f730a36868f5b9217925c6d3e370a285dc7373c020b00b7f640b745ca3eca1ac2916d573de61667867111a27e245bf0f7499a69e9372" + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-api-error@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/helper-api-error@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "helper-buffer", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "8308a417ae5a0cd79e5daf09c576b604093e4448d2ca1acd0bd670753d1ff2373875041e0d0ec6e26d1fd9008b3c988c4d33bac1f0e64668ffa56d0fb14bc870" + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-buffer@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/helper-buffer@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "helper-numbers", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc391bc6207ccdf9cf74d2bd45a8dc7b2e42d30f9026e804825374a1ffa498ef25ee50dbefb02794a61017b69aad9b82aeffa5d14bea2feebc8120ebde4f4b3d" + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-numbers@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/helper-numbers@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "helper-wasm-bytecode", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "3efa68386889c17793ad27ffa9fb9d261c25bc34311607a56ccaadab9d965a25c2e97820d484447678263cdddbb384683bcdcf9cbfe716bc6e7178f5f815fad9" + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-wasm-bytecode@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/helper-wasm-bytecode@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "helper-wasm-section", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "d743fd368dbdad85f58fb1771153d7dc9bc63d03da7be0289ae4933e217d78141e0a11c8ea2aa3308c11f4998e257c299e7fe85460e4ec8e4896c92e33053fa6" + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-wasm-section@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/helper-wasm-section@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "ieee754", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "849f3b4083ed00c29b16ae821939196098af1306436d052061ddea29269d4cd3a1558ee9fa07cfe92af494b4554da1b5263163fabdd8721a2a458c4d1f733419" + } + ], + "purl": "pkg:npm/%40webassemblyjs/ieee754@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/ieee754@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "leb128", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "049d8fd21359d2ef938756195c9a735ba9a2c2a41419c2074f51bfb1fef680b543f4367901d613a8f35b1d987a2b53395662af157c064966400f3faa056c5e47" + } + ], + "purl": "pkg:npm/%40webassemblyjs/leb128@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/leb128@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "utf8", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f64a9cc4011d3218b04241e990d8a8ad9ceaa46ae8750436206ac71f10b2f8ece7834a1fc8c034953aa22e456cd6ecd345e8d7fbf3b410e4fb2b1a953ee5e8b1" + } + ], + "purl": "pkg:npm/%40webassemblyjs/utf8@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/utf8@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "wasm-edit", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "83e46cba9502d5a4c77d1f020e09ec551559149a9d9051e9b0731f26e590cd6537b6f9cb0b4ed4a872027cffb85f22f6b67af56a6be5d52769d3a4e760299590" + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-edit@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/wasm-edit@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "wasm-gen", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "17b42a297c30365326b2e963ebe3bbaf89a6b4094259f3bfd077603b14a49597d0703bb44e92e20f5991b7fcc5db9064e7d1488c4b86008ca7e5e8b8c8c7cb84" + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-gen@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/wasm-gen@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "wasm-opt", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "56a9e436a9d9954e4407ae29a7597b85d9b7866430ed582a6b4285fca08d3bdb08a48e8593a6eb0c4897fa208e62bbccb81583c2cd0d9133b16046fce574071f" + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-opt@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/wasm-opt@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "wasm-parser", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "aeb06e8f0f9d26edf681807bfcbba9e9485d90fc7d4bd4a7a1b6734552fb55c047f41b7d6c204b12e5ff61738eb41b0e678350ad1ca42a17df4561ef8a042f38" + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-parser@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/wasm-parser@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "wast-printer", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2106e851633878acd65be37f8e28f6b116ad28c87df5011e968dc46f6ab4a9792f3d1212023f10c6d9b0e62b70a8af934e406e508138e40c583d3a2a3ed2f982" + } + ], + "purl": "pkg:npm/%40webassemblyjs/wast-printer@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/wast-printer@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webpack-cli", + "name": "configtest", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e0507c4e3eb1c95932aa38f539a4ea0a35d850b07d14c92a43cc86ad98d10eb621d27384fbb2e1b38e568a859040c57e71e165137ebc52485eeb176f24cf4482" + } + ], + "purl": "pkg:npm/%40webpack-cli/configtest@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/@webpack-cli/configtest@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webpack-cli", + "name": "info", + "version": "1.5.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7bcb525d9a70da13e5dae30963a7ec32cc1aa24e4576518d45392dbc5936b03f118c7d21136f978acb5ac09c75be62ad7a1e0d98698d52ba7e4dbdb0fae74f71" + } + ], + "purl": "pkg:npm/%40webpack-cli/info@1.5.0", + "type": "library", + "bom-ref": "pkg:npm/@webpack-cli/info@1.5.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webpack-cli", + "name": "serve", + "version": "1.7.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a319c23468fcf1f2fec7357e75a717b38e07703c1fd68becdc0b84cef3fb9aa5f0edf427b6a2214350519b29e1e2a10a412492452595c974639936d9217f55d9" + } + ], + "purl": "pkg:npm/%40webpack-cli/serve@1.7.0", + "type": "library", + "bom-ref": "pkg:npm/@webpack-cli/serve@1.7.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@xtuc", + "name": "ieee754", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d7f272a0a9c1b0b1cd1e252a98b799703f80c7e459479e6b96581472ed7d0d71a191d19b6ec9e11280cc1361512dc66b0d198faa8ade10613fcc2184ce4cf78" + } + ], + "purl": "pkg:npm/%40xtuc/ieee754@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/@xtuc/ieee754@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@xtuc", + "name": "long", + "version": "4.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "36e1ea058d4f07f0fcc54eacfed84180e02200fec73980d0df6f8115920b27c8af9149001d09d67e7e9684befd3b08f5aa6527a0dfd83e192d748a2e722a6401" + } + ], + "purl": "pkg:npm/%40xtuc/long@4.2.2", + "type": "library", + "bom-ref": "pkg:npm/@xtuc/long@4.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@zag-js", + "name": "element-size", + "version": "0.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "405f30a74f95f3efb3f851d7888c3ddfecee76db9b62ccceb586cd80adfd7e0de98be9c266db929b82f58c2e5064c6ad359f3731f3b3c8d09f814b9b6a96a025" + } + ], + "purl": "pkg:npm/%40zag-js/element-size@0.1.0", + "type": "library", + "bom-ref": "pkg:npm/@zag-js/element-size@0.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@zag-js", + "name": "focus-visible", + "version": "0.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3de68171399d6567057fb9f568cfa888e75973eb32d78aa2d1e98f21e52e18c4e36cfd312c6ad9bb8de47691e75925f2effaf851ba7fbe5839d0c095f3ef48b2" + } + ], + "purl": "pkg:npm/%40zag-js/focus-visible@0.1.0", + "type": "library", + "bom-ref": "pkg:npm/@zag-js/focus-visible@0.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "abab", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "f482bd11a76c6c7a3a8cb588a71a51ea92f4b1acd35d5ebe490bf6e5907e17b063f6624d68e7389c245a6f077933f2709946bc89dcfa11c8ba78a7c9af23ece9" + } + ], + "purl": "pkg:npm/abab@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/abab@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "acorn-globals", + "version": "6.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "65097b2ce59a17978faaa717e212eebff6cb5d840d7cd5b0d9cd3fc97fd3b0f44a6a6cc77131909e50a31d3dd3b2690e51510f4b772b0b188f7ddcc4fd3ae586" + } + ], + "purl": "pkg:npm/acorn-globals@6.0.0", + "type": "library", + "bom-ref": "pkg:npm/acorn-globals@6.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "acorn-import-assertions", + "version": "1.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9bb559de3c33e1e2ba03856db7c130d7f98d6cfdb8bb41617727c0edf4af9c947a2cc75f3989e6b88aeb24082b61f609d7417fa2d6874edaedaed98774c37313" + } + ], + "purl": "pkg:npm/acorn-import-assertions@1.8.0", + "type": "library", + "bom-ref": "pkg:npm/acorn-import-assertions@1.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "acorn-jsx", + "version": "5.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "aeaf6cf893617f4202863b435f196527b838d68664e52957b69d0b1f0c80e5c7a3c27eef2a62a9e293eb8ba60478fbf63d4eb9b00b1e81b5ed2229e60c50d781" + } + ], + "purl": "pkg:npm/acorn-jsx@5.3.2", + "type": "library", + "bom-ref": "pkg:npm/acorn-jsx@5.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "acorn-walk", + "version": "7.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "38f74217a1ac3083fe033f9a59f000384b76ffe8950ca13ba32ea5274f7c6a87b9f680262bbeaa57a1b0eb449b67c8c7b86db01f4e7c185e292c56d86a662b54" + } + ], + "purl": "pkg:npm/acorn-walk@7.2.0", + "type": "library", + "bom-ref": "pkg:npm/acorn-walk@7.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "acorn", + "version": "7.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9d0ca9d28d7f98d75b4ced4f3ba9079304ab9a0674313fe3082a4d8b06d48c6a11378765061a89b6842e0a710e2b3813570834656882a10cba4b131e6d0561f0" + } + ], + "purl": "pkg:npm/acorn@7.4.1", + "type": "library", + "bom-ref": "pkg:npm/acorn@7.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "acorn", + "version": "8.7.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f1e78b8b250675f652b28055ce5acb1c2946ec0595b408fca43e155076121e230adb3e6273a9e0120c89dcf272819e9fc94fa8a04ecf36a8f5f3d3af47f08fc" + } + ], + "purl": "pkg:npm/acorn@8.7.1", + "type": "library", + "bom-ref": "pkg:npm/acorn@8.7.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "agent-base", + "version": "6.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "45937035c945efe312ffc6c383bd1a9a0df6772799199c620ee42667128b025423af78c6c8bc7ee0a924e7c50eec3d90760148402a2fb92b991129dee911ba5d" + } + ], + "purl": "pkg:npm/agent-base@6.0.2", + "type": "library", + "bom-ref": "pkg:npm/agent-base@6.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "aggregate-error", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e08ed3774d6ab96fd1a6871f35ac85745564d6a4aea21d04ec9adb449d7a9c7d351e128543cf0836af5277e9ddef6cea4724a5afd0660c0f3194427abc932b60" + } + ], + "purl": "pkg:npm/aggregate-error@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/aggregate-error@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ajv-formats", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5b1d0ac79da1c44ec2d7c8643048206251227ea599b58691828b89a2bf9631d3e743210ad77be0116c9536ea7b4a879ea0b32caf891fe61e9d396d75235e4c50" + } + ], + "purl": "pkg:npm/ajv-formats@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/ajv-formats@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ajv-keywords", + "version": "3.5.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "e69e964cdd03753195424e958dc123bb5f4881a1ee75a95c7da6c3ef284319e03a6dc42798bf82a6f78b26aff786f7f07756a87fa2f7f3a3ae824c7a45fc8c21" + } + ], + "purl": "pkg:npm/ajv-keywords@3.5.2", + "type": "library", + "bom-ref": "pkg:npm/ajv-keywords@3.5.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ajv-keywords", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6024bf24d140532af9bc0ba19350d69b5081c511d6f4b6c9da8cd679e9ab22aa5bb2a2a31d5c583f28b9182d2b8d9213e49c49def8ab5534bcc24e22fd9fa4af" + } + ], + "purl": "pkg:npm/ajv-keywords@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/ajv-keywords@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ajv", + "version": "6.12.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "8f77d52e0bd3a39dbb6a7c98c893864d825b1bebe79d062f1349b99a691cd532be9f1029a6408b3082f4699e1d6e55423681928619be933138654ca4068320e2" + } + ], + "purl": "pkg:npm/ajv@6.12.6", + "type": "library", + "bom-ref": "pkg:npm/ajv@6.12.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ajv", + "version": "8.11.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c06829add0af31a942d01ced5ef8ad0f6842d3861f7c0bedb149fddc96c65d82c0b4250ee31775ee6082650c54388b6207066f252716a3c348bd0310ef5adda6" + } + ], + "purl": "pkg:npm/ajv@8.11.0", + "type": "library", + "bom-ref": "pkg:npm/ajv@8.11.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ajv", + "version": "8.6.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "727506e0d48188ce18141c606488ff227dffe8a5fead0da5d983d155cbc031019610f2ae5e83c8871cf0aa1df58c0dc83db238a843a9ff920b238ca78a85ec19" + } + ], + "purl": "pkg:npm/ajv@8.6.0", + "type": "library", + "bom-ref": "pkg:npm/ajv@8.6.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ansi-escapes", + "version": "4.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "80a5e3e402eb29640bb181bd8e54d1991ff12a5bb11d5f99f501303488027ccd7fbb03cc0aecd55678799b04ddf8eb8165cc1220c6eab2c356466d65139d5069" + } + ], + "purl": "pkg:npm/ansi-escapes@4.3.2", + "type": "library", + "bom-ref": "pkg:npm/ansi-escapes@4.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ansi-regex", + "version": "5.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "aae2505e54d25062f62c7f52517a3c570b18e2ca1a9e1828e8b3529bce04d4b05c13cb373b4c29762473c91f73fd9649325316bf7eea38e6fda5d26531410a15" + } + ], + "purl": "pkg:npm/ansi-regex@5.0.1", + "type": "library", + "bom-ref": "pkg:npm/ansi-regex@5.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ansi-styles", + "version": "3.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "553d1923a91945d4e1f18c89c3748c6d89bfbbe36a7ec03112958ed0f7fdb2af3f7bde16c713a93cac7d151d459720ad3950cd390fbc9ed96a17189173eaf9a8" + } + ], + "purl": "pkg:npm/ansi-styles@3.2.1", + "type": "library", + "bom-ref": "pkg:npm/ansi-styles@3.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ansi-styles", + "version": "4.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "cdb07dac22404f5adb8e25436f686a2851cd60bc60b64f0d511c59dc86700f717a36dc5b5d94029e74a2d4b931f880e885d3e5169db6db05402c885e64941212" + } + ], + "purl": "pkg:npm/ansi-styles@4.3.0", + "type": "library", + "bom-ref": "pkg:npm/ansi-styles@4.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ansi-styles", + "version": "5.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0b1c29b7649f4f34ed5dc7ce97318479ef0ef9cf8c994806acd8817179ee5b1b852477ba6b91f3eeac21c1ee4e81a498234209be42ea597d40486f9c24e90488" + } + ], + "purl": "pkg:npm/ansi-styles@5.2.0", + "type": "library", + "bom-ref": "pkg:npm/ansi-styles@5.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "anymatch", + "version": "3.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "3f8dde3df38022ea6482e1d4c9cadce2a27d933f198ae3948a36844f05fb4c7b7463f18d2bbbf469af2b63cd7ac568d9eeb25d0395dd31ca5515328cabe46f5a" + } + ], + "purl": "pkg:npm/anymatch@3.1.2", + "type": "library", + "bom-ref": "pkg:npm/anymatch@3.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "argparse", + "version": "1.0.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "a39468cbab4d1b848bfc53a408037a4738e26a4652db944b605adc32db49a9b75df015ab9c0f9f1b3e7b88de4f6f4ea9bc11af979810d01e3c74996c957be84e" + } + ], + "purl": "pkg:npm/argparse@1.0.10", + "type": "library", + "bom-ref": "pkg:npm/argparse@1.0.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "argparse", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f3ef56a9e6db173a57f4e47e59ae8edbd6ac22881e44ccdc1ad00835da4c1c7c80835d1fd3969215505b704a867ff3d7c35123019faadbf6c4060dc3beeacadd" + } + ], + "purl": "pkg:npm/argparse@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/argparse@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "aria-hidden", + "version": "1.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5c2f12132ded8761ad5c9d89f00a390e3b53ea507429a3307cc7d011d0e816376c283818b99120d5c4a7ddd1beec6f5870e6a15e2615e6f47d67bb7c527cb79" + } + ], + "purl": "pkg:npm/aria-hidden@1.2.3", + "type": "library", + "bom-ref": "pkg:npm/aria-hidden@1.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "aria-query", + "version": "4.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "a3f1de97086e2a94e3fdfaec3ac6cd2cd82734654816c54ffd25b6052175e20565ee401f30e27affcc14014bc6d51d4d1caadf1bedac1d94eed326ae4f5a81ac" + } + ], + "purl": "pkg:npm/aria-query@4.2.2", + "type": "library", + "bom-ref": "pkg:npm/aria-query@4.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "aria-query", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "57e48cec06d4c09f8406707cf835ecd213d91ced16ea9a8171cd1d5bdd0ec2d546d363ecc0ebbfb5eb804682d08dd0ce1feb7da498069d6e7f426a2e7f780f26" + } + ], + "purl": "pkg:npm/aria-query@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/aria-query@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array-buffer-byte-length", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2cfbb06f63fe36b430dd787119cdfaf974afb813e8a68bd761347d130fbe0eef586ff6f1e40cc17eb22c0688f41195227e3414fac1cbdb5b2c799de37ab58efc" + } + ], + "purl": "pkg:npm/array-buffer-byte-length@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/array-buffer-byte-length@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array-includes", + "version": "3.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "81c7a6d4a94153b73dac1f91abcff73cf2ac2b6923a9e1016b76c3e64910a389d894e1d0089a88245a815c311fc1a46e6134f813e17103dc5ecfb19ffdedd0ec" + } + ], + "purl": "pkg:npm/array-includes@3.1.3", + "type": "library", + "bom-ref": "pkg:npm/array-includes@3.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array-includes", + "version": "3.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "8920d864c3324cf92215ab15a9fb8042758061cbcefd278148218a78fa04b618e9e0b10c4dee2e2dcedbd36e68e23019a47862861f313e8f7d4cd5945969060d" + } + ], + "purl": "pkg:npm/array-includes@3.1.5", + "type": "library", + "bom-ref": "pkg:npm/array-includes@3.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array-includes", + "version": "3.1.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "b204db2ef2fa70d9f0db81676da0f28e6bdd750d8c2fc6ab66c81a261a0004ca29973ff841186dad84be6a5af5054335070a7a761c7cbd508148b1be4adc0e17" + } + ], + "purl": "pkg:npm/array-includes@3.1.6", + "type": "library", + "bom-ref": "pkg:npm/array-includes@3.1.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array-union", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a34410e4f4e3da23dea375be5be70f24778ec39" + } + ], + "purl": "pkg:npm/array-union@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/array-union@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array-union", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1c6cb1a0e4d853208ceacb547ba1098277781287b0008ef331d7ea3be9068e79599810f3fdc479a5ff2bfdc4785aaeb4b0bfe9d0891c8d41043f04b7185ac8cb" + } + ], + "purl": "pkg:npm/array-union@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/array-union@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array-uniq", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "af6ac877a25cc7f74e058894753858dfdb24fdb6" + } + ], + "purl": "pkg:npm/array-uniq@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/array-uniq@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array.prototype.flat", + "version": "1.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae84d4d0a5883a62780d12e6c0a775f4eb60d3f993dea3cdb7441bdc6596f2239bb995f1ae307fa739f447786aa514968381c2c2ac7ed2fc0e9d69ef94ec9e20" + } + ], + "purl": "pkg:npm/array.prototype.flat@1.3.1", + "type": "library", + "bom-ref": "pkg:npm/array.prototype.flat@1.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array.prototype.flatmap", + "version": "1.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d90bdffc4ca008c5c58a77279befb13350b1cfac85ffb4865e6cb25440e311d4ec18a2c4fcca081d7d649c7d30420e3e6eb4e36f3ae3d042e998b14d942db92" + } + ], + "purl": "pkg:npm/array.prototype.flatmap@1.3.0", + "type": "library", + "bom-ref": "pkg:npm/array.prototype.flatmap@1.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array.prototype.flatmap", + "version": "1.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f141a7f4ed450d5bcc341d1494bbf8be8c513337bbf85a47c85e6648c46358750c969a035629e2cb4e7cef4565c617e04e72dba6ec13cef0fbe8c4ed5b107f99" + } + ], + "purl": "pkg:npm/array.prototype.flatmap@1.3.1", + "type": "library", + "bom-ref": "pkg:npm/array.prototype.flatmap@1.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "arrify", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "898508da2226f380df904728456849c1501a4b0d" + } + ], + "purl": "pkg:npm/arrify@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/arrify@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "asap", + "version": "2.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "0521d680348088ab39d28d917bca69be9dec7951d7491338e1c752b13f457cd1145192ce196542b2259a44f58cd599e7fa6a99d4e7d5677cf70d61334a9ee144" + } + ], + "purl": "pkg:npm/asap@2.0.6", + "type": "library", + "bom-ref": "pkg:npm/asap@2.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ast-types-flow", + "version": "0.0.7", + "hashes": [ + { + "alg": "SHA-1", + "content": "f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" + } + ], + "purl": "pkg:npm/ast-types-flow@0.0.7", + "type": "library", + "bom-ref": "pkg:npm/ast-types-flow@0.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "astral-regex", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "67bb4cc35cad4d7b798ea31c38ff8e42d794d55b8d2bd634daeb89b4a4354afebd8d740a2a0e5c89b2f0189a30f32cd93fe780735f0498b18f6a5d1ba77eabbd" + } + ], + "purl": "pkg:npm/astral-regex@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/astral-regex@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "asynckit", + "version": "0.4.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + } + ], + "purl": "pkg:npm/asynckit@0.4.0", + "type": "library", + "bom-ref": "pkg:npm/asynckit@0.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "atob", + "version": "2.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "5a6eae92868e1898bfef7a7f725d86bcb8d323924cd64fced788ac0fbdd830bf12b6b1ffeff9511609a0f272026600f76d966f8f0086c6d30e0f7c16340bbc72" + } + ], + "purl": "pkg:npm/atob@2.1.2", + "type": "library", + "bom-ref": "pkg:npm/atob@2.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "available-typed-arrays", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "0cc0f42a2378e9e8a97b38924f52cf3ff4937c3534b2e7c84979a34a0bd5b28536b6ac5cb5078049e8d671f36dc582aa11333553143cb29d8ead2056a4763ab3" + } + ], + "purl": "pkg:npm/available-typed-arrays@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/available-typed-arrays@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "axe-core", + "version": "4.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d501a1a9ff092481825c8e61eca0ac788ee4f5690bc9c8f716d3d30b0a355387757671ce8f9f27a6a622cc347e6231d7c85ffcdd6e3531d8a0e330b09374f78" + } + ], + "purl": "pkg:npm/axe-core@4.4.2", + "type": "library", + "bom-ref": "pkg:npm/axe-core@4.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "axios", + "version": "1.6.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "bdf066843a4a69f82587412574111b56ea1eec3c806af1922d686e4a6e594842909c78417f4c40030c9b6cd1f5224ac93469d2fd51b8239cb18a0d690845c4e2" + } + ], + "purl": "pkg:npm/axios@1.6.1", + "type": "library", + "bom-ref": "pkg:npm/axios@1.6.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "axobject-query", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4dde76e67fa23ce3b251021e05f7004ae1bab89b033884e5ecc76ce601727ab916897eea8544dd6140654a034cc95aad489ab0a6dd645c62dd52de92ca42cc44" + } + ], + "purl": "pkg:npm/axobject-query@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/axobject-query@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-jest", + "version": "27.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "4a3205f2187f8abd2979a7b60fa4ba64a461532eeafc39e91fb93f57a7d3e0182cfcb5d7533b4ea57e06dad0a0abc98ba391c0f6637a36694531e62d2a622c4d" + } + ], + "purl": "pkg:npm/babel-jest@27.3.1", + "type": "library", + "bom-ref": "pkg:npm/babel-jest@27.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-jest", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "71d4397578c645dd08051013890e2664694695113c909a633ce8b174d45d4fe9b751c36a99858deab2ba9efb5761f6370fbe9c6fcb3f3b54acf1e6b6e0f23072" + } + ], + "purl": "pkg:npm/babel-jest@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/babel-jest@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-loader", + "version": "9.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "98dd789e25d6e37b5d76884697c1cfbb9c9f42aef48944e1bc52ffe10cc4480ec6719a02d1e54e86f59d43cfb75254a368313d315b6c5bd9b10d8d3b5bb56954" + } + ], + "purl": "pkg:npm/babel-loader@9.1.2", + "type": "library", + "bom-ref": "pkg:npm/babel-loader@9.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-plugin-dynamic-import-node", + "version": "2.3.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d9548facf5983722a03f91d8b48ba5030b26d423769204b9e096161b4928ca955ef217517fe4b5aff0c6a4426bd8a676c90d2e9f7012f62b31d2c4d08cb5649" + } + ], + "purl": "pkg:npm/babel-plugin-dynamic-import-node@2.3.3", + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-dynamic-import-node@2.3.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-plugin-istanbul", + "version": "6.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "635210a24f7cdb5702f689c2c79a2d8057d19bb2e6f88fb0c313b1ef7f0cfd62cf67d438da6e081b95b414d5fc58b2f6818319a37264b97207d833a958cfaac0" + } + ], + "purl": "pkg:npm/babel-plugin-istanbul@6.1.1", + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-istanbul@6.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-plugin-jest-hoist", + "version": "27.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4cebb1f6484d29d8bae265bed0e2217266c09fbe6d4e5cca8719a23577af41a3dbac160aed82a33f58e5e8d1d327a5d1e54814ac96c29d694a567267dbd75f8f" + } + ], + "purl": "pkg:npm/babel-plugin-jest-hoist@27.2.0", + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-jest-hoist@27.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-plugin-jest-hoist", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e74c02c03e4430d5b8691a4ec2dab3c991c87b04d83712c0e27841fb4f5df0122cb1f35fcc146190120789a3efd528b6dba4d04afa7c8310099b6898daab3685" + } + ], + "purl": "pkg:npm/babel-plugin-jest-hoist@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-jest-hoist@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-plugin-macros", + "version": "2.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4843f9909a5f198a982a906b8f95d4dda870e69e46387274539b2c39243f58155dc240f60f395c7bde5ec504ecde339558f3ca2c1376ae51169022bb75298bbe" + } + ], + "purl": "pkg:npm/babel-plugin-macros@2.8.0", + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-macros@2.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-plugin-polyfill-corejs2", + "version": "0.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "3436746ae351ce601f135a030cf5b6261cc8317524f8515ed8809e8e6b794f8a1c2a0890c777b4542471f4d08089d70cb4bd91519696b579e68d30a4c74b5c6c" + } + ], + "purl": "pkg:npm/babel-plugin-polyfill-corejs2@0.2.3", + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-polyfill-corejs2@0.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-plugin-polyfill-corejs3", + "version": "0.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "24bc22f6f96855d5cb8f30022fcd23db86c6ebf4f5818c70a301b8e1d83a1cdffb6933ddc8f6c926275fe9a8e803744f1c7b56d23f4a32b48e2e9219a409cfa6" + } + ], + "purl": "pkg:npm/babel-plugin-polyfill-corejs3@0.3.0", + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-polyfill-corejs3@0.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-plugin-polyfill-regenerator", + "version": "0.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "25513bf284593ca148794a851ab48e44dcd09eb0f0651d7aa2259e18cf19ca3067d97013e4e8cffb05f1e444aea37de752c154109623b64967b0a6f15b92feee" + } + ], + "purl": "pkg:npm/babel-plugin-polyfill-regenerator@0.2.3", + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-polyfill-regenerator@0.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-preset-current-node-syntax", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "33b2d0d1bc5aae4c50a0dfafcf96893ec2c19fbee7f10813166a3c58ad3fe386ae2b6c65097ad8714c47171814eea5b9633c3f0a398b44adae27368277b2efa9" + } + ], + "purl": "pkg:npm/babel-preset-current-node-syntax@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/babel-preset-current-node-syntax@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-preset-jest", + "version": "27.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "cfb320437a5e0703792f9682a812a717a8aa765bd9bc5510ca7121bb427e5fd9c72d4ef68cede2637df595c62b83e02cb09f2aef1b2fe7fdc0202cd5989ff0be" + } + ], + "purl": "pkg:npm/babel-preset-jest@27.2.0", + "type": "library", + "bom-ref": "pkg:npm/babel-preset-jest@27.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-preset-jest", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "369b5fd85ce53c2598b89838d4706a5d54fcca6e9b5ce7afb824db871954a63c2dcac19a21616f0c48e9e32f86edf975dc580e763b3b3ff0e612ba87edd6b402" + } + ], + "purl": "pkg:npm/babel-preset-jest@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/babel-preset-jest@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "bail", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "d313ba99877b241d987acc432a995a7d1a6c88eccfb7d574d9d74f08b6d8d716063ce5f6e0d4f2379d2a9d4c6008f712a183212a902e0538d0a1164202450347" + } + ], + "purl": "pkg:npm/bail@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/bail@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "balanced-match", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "de849e50ed13315ebb84dd4099b5ec2b8c9aa94eed8e21e56f144364ea47d0a5bdf82797e1b440697d009f1b74b71d8cae94695b041a3f02252121098585393f" + } + ], + "purl": "pkg:npm/balanced-match@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/balanced-match@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "balanced-match", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d6e8144abf011d74672b6dca7ee612fa054c0b72c1f10187f56d621ad0cfb0d5a841b82d5d2131901bb66834787a98865993a366c8fa94397f37f02aa930b750" + } + ], + "purl": "pkg:npm/balanced-match@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/balanced-match@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "base16", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a4d75890d3e22549c48677d7579ebeb10cbcf8068f706dcf3990149f0af811ea82519173e2ed8f78f6e8ddee468f8ce260f096194653f511e2b2f24a9f016e05" + } + ], + "purl": "pkg:npm/base16@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/base16@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "big-integer", + "version": "1.6.51", + "hashes": [ + { + "alg": "SHA-512", + "content": "18f12277663d414d44c65d6ba4ef41d883c91873d2ba91791a75483f46e562f34e31eaf66d3bd25acd6318e520d388539aeebb9e62ec43d4c1a35a6e6a8b411e" + } + ], + "purl": "pkg:npm/big-integer@1.6.51", + "type": "library", + "bom-ref": "pkg:npm/big-integer@1.6.51", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "big.js", + "version": "5.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf22f63b2989c666ab3bc83132bd2684286c3bd406c21ca77eebb8f8c1d3016e9ccdfabd86e98207bacaa548c377d6148833d4e26ce9caea454af382940c1b99" + } + ], + "purl": "pkg:npm/big.js@5.2.2", + "type": "library", + "bom-ref": "pkg:npm/big.js@5.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "boolbase", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + } + ], + "purl": "pkg:npm/boolbase@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/boolbase@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "bootstrap-3-typeahead", + "version": "4.0.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "cb1c969044856862096fc8c71cc21b3acbb50412" + } + ], + "purl": "pkg:npm/bootstrap-3-typeahead@4.0.2", + "type": "library", + "bom-ref": "pkg:npm/bootstrap-3-typeahead@4.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "bootstrap", + "version": "3.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c8de686559910b07b968ac33463ebbdfa9d298a0d7ee92d8c2c5e20a3fc4626a35ea1383681893e049f96ed5bf8e1045fec795f97331dda630ba4602dc0e3d0c" + } + ], + "purl": "pkg:npm/bootstrap@3.4.1", + "type": "library", + "bom-ref": "pkg:npm/bootstrap@3.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "brace-expansion", + "version": "1.1.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "882b8f1c3160ac75fb1f6bc423fe71a73d3bcd21c1d344e9ba0aa1998b5598c3bae75f260ae44ca0e60595d101974835f3bb9fa3375a1e058a71815beb5a8688" + } + ], + "purl": "pkg:npm/brace-expansion@1.1.11", + "type": "library", + "bom-ref": "pkg:npm/brace-expansion@1.1.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "brace-expansion", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e7008bd0f1e33e902e9a50bc7ac2e422c15b27cec8bd7775b1cd5dc5a564c6035f45eb6d64c1d6ec01c14a5e02941d95accbe998ea22f5b074f1584142cad0c" + } + ], + "purl": "pkg:npm/brace-expansion@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/brace-expansion@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "braces", + "version": "3.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "6fcba6f8bd51cccdd60d2cef866ea0233d727d36c1b7a61395c10a02fb26a82659170e3acfadba9558fd8f5c843d6df71f91fe94142964c3f593c97eefc1dad0" + } + ], + "purl": "pkg:npm/braces@3.0.2", + "type": "library", + "bom-ref": "pkg:npm/braces@3.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "broadcast-channel", + "version": "3.7.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "70800a25703118971e359193652073331cf23a7ef671580f9cac7875ce8b4634206da25442a872e6bccbdf36ccc64316b062a4bf68521643d13045dfa0c67632" + } + ], + "purl": "pkg:npm/broadcast-channel@3.7.0", + "type": "library", + "bom-ref": "pkg:npm/broadcast-channel@3.7.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "browser-process-hrtime", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f68e5479c2371a192933a0eb5ebebd3db948b96c4f2a4f58d231c1461768719db2ed81020450ac1e6efd3ebdcec91d80be384391a6c525a0c931845acc782ca3" + } + ], + "purl": "pkg:npm/browser-process-hrtime@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/browser-process-hrtime@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "browserslist", + "version": "4.20.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "a24d5dfb55a99d4db85d837ba02dd05a04f232163f6af3c9febf53d34c71bd4388a5aac0fe073e50f50c6a87778be1bab3e9c8da751bf7167993bf78b88c1287" + } + ], + "purl": "pkg:npm/browserslist@4.20.4", + "type": "library", + "bom-ref": "pkg:npm/browserslist@4.20.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "bser", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "810c53344fc601f208ae61cb504de8272a7914ee874417e18e7c38ff032603add91832675819a063f972401a670d490698085b49edfdb71d9dfe24ce01f825c1" + } + ], + "purl": "pkg:npm/bser@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/bser@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "buffer-from", + "version": "1.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "13e5d0091c126da6a20a1b6fea4e83c2073e6f1f81b3abee2891c7979928c7f05a29b8625f3a903b02b870edb6c84946a763829a3c15853dc79b18323c69c97d" + } + ], + "purl": "pkg:npm/buffer-from@1.1.2", + "type": "library", + "bom-ref": "pkg:npm/buffer-from@1.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cacache", + "version": "15.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b8aa094879a7aea5e0b610c5c7f214e840ffe7177e34d19ef816fe90b672ecabb83fe05a8961147e500a3d9ede033b1819cb0018048966cc9b5e9faab847074f" + } + ], + "purl": "pkg:npm/cacache@15.2.0", + "type": "library", + "bom-ref": "pkg:npm/cacache@15.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "call-bind", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "ecef856c28a1ac1e5619b1587ac72dc264ca69eeab3a22339b3d6272b79627ed1a03b2c97eeaa112ca364fd9dca5c16dccc42dcd77f64061ae7962464d8b2aac" + } + ], + "purl": "pkg:npm/call-bind@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/call-bind@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "call-me-maybe", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "26d208ea89e37b5cbde60250a15f031c16a4d66b" + } + ], + "purl": "pkg:npm/call-me-maybe@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/call-me-maybe@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "callsites", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3fc06302c5ef652f95203508d7584709012fef8613ebb6148b924914d588a8bdb7e6c0668d7e3eab1f4cbaf96ce62bf234435cb71e3ac502d0dda4ee13bb2c69" + } + ], + "purl": "pkg:npm/callsites@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/callsites@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "camelcase-keys", + "version": "7.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa542510280397912ffa092f38d6a20f85f84c5da0c992ae2c1bf3c74ccba365300319b3de124fffce3569a3074de1f54fbbf91d1c2846af7575aba55e8616be" + } + ], + "purl": "pkg:npm/camelcase-keys@7.0.0", + "type": "library", + "bom-ref": "pkg:npm/camelcase-keys@7.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "camelcase", + "version": "5.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f6f124c1d7bd27c164badd48ed944384ddd95d400a5a257664388d6e3057f37f7ad1b8f7a01da1deb3279ef98c50f96e92bd10d057a52b74e751891d79df026" + } + ], + "purl": "pkg:npm/camelcase@5.3.1", + "type": "library", + "bom-ref": "pkg:npm/camelcase@5.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "camelcase", + "version": "6.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "73bc15bdbc377f7ee7ba86d036d82c806f4f382f6a31b36e3109930aa66fdb76fa308cf47dc6290623a5bfd80437f85d2dd9d94c342183a7bd0eae4cd6f2af7e" + } + ], + "purl": "pkg:npm/camelcase@6.2.0", + "type": "library", + "bom-ref": "pkg:npm/camelcase@6.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "caniuse-api", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6ec4f0b8883f05964afefade5536186d25a87b617eef53fb2b9406117fa94f6e740d96df535310e69ace2a93d1f8b2fab9628adca330302012ef8401dd49b5bb" + } + ], + "purl": "pkg:npm/caniuse-api@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/caniuse-api@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "caniuse-lite", + "version": "1.0.30001516", + "hashes": [ + { + "alg": "SHA-512", + "content": "5a679cf6908163c0966e62381ec8c17902ea0d3a95f759c5551f370e76696324673c8d7078f0ec4e0d1b18b3c2e5553fdce2195757e6c4479ad5bfad14a7bcea" + } + ], + "purl": "pkg:npm/caniuse-lite@1.0.30001516", + "type": "library", + "bom-ref": "pkg:npm/caniuse-lite@1.0.30001516", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ccount", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "7b2ac5d23885a58fb776b4fadfcddfd6a8646c6b0b4a27cd02303ad4852366398b0968c8b58e8b07d7edf588680e0c1f99c941db386ee752dcefef796fc35102" + } + ], + "purl": "pkg:npm/ccount@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/ccount@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "chakra-react-select", + "version": "4.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "4048f2486b1debaeacd0b4ab2f1a4988ebf499514f5475633cc723dc94606b71ffac7a54ba467ac9d617d2e5e5d16319b54493ed1f6170a36cd1bcc0e914cff1" + } + ], + "purl": "pkg:npm/chakra-react-select@4.0.3", + "type": "framework", + "bom-ref": "pkg:npm/chakra-react-select@4.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "chalk", + "version": "2.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "32d8be7fd96924d730178b5657cfcead34ed1758198be7fc16a97201da2eada95c156150585dbe3600874a18e409bf881412eaf5bb99c04d71724414e29792b9" + } + ], + "purl": "pkg:npm/chalk@2.4.2", + "type": "library", + "bom-ref": "pkg:npm/chalk@2.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "chalk", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e03dc1e967f8d4a39844576cce60ea3021aae5557fb8c001dbbdc920b98efb78c0961f17e2a0ed76d8024777f1b5b2c43334b1db641d8670dc26fbb6bb57d5c2" + } + ], + "purl": "pkg:npm/chalk@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/chalk@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "chalk", + "version": "4.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "7621f37432b1714f9b02c51ba072cf103422c34a847b4a9ded26149f71e070595681b0dc7cb1acc0e1d8786ac72b31bdcfa5187f4d5df5514c7d9c4f335c594a" + } + ], + "purl": "pkg:npm/chalk@4.1.1", + "type": "library", + "bom-ref": "pkg:npm/chalk@4.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "chalk", + "version": "5.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "168d3b58e606a8c7c25873b34973add82c436c2eac912fe33bdca711c9a900d3283eb0fe5b5af52ba571ee2366f804261135355ebdadfa7f27ce457db7ac61df" + } + ], + "purl": "pkg:npm/chalk@5.0.1", + "type": "library", + "bom-ref": "pkg:npm/chalk@5.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "char-regex", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "916597cedbd9e5205057e79180a15e87cab9b0bb99636fbc5942339715954e0fa81b0635e2aca5c7529b2b31ddf0fe99624020d31c880d4f4930787224c6758f" + } + ], + "purl": "pkg:npm/char-regex@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/char-regex@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "character-entities-legacy", + "version": "1.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd79ebfbb6454b5bb17a2503bd5d36c10f900db739e68f7bb48579cc749c48f26970b9bfaf40c53dca18ded611a7e559ba4c6e31e2a05d89ac5d01ced39cd078" + } + ], + "purl": "pkg:npm/character-entities-legacy@1.1.4", + "type": "library", + "bom-ref": "pkg:npm/character-entities-legacy@1.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "character-entities", + "version": "1.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "8813327841f17d59c86a4c0eb835e9564739e078a33600b2401db0d157c64138657ba3579f9d3353a57fbbe2c38711dc0d43e88e7e8aa606b73d3003f16d5b43" + } + ], + "purl": "pkg:npm/character-entities@1.2.4", + "type": "library", + "bom-ref": "pkg:npm/character-entities@1.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "character-entities", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "b21c7ba10d00c1e9ff05121d92392fcf9e0f9c4108fc48f05c3488669f3afca29d6da7c78750dffd16060619f885b7b6fae282f459d3e540847723f3dda8bd85" + } + ], + "purl": "pkg:npm/character-entities@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/character-entities@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "character-reference-invalid", + "version": "1.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "98a2949146e13e942508e7c8b9992f484824b633c522c64a4516c2e8a59510cbe5cdb963de2ddab10bf9383b2bc2dd0dde91c012f8cff0a4d03c7929d3eea33a" + } + ], + "purl": "pkg:npm/character-reference-invalid@1.1.4", + "type": "library", + "bom-ref": "pkg:npm/character-reference-invalid@1.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "chownr", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c8a26b43179286a5da2090b77d56ca6f17393d29fa72c86952f18155665ed318f0472f9b2720e9f17ac8705603ed790f5be04c9d97ea556c8c84d4372f09681" + } + ], + "purl": "pkg:npm/chownr@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/chownr@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "chrome-trace-event", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "a772942f2420e12ecd2078b17706c65fe9c51e4a01880e18426c96b636fc5e7812295d76e27266472b2001eba36d455bd79be1f91bc551f08fa94eeb5e4fa166" + } + ], + "purl": "pkg:npm/chrome-trace-event@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/chrome-trace-event@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ci-info", + "version": "3.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "755a915fb7cb526f09e85807278d7c5ee2200cb64391870315378be9303682de5694865442bac7e8466b3429704ff1f415ab5e52c66418838f46b2db3fe3d1f4" + } + ], + "purl": "pkg:npm/ci-info@3.2.0", + "type": "library", + "bom-ref": "pkg:npm/ci-info@3.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cjs-module-lexer", + "version": "1.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "70e53dbac670f3f7572172adc1af29334393250b8993130deb0df472c35151eac77de43947a53792453f16d25e21fdccdb4d8e1df63653c71c227046effc6880" + } + ], + "purl": "pkg:npm/cjs-module-lexer@1.2.2", + "type": "library", + "bom-ref": "pkg:npm/cjs-module-lexer@1.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "classcat", + "version": "5.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1ba643b0eb3e35de9f870c670110d7b8f7c58cf70a2a587889c42abb9ef9b17bd5a6ad49aa7c0731a48c0088cb4ce50dc08589335dc3501eab16ab498d0f9d6" + } + ], + "purl": "pkg:npm/classcat@5.0.4", + "type": "library", + "bom-ref": "pkg:npm/classcat@5.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "classnames", + "version": "2.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "3a541d6d9ee02df19aad2ab17ac31eb036b9bb3eca15b203f0aa6afd2c48a0d183a98f25498b340fe861b415e171d077adc6d702b16beef94785e2e4d6fa1e34" + } + ], + "purl": "pkg:npm/classnames@2.3.1", + "type": "library", + "bom-ref": "pkg:npm/classnames@2.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "clean-stack", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e1d882f4769313e29100c5a10e1ac63840a0599c687af31ce5396439b32a352b1553ad8f6335d9fd23138f3c8600517562eb20c46712593117061a7408fc10d4" + } + ], + "purl": "pkg:npm/clean-stack@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/clean-stack@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "clean-webpack-plugin", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "31c8a2ad41f9afe7182c608e2f9257fd92f33996d5af5a2ddc5c3e29cbdb8546fa3ccfb2c9ca9df5984895c8a0439825f97869a4d9b0ddb105b9a68c3722e3dc" + } + ], + "purl": "pkg:npm/clean-webpack-plugin@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/clean-webpack-plugin@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cli", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "22817534f24bfa4950c34d532d48ecbc621b8c14" + } + ], + "purl": "pkg:npm/cli@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/cli@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cliui", + "version": "7.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "39c444ebc70eb15317a7562fa2797f7f39103b28cb4aeffc6e13c37d0b747b4fc46f6f374ca3f6d05b3632aa0fb2bf52c00e7de6b44203e40ccd873d9c13fe25" + } + ], + "purl": "pkg:npm/cliui@7.0.4", + "type": "library", + "bom-ref": "pkg:npm/cliui@7.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "clone-deep", + "version": "4.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9de1c1f71bb387fc24d1d207c1ec805efd9a3c6648564de92cc7befd137320d7f5edf7b4386f7a42ba24b580149bb48cd4f067cd369b68b6e8aaac43c8c53e49" + } + ], + "purl": "pkg:npm/clone-deep@4.0.1", + "type": "library", + "bom-ref": "pkg:npm/clone-deep@4.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "clsx", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ebf6cf868eb6e29dd2da9332bcfe642813d79c8dee7c72ce6c11427e0c7e2e4791e658365d8cb686a66a51fe39ca90fc08e9f66e1806252504fa5e5d84d06278" + } + ], + "purl": "pkg:npm/clsx@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/clsx@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "co", + "version": "4.6.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + } + ], + "purl": "pkg:npm/co@4.6.0", + "type": "library", + "bom-ref": "pkg:npm/co@4.6.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "codemirror", + "version": "5.61.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f83d4d66302e72ecc4f77bc919b01a5f3be8047c29f67259596585f6eb63bf6e7ee4065489a87a08895f6f88a41b83280ec16c086f278a2247e7ef8e3b62e021" + } + ], + "purl": "pkg:npm/codemirror@5.61.1", + "type": "library", + "bom-ref": "pkg:npm/codemirror@5.61.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "collect-v8-coverage", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "8813ed9637c235c4ca340b68d0a12d0df677ab38c9bea137693199b1b863481968aeaa572656965ad3cedf90fe6489a80b72967a35fae28fb23c6c615924f37e" + } + ], + "purl": "pkg:npm/collect-v8-coverage@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/collect-v8-coverage@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "color-convert", + "version": "1.9.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "41f014b5dfaf15d02d150702f020b262dd5f616c52a8088ad9c483eb30c1f0dddca6c10102f471a7dcce1a0e86fd21c7258013f3cfdacff22e0c600bb0d55b1a" + } + ], + "purl": "pkg:npm/color-convert@1.9.3", + "type": "library", + "bom-ref": "pkg:npm/color-convert@1.9.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "color-convert", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "4511023ec8fb8aeff16f9a0a61cb051d2a6914d9ec8ffe763954d129be333f9a275f0545df3566993a0d70e7c60be0910e97cafd4e7ce1f320dfc64709a12529" + } + ], + "purl": "pkg:npm/color-convert@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/color-convert@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "color-name", + "version": "1.1.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "a7d0558bd89c42f795dd42328f740831ca53bc25" + } + ], + "purl": "pkg:npm/color-name@1.1.3", + "type": "library", + "bom-ref": "pkg:npm/color-name@1.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "color-name", + "version": "1.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "74ecbedc0b96ddadb035b64722e319a537208c6b8b53fb812ffb9b71917d3976c3a3c7dfe0ef32569e417f479f4bcb84a18a39ab8171edd63d3a04065e002c40" + } + ], + "purl": "pkg:npm/color-name@1.1.4", + "type": "library", + "bom-ref": "pkg:npm/color-name@1.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "color-string", + "version": "1.9.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b21ad56b0405a239d9bfac4ce346a7c780a4a033fe7d9b30fd97ab10cb16fe9cb3b116c4969b0bfc30555bbab7131c70bac74d5c8de55e9ba1119933b3ca7912" + } + ], + "purl": "pkg:npm/color-string@1.9.1", + "type": "library", + "bom-ref": "pkg:npm/color-string@1.9.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "color2k", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "9098701f99c0c1bdf8b66caeaaafe582310ace51579f553df4d96707a5ace2a55a1117115187983f5701c3a049e2fc5a592b4050479fe1632bed68ce0a706df3" + } + ], + "purl": "pkg:npm/color2k@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/color2k@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "color", + "version": "4.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "d6b5deb94522186af2921f8278176ee487bb389c229c28106346dcec6091c72e71547cbe9a86aa9292ff8ea42ad0cb5039e61caea133e1a6dce5fd0ab54ed6e0" + } + ], + "purl": "pkg:npm/color@4.2.3", + "type": "library", + "bom-ref": "pkg:npm/color@4.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "colord", + "version": "2.9.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "8de0b56b15e99dbd3fda79ff6352cfb8b7605c12c7eda0dc1eee0a10a7eac37094857ed9a5f05294f2b2a9713a6ed2201337d6b6b5f7fedc8109a0af5ef3243b" + } + ], + "purl": "pkg:npm/colord@2.9.3", + "type": "library", + "bom-ref": "pkg:npm/colord@2.9.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "colorette", + "version": "1.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "30a18ccf27debaeb42fd927571b6bd36a70da5f7aa3147189b217564563afc29fb08d4802b1e9aface3cb2a2eac80899b9a3f64dca8c868a3e765c059d5c53f7" + } + ], + "purl": "pkg:npm/colorette@1.2.2", + "type": "library", + "bom-ref": "pkg:npm/colorette@1.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "colorette", + "version": "2.0.19", + "hashes": [ + { + "alg": "SHA-512", + "content": "ded96ffdd20fec55af8f706c6c7ac62c9ea5fe82a1d4edd372006a327fb2c826a03b1736ddfcb30d2e87ca941b83159b9290e77f9da9d4bb91e1e58343f2bd59" + } + ], + "purl": "pkg:npm/colorette@2.0.19", + "type": "library", + "bom-ref": "pkg:npm/colorette@2.0.19", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "combined-stream", + "version": "1.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "1503783117ee25e1dfedc05b04c2455e12920eafb690002b06599106f72f144e410751d9297b5214048385d973f73398c3187c943767be630e7bffb971da0476" + } + ], + "purl": "pkg:npm/combined-stream@1.0.8", + "type": "library", + "bom-ref": "pkg:npm/combined-stream@1.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "comma-separated-tokens", + "version": "1.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "187b8344ed764b2a6ed9c57bd1dd5d900d845265c7827b6bcdba6f381f90cbee3dca935f1a0150202d9f8615db9f2ac94729c3080011b13ecebb433a862ae97f" + } + ], + "purl": "pkg:npm/comma-separated-tokens@1.0.8", + "type": "library", + "bom-ref": "pkg:npm/comma-separated-tokens@1.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "comma-separated-tokens", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "16ee2125dbf37b29427d03e9f5219689da73accb3bb53ae5bba55bf1719a446724f1048d649269e77f16adbeb42dac787cfc11eb8562638ebc3885136d194666" + } + ], + "purl": "pkg:npm/comma-separated-tokens@2.0.3", + "type": "library", + "bom-ref": "pkg:npm/comma-separated-tokens@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "commander", + "version": "2.20.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a956498cf2f176bd05248f62ef6660f7e49c5e24e2c2c09f5c524ba0ca4da7ba16efdfe989be92d862dfb4f9448cc44fa88fe7b2fe52449e1670ef9c7f38c71" + } + ], + "purl": "pkg:npm/commander@2.20.3", + "type": "library", + "bom-ref": "pkg:npm/commander@2.20.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "commander", + "version": "7.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "42b59707e6504953e6216221b443bd1fe8301da3066221790a1be827e2bd6461c6fec56c6baca27ac003d460bfc78eac113d345e5c28d6ee3d455555cef71293" + } + ], + "purl": "pkg:npm/commander@7.2.0", + "type": "library", + "bom-ref": "pkg:npm/commander@7.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "commondir", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "ddd800da0c66127393cca5950ea968a3aaf1253b" + } + ], + "purl": "pkg:npm/commondir@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/commondir@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "compute-scroll-into-view", + "version": "1.0.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "98a0e320d7b7b5cea119e95430d0f3ba1a2b21467b912ec1c32634af6c107761ce1f6b51b89ca4882d3a892117f32d53ba1373bf3e067099cad7a98cd89d4d31" + } + ], + "purl": "pkg:npm/compute-scroll-into-view@1.0.14", + "type": "library", + "bom-ref": "pkg:npm/compute-scroll-into-view@1.0.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "concat-map", + "version": "0.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd2aefe1db30c903417e8846a73f68e986f71b3dd2ad40ea047e6b4ee84647b6a1b656d82a7571c366c214c4658da03b1171da5d9f30b07768745bdb9212a6aa" + } + ], + "purl": "pkg:npm/concat-map@0.0.1", + "type": "library", + "bom-ref": "pkg:npm/concat-map@0.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "confusing-browser-globals", + "version": "1.0.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "80d95dff7972487c2e85a565b8950a2de3d88ab33740d08acd5c6a01d849208f7f5972955f93d447331526ca52d634ec952aa37ae1b828c5534a8ba2b7960f1c" + } + ], + "purl": "pkg:npm/confusing-browser-globals@1.0.10", + "type": "library", + "bom-ref": "pkg:npm/confusing-browser-globals@1.0.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "console-browserify", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0241c45730a9fc6323b206dbf38edc741d0bb10" + } + ], + "purl": "pkg:npm/console-browserify@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/console-browserify@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "convert-source-map", + "version": "1.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8e41d8cfe3dcd5888ffa8bb9c826903cac0978b15fc974f7d4f6766cdd5a8ec062208b3202bee376aeee9f31dfb89652f4b5aaf5f146095df67f4d6b668548c" + } + ], + "purl": "pkg:npm/convert-source-map@1.8.0", + "type": "library", + "bom-ref": "pkg:npm/convert-source-map@1.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "convert-source-map", + "version": "1.7.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e052645f3297103075b270856652cfe20a42dc920b89c0a919bcc6f5ff46eed1aa182cc44d0da158fadc8a703da14e30b5fd9b8946841f9d3ae549cc791df7a0" + } + ], + "purl": "pkg:npm/convert-source-map@1.7.0", + "type": "library", + "bom-ref": "pkg:npm/convert-source-map@1.7.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "copy-to-clipboard", + "version": "3.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b5deaa3a9081d34e90a6f3f5aea7ed1bd66556113beeda420cccaa0af05a642e417196dd339d400770cce8c7e4fcb0f96ab595eadc2ba5123407b1888614953" + } + ], + "purl": "pkg:npm/copy-to-clipboard@3.3.1", + "type": "library", + "bom-ref": "pkg:npm/copy-to-clipboard@3.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "copy-webpack-plugin", + "version": "6.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "317c8f0a374f571e62896ca5e3455adc91a1dbb6cacce4cd637363513ae8b03daaedd47f70b0f4d35deea89dc1a456d48f238d20d8dbeaa23b9c3209ba3acc6c" + } + ], + "purl": "pkg:npm/copy-webpack-plugin@6.4.1", + "type": "library", + "bom-ref": "pkg:npm/copy-webpack-plugin@6.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "core-js-compat", + "version": "3.19.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "43f549ee3005ff2ebcf9a52c409fda7cf39ec1db06903b5c31be3427c31bb962a52b763ec2d1eaf1b4c728f8f658a58b22a992e49847b380b31edcfaa53d96ea" + } + ], + "purl": "pkg:npm/core-js-compat@3.19.1", + "type": "library", + "bom-ref": "pkg:npm/core-js-compat@3.19.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "core-js-pure", + "version": "3.18.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6672bef6fcae3212ae9481aa4ffed11c646893c46d9073045ff0463c7907c7ea2e0e4abe314bdff667c881daa1a663c3bbcf95e54b519ff09b09173d238957e3" + } + ], + "purl": "pkg:npm/core-js-pure@3.18.0", + "type": "library", + "bom-ref": "pkg:npm/core-js-pure@3.18.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "core-util-is", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5fd54220aa2bc5ab57aab7140c940754503c1a7" + } + ], + "purl": "pkg:npm/core-util-is@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/core-util-is@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cosmiconfig", + "version": "6.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5bdd92faf8bf1bf492cb0b1dd9768672e3ed840a9842328d8fc2a80fd6d95f56ae8ce9845ecb3049b6f596b5b0d2a4dafd867f7aa640a266a51c14473ee7842" + } + ], + "purl": "pkg:npm/cosmiconfig@6.0.0", + "type": "library", + "bom-ref": "pkg:npm/cosmiconfig@6.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cosmiconfig", + "version": "8.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "deb4cc9c5240d6d08e3f0471b60178c1dec06f6aaf0db2fc8d7fb7b268c86d2e0795905a8139691116dd37b8806d696b7f113733c736ee44f04dac10eecb7e39" + } + ], + "purl": "pkg:npm/cosmiconfig@8.2.0", + "type": "library", + "bom-ref": "pkg:npm/cosmiconfig@8.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cross-fetch", + "version": "3.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "96f6f5481b08d19ec60f09ae89dfa6537916541c135546deed2d07e76c9a680750397ab6624b5309976501c34a17313a42d473d2c9e9c3d6cd88f78e224910bf" + } + ], + "purl": "pkg:npm/cross-fetch@3.1.5", + "type": "library", + "bom-ref": "pkg:npm/cross-fetch@3.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cross-spawn", + "version": "7.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "8910cf24a50f544343edd1cf3bcae46ce9cfa720f281c0c5b568e9796342832f163f6ad77315cbf13b2445e425e8eac1d86efe509ada82cd6ad7916e75cec6eb" + } + ], + "purl": "pkg:npm/cross-spawn@7.0.3", + "type": "library", + "bom-ref": "pkg:npm/cross-spawn@7.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css-box-model", + "version": "1.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6bb56be10fe477f6b0f7a6e7246df7d96f55f4b9093baf4945c68260352a8e9ebfcf4c3a55c6638007136e017110f7c181d9c0c258778b0bbe84ba296be7e527" + } + ], + "purl": "pkg:npm/css-box-model@1.2.1", + "type": "library", + "bom-ref": "pkg:npm/css-box-model@1.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css-declaration-sorter", + "version": "6.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3864faefb5061c94c054c4613cef87278a0a967df09014f0b43147d288dbaa6f8c266eb1b83307a769e4861fd385a06aab6d086eb68141258a7d22cd1d03bd3a" + } + ], + "purl": "pkg:npm/css-declaration-sorter@6.3.0", + "type": "library", + "bom-ref": "pkg:npm/css-declaration-sorter@6.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css-functions-list", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ffd942bd865a51b046bd8520606149e1d7188b2a9d8528c6ec83d596ea15f00d482e3905ee2966869d4e194cfc9fe9e605cbb444dad0033803f01e8525baeddb" + } + ], + "purl": "pkg:npm/css-functions-list@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/css-functions-list@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css-loader", + "version": "5.2.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "43b98ebe904d046ed8ad518cc51c5c0496452fbe68f9c1f669b34049d89b923fdf7df603f2a59b22766b0f44bd71c23abd97251770ec1c4ee78c694bb5a1db86" + } + ], + "purl": "pkg:npm/css-loader@5.2.7", + "type": "library", + "bom-ref": "pkg:npm/css-loader@5.2.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css-minimizer-webpack-plugin", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed95d7473447be87efdd469ce58f9191644da3464c95c83c7bdfceb6ba94626c03589a3eaacebb1af75e16b5cbb056fb73328dc234213e43346af948625fb59c" + } + ], + "purl": "pkg:npm/css-minimizer-webpack-plugin@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/css-minimizer-webpack-plugin@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css-select", + "version": "4.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c0fa4e62d9ec5689edbb698e0e1035f49aea5b136c7dd6ad44a77ae249a945b4208752ad22d928e6c4e71293dda52689b334ce84432517f44fcf6f2a8f81ea85" + } + ], + "purl": "pkg:npm/css-select@4.3.0", + "type": "library", + "bom-ref": "pkg:npm/css-select@4.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css-tree", + "version": "1.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "b51a5da6917b4d16b366b8c9eafdecb73bfddeac51712b05996e9c5f4666d8d54aa71135595d476e59e0855bfd4eb7a2ade1e4a88fd50c4b1fa25445d69eb2ed" + } + ], + "purl": "pkg:npm/css-tree@1.1.3", + "type": "library", + "bom-ref": "pkg:npm/css-tree@1.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css-tree", + "version": "2.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e85bf50d5fd3630fff405e48cd076ab0d0e3c7fc1cf13acc059b2a8cbf5e5b4d6d59bed1ee4fe6abefd55df24297b4a80f97a6b09a29f5c381c8965fb3c85823" + } + ], + "purl": "pkg:npm/css-tree@2.3.1", + "type": "library", + "bom-ref": "pkg:npm/css-tree@2.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css-what", + "version": "6.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1d352b81127baf876c64a53a1a39a97d12b53bbea1f7b67c31f4b51b4168cd1fa8176906e957def0913acf0ae46f18a0ce23c78a7089fa008f8c0f446810ed47" + } + ], + "purl": "pkg:npm/css-what@6.1.0", + "type": "library", + "bom-ref": "pkg:npm/css-what@6.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css.escape", + "version": "1.5.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "42e27d4fa04ae32f931a4b4d4191fa9cddee97cb" + } + ], + "purl": "pkg:npm/css.escape@1.5.1", + "type": "library", + "bom-ref": "pkg:npm/css.escape@1.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0c6f6915fc0eaf373e85ac299aa5ff747607246f81b1d6f49258728b5b039de3a018e5f2f704080bc873c95a757b835160305dc5cca5bf2c0f9245c21c0cd3c9" + } + ], + "purl": "pkg:npm/css@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/css@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cssesc", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd36ff25c8cad75d67352706a1be4c36db27b4d3356823540e2a41fd39306458720ebac4e3b48ec7fd7cc05d9b6e381cdd9cc248a5b54f99ede446c5a00cff56" + } + ], + "purl": "pkg:npm/cssesc@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/cssesc@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cssfontparser", + "version": "1.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "eadba7e0ba199e3ed537a61e7a03956faeca057ffb249b2abe3fa9bf7640ec5f3bf3f78ddf701b19ae5bfd2ff05f14bfb5ca7c9dce34c5152bb0f9712323543e" + } + ], + "purl": "pkg:npm/cssfontparser@1.2.1", + "type": "library", + "bom-ref": "pkg:npm/cssfontparser@1.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cssnano-preset-default", + "version": "5.2.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "e0f69d47536db9a20af0cbcb36e63b3339cae1626d7a57469730a231a69388e50ff9aa5e888bd40c85f293350ea2a80e394007ad4eb89dc743f7435f651dcb49" + } + ], + "purl": "pkg:npm/cssnano-preset-default@5.2.11", + "type": "library", + "bom-ref": "pkg:npm/cssnano-preset-default@5.2.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cssnano-utils", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "250351d7dfd8661cf8a6c2d7feb43d33cddedf3d967ff1dd25baf2ced7b86b7352b9a7f2a7dc3f23853e871e42d92f60e35aa5b2d1fb0c45a765a6a3f373ae10" + } + ], + "purl": "pkg:npm/cssnano-utils@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/cssnano-utils@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cssnano", + "version": "5.1.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "da7c7e3ba2ef7b03e8e4406d62b29cf3beb698c919464f5c30620e3f8525926c479bb39bc47fb3bec249faa2f03e451ce3fcae98bfea2646af622f4d96875621" + } + ], + "purl": "pkg:npm/cssnano@5.1.11", + "type": "library", + "bom-ref": "pkg:npm/cssnano@5.1.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "csso", + "version": "4.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c2f95c7486dfea9c0a124eef1e3f3f064734078ca55d9aee2ef3a0b3d7684b978eb0ea6ea1d395db3242852a64a7ea51a5840b40c785d389ebdd9ebc4ad6bd8c" + } + ], + "purl": "pkg:npm/csso@4.2.0", + "type": "library", + "bom-ref": "pkg:npm/csso@4.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cssom", + "version": "0.4.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "a77a6f53baf5332caa6d393e59b3492202631b65664c8681d74ac8f772f354fae60c92a4cca60cb71c7202f41747f352ea8b6ecef788efeec106add28c14b69b" + } + ], + "purl": "pkg:npm/cssom@0.4.4", + "type": "library", + "bom-ref": "pkg:npm/cssom@0.4.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cssom", + "version": "0.3.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "6f4b461db7de81b84f269c698813d4dac0a48a002ab4cf4ed76d657ba6db3a583257e3721b20a655f27a416f5e463cfc0a935f5843980483081916242f0b0862" + } + ], + "purl": "pkg:npm/cssom@0.3.8", + "type": "library", + "bom-ref": "pkg:npm/cssom@0.3.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cssstyle", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0192faeda6e453322ebdc1ea93b734f5c7b3a4635cc54c54e08a22ff4e711e4e0341e4e45a61987ed204e9cb54e8012df869f89f59434ad3ad8fb14ac9c3fbd4" + } + ], + "purl": "pkg:npm/cssstyle@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/cssstyle@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "csstype", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b97d4a1bec7d87984826c68a47dc4751e52b6b17fc20e0cec2af492cd3eae81c01d386bfc60a6adeb731e3b979059bb9cc13e5803df8dad7647b71e89bf9c944" + } + ], + "purl": "pkg:npm/csstype@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/csstype@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "csstype", + "version": "3.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d72a15aa5cf9a551ea109c5fc4853b539780bd4a7af1487fe36548a1de398eea504aafdf6b3f7ffe166acc8f8105a4e5f332d5c701991ddf1d04ea1e8581f97" + } + ], + "purl": "pkg:npm/csstype@3.0.8", + "type": "library", + "bom-ref": "pkg:npm/csstype@3.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-array", + "version": "1.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "2875ba33ce91f8550f6066f74795e26235cfabb573c31676d9bb878401151b9ceda0471964c2e8bf9df49a671c6aa0351a085902b8d0578e9fb9cf2452a8611f" + } + ], + "purl": "pkg:npm/d3-array@1.2.4", + "type": "library", + "bom-ref": "pkg:npm/d3-array@1.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-array", + "version": "2.12.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "07412b64affaea61ed12c4754e43c4124c1dcbe5837ac8a690ce60a59af90ec839e01893039457b585b9a932c801c7a4692f717d9af304b17f380901dd09f561" + } + ], + "purl": "pkg:npm/d3-array@2.12.1", + "type": "library", + "bom-ref": "pkg:npm/d3-array@2.12.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-axis", + "version": "1.0.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "7a320d3df3d235d185284380b6706d764a6bdb87387788ec7a2e8b83df26c5fe36e22be80cfdbde7aff91c3a4802d987a3ce65a93e29aeecbecc482f45406a69" + } + ], + "purl": "pkg:npm/d3-axis@1.0.12", + "type": "library", + "bom-ref": "pkg:npm/d3-axis@1.0.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-brush", + "version": "1.1.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed15bec3b1df3023f264b89f4f3fd49c9988e647645eda426e899b512b3cc67880ca8d2f21bac3cc3c14241e9e24e825f6ee4340eb764d0958ba6c730f54af60" + } + ], + "purl": "pkg:npm/d3-brush@1.1.6", + "type": "library", + "bom-ref": "pkg:npm/d3-brush@1.1.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-chord", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "2570360eba35171c3dac97b7dd4bfe0a4af922b01aef84e57c312113f8df2ce6977a03101504c0800c3d5a764bf3e1f154145769118292b354ee925eca5448b8" + } + ], + "purl": "pkg:npm/d3-chord@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/d3-chord@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-collection", + "version": "1.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "8a2d3faf97f8b2328d4df87ce038be0e9ced630a8a844c9494aa0faf35057de4a45b18d6e3dc54d90ccef6aacfacd929748d172647f3be64eef15d99ca5967e8" + } + ], + "purl": "pkg:npm/d3-collection@1.0.7", + "type": "library", + "bom-ref": "pkg:npm/d3-collection@1.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-color", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce0fdc85b5f2781b4c4352db0ff592a16d83a42dc8d26a663dd5beca74538ffc760c0598ac863ba9e6481e2768cf0576e26e226afaf5e653702302f14663b184" + } + ], + "purl": "pkg:npm/d3-color@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/d3-color@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-contour", + "version": "1.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "8683e9e0afeb242bb495a7621face6254133ebebb796047e1929bf41d336041bc3ada537f55afb61d0c289c25cc4fd73f22f41ff67492e00c2d4d72f945f160a" + } + ], + "purl": "pkg:npm/d3-contour@1.3.2", + "type": "library", + "bom-ref": "pkg:npm/d3-contour@1.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-dispatch", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "7d58e8125ce3842132f876e7f0aca09e6312eceaf46bdb08d94cc6c2807b702b6f2355e954df46a686259dbdf1b76615ebaa1761bd5f2c9f0632f3f885d53544" + } + ], + "purl": "pkg:npm/d3-dispatch@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/d3-dispatch@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-dispatch", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "af35323d4fd2eebc147e53322dcd444c37818f4351b8728a01cbee928cf086c86bea0e9ce5df338787368108d8d9b6747577862d67353c5d7be0fdad56f2a17e" + } + ], + "purl": "pkg:npm/d3-dispatch@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/d3-dispatch@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-drag", + "version": "1.2.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "ac3d6886590a4303196244256150ab485c6c58fcc8f7bf96f8f68420135333146ec73f511741e2e672561c6549dce9bd7767d14ded7238120d272cbf6a157de7" + } + ], + "purl": "pkg:npm/d3-drag@1.2.5", + "type": "library", + "bom-ref": "pkg:npm/d3-drag@1.2.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-drag", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a566d424b7444d503c95034979c331a177c7eb1fa63b6510a3cad2999f90ab171bc80de17dea6b160213fff1d6da79470a159e2083304b616afa010046485392" + } + ], + "purl": "pkg:npm/d3-drag@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/d3-drag@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-dsv", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f72565aaf65c48e321098ce788713b115530b3b15ad73830fbf1005760712681b7304d7d57a050141c08f39e57403b31c8eb86ecd89ba91313b6217f42ea78ea" + } + ], + "purl": "pkg:npm/d3-dsv@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/d3-dsv@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-ease", + "version": "1.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "971d7864f62484dc74b3fd875f9b0b15423799b6ac1e3492a703bf29a68d002c1e570c54aee2b259571bdbddf032fd51a933d9c99f24499d8da2051935c2ce15" + } + ], + "purl": "pkg:npm/d3-ease@1.0.7", + "type": "library", + "bom-ref": "pkg:npm/d3-ease@1.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-ease", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c11fd72b70f75dc2c8670a5bbd0c10e5f2bef1891db358a9ec0d93c5ed32c6771749dab52fdb24706edb95c79d90e5fe65c83118098b5f516b4466c00f0ce2d3" + } + ], + "purl": "pkg:npm/d3-ease@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/d3-ease@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-fetch", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c82efc34155c776cc503247f1e7522052ecb7fa8a7482a16712c457f0f0560bef2762a9ef3449accdc287df72a39fb3de5768ba3bc9e6ec990a83292b1752dbc" + } + ], + "purl": "pkg:npm/d3-fetch@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/d3-fetch@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-force", + "version": "1.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "1c7bde8726a2525568e42c41274c85ff19f2e31a1ac45c439c15cdbcd71f5bd69d3911997f2345d5d8fa0c62caca4e188776eb3ffd61deb9c3cdd200c0bd3cce" + } + ], + "purl": "pkg:npm/d3-force@1.2.1", + "type": "library", + "bom-ref": "pkg:npm/d3-force@1.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-format", + "version": "1.4.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "274a6279dbba67c881e936c819f6600f37d7c5414ddea4113287f2da83dd5f34226d81aa3c1ffd88c731aff4c66a553ed91b320cef94e1fdf789df2d6e749131" + } + ], + "purl": "pkg:npm/d3-format@1.4.5", + "type": "library", + "bom-ref": "pkg:npm/d3-format@1.4.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-format", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "01bdd2e97b84fd0f9f958f7a1d74f48ce5dc3381000a56059d1198e73b23446372eaa098ad0b0c7dfb3b715e50f717a36f7e73c56e617ff82e2b0df892f20ab0" + } + ], + "purl": "pkg:npm/d3-format@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/d3-format@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-geo", + "version": "1.12.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5c6e1dd5cfd4252117f4d7d4d362b004be8160f8fc60a1f1801130e689b66674d149b21c7a0a3a7611f0731b92477725c61d04a44dfca2cd4354f3a69d8b533e" + } + ], + "purl": "pkg:npm/d3-geo@1.12.1", + "type": "library", + "bom-ref": "pkg:npm/d3-geo@1.12.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-hierarchy", + "version": "1.1.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "8fcb4fc65aa1d6cac91c0b717ef394c0a35826442e04574cd7e24051fabac6a1f9780a9ff772fba06d4d56a0dae02a4564dbe734ab42604502f0a63dc849fd95" + } + ], + "purl": "pkg:npm/d3-hierarchy@1.1.9", + "type": "library", + "bom-ref": "pkg:npm/d3-hierarchy@1.1.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-interpolate", + "version": "1.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "57dce72b4cdcde338f578543db3667d2c0e1654dd6004d9b9a5c5d230c103cfccf8efc8b91df01dc9515752d480d414391667bd9cf6a9efd462b665a81367c10" + } + ], + "purl": "pkg:npm/d3-interpolate@1.4.0", + "type": "library", + "bom-ref": "pkg:npm/d3-interpolate@1.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-interpolate", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ddb62cd6b383df7ba8f1aa897ca3f72563c089b830f199b6f8bf6f04a107276460faf89347ba39326bf999972278df854586803965f94890135fa9353d6cfbda" + } + ], + "purl": "pkg:npm/d3-interpolate@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/d3-interpolate@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-interpolate", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "739521c304ecff2c9b7264e9015ab048597abeb43c2592684f917bc4d14af69ca6bf90b462671cf7f2c8247b58220820ff24bd607c3c8bc3bcb606fda6ea6379" + } + ], + "purl": "pkg:npm/d3-interpolate@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/d3-interpolate@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-path", + "version": "1.0.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "54b698727f3576d1d54e310777c07ea5b7bdc875a95ca6540bcecfce8166b05ac9aa01700defeac5fa793257ec7ccd55e44fe256dd0c9846d643b15521787f6e" + } + ], + "purl": "pkg:npm/d3-path@1.0.9", + "type": "library", + "bom-ref": "pkg:npm/d3-path@1.0.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-path", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "670650c4a8419eff721da89677a654e31e41b4243ba57b33115f4253a91183021055018b32fd6888be0cf8c2bf9fbf6c633b23fa0720a4f41272d254b0b37b7c" + } + ], + "purl": "pkg:npm/d3-path@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/d3-path@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-polygon", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "93e445ed6bc8d3c3c2f2b784a176bfc369d28390143138bea5e043f5c98573ed22c477dbb38426c7191aad56a5d48915920c55ba4f494878495111e2c87280b9" + } + ], + "purl": "pkg:npm/d3-polygon@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/d3-polygon@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-quadtree", + "version": "1.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "44a3c07979e40b9f480c60f45aee6600dcb4436576f0bf9f35eeb9a4e09755d56e4c94b758f29a2651477abdf645b87d808a3da8cb895e2a3cadae3e62623298" + } + ], + "purl": "pkg:npm/d3-quadtree@1.0.7", + "type": "library", + "bom-ref": "pkg:npm/d3-quadtree@1.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-random", + "version": "1.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "e802b904da4816a3fe731fecade2b336359bc194024946adc6afa93d1985210696ba80fe36b6d55b0ed85a91e25e9090fcd6a729db460ee07e5507190da12661" + } + ], + "purl": "pkg:npm/d3-random@1.1.2", + "type": "library", + "bom-ref": "pkg:npm/d3-random@1.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-scale-chromatic", + "version": "1.5.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "00270be3a0d8226a5114c05ca64f4786d2320bb6d3051e1f34e3f1c154a5d0b7ee943030ca21f23ce4ea7031b5fade5de0ff56eedff6340b96bb9f5a2a4a3f72" + } + ], + "purl": "pkg:npm/d3-scale-chromatic@1.5.0", + "type": "library", + "bom-ref": "pkg:npm/d3-scale-chromatic@1.5.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-scale", + "version": "2.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "2db784bc68086fc50c7006b41004cb357d257a52961980d088f7478fe80b6e51958462f235b6829f712fac97f403763fb8e394e5a0fa31387964509d1301a20b" + } + ], + "purl": "pkg:npm/d3-scale@2.2.2", + "type": "library", + "bom-ref": "pkg:npm/d3-scale@2.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-scale", + "version": "3.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d491a9e383500ade5dd60f98cbe19e3a764fef11e8d228bccec429e8f1b377e0b5fdd974286b29f40eccc70a7ed43d68e2e9db4d3c55754fd9388101a1e64f6d" + } + ], + "purl": "pkg:npm/d3-scale@3.3.0", + "type": "library", + "bom-ref": "pkg:npm/d3-scale@3.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-selection", + "version": "1.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "489d01a988a1cce8c39e795fc9e1d3d1edf49342b5fb9b11ddde5f36e78235eba16539c6c38338a3c9aa25c852c2028c5c2345a3e7b65530a1892274bd8b5792" + } + ], + "purl": "pkg:npm/d3-selection@1.4.2", + "type": "library", + "bom-ref": "pkg:npm/d3-selection@1.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-selection", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7e64d159b34c9ac996abac4957c0f5f54fe0c3f6f0ac77cd5f1ac837e1df6609f3a931e9f633a628c86c4d48d73899d939d658f50dbccb8c9e6cacea0ca97195" + } + ], + "purl": "pkg:npm/d3-selection@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/d3-selection@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-shape", + "version": "1.3.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "11492f2a3a8f154019c8e9616398330b109e23401ea74e0bc08469b19fe62c57a526251f9cae7a8e8e49303484ef2c8fda42d26fa2ed17e4b9721324eeea8fab" + } + ], + "purl": "pkg:npm/d3-shape@1.3.7", + "type": "library", + "bom-ref": "pkg:npm/d3-shape@1.3.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-shape", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3e78d4a9f3363e9b246d22d326f033a765afe0266c9c08137dc5514f05b4dd04773245c5f14a3b075cbf956900b266cac2e79cb68fbee0d96c61cbd8a57a531c" + } + ], + "purl": "pkg:npm/d3-shape@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/d3-shape@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-time-format", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "82ebfa6f61f7eecd94abf19e7e57820ed6ded17640bb2ed66b8f551a43d53cc7cb2fda8e6e00524f79441c904c529f12ecd74b400188bebd8a5e4f0773df2229" + } + ], + "purl": "pkg:npm/d3-time-format@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/d3-time-format@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-time-format", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "517261e842ac1c14e3a2956a641845cac41ca174afff9c8b38d66f910e4a937a9bc2251891d5f5ed76b53d3e94d595971867c1d5ecb92fc74a32516ad833b402" + } + ], + "purl": "pkg:npm/d3-time-format@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/d3-time-format@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-time", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e1d22b2b679acf61876a840564f152e730489d873e5a3fb86d0000c7e8c7f38269a270f913a3c2e190bc5c8bad7f94207b9fb5261376cdd25791b7eaaf90bc4" + } + ], + "purl": "pkg:npm/d3-time@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/d3-time@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-time", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "fde2107bf791e24090c2aef2c62ef3e1ceaa1177f621819c8e8581e4e390cb84eaf54bf7f7ff78eea94370dd932e4893cd05b3be7b2e60f07d4eb59a35f8a929" + } + ], + "purl": "pkg:npm/d3-time@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/d3-time@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-timer", + "version": "1.0.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "0752439b45c36900bebafa380d3efd1f45e606c9204b797a55efb548109fc609ad21bd4056b3c8a2a77e9cf4affa5a0c5fcb33434b155211a780bec3e503e25f" + } + ], + "purl": "pkg:npm/d3-timer@1.0.10", + "type": "library", + "bom-ref": "pkg:npm/d3-timer@1.0.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-timer", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9dd7c9fc9c7131dde7c37d6ec8aa18da76a2bc5fabdbd57e2dcd2cbd9c5ed49bef2119a2f2152caccbdd3b0812d68eae0479a2cfdd60790d3294f3f46a3d5550" + } + ], + "purl": "pkg:npm/d3-timer@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/d3-timer@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-tip", + "version": "0.9.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "11505f1bd77e1e78c8a325577e1a72b56c65179f496a86f08b3a8c5fd1015edb05989cad8f01de62252cef895d1d08c4ed2f6fcdf293c762c2b6f52b21bb8562" + } + ], + "purl": "pkg:npm/d3-tip@0.9.1", + "type": "library", + "bom-ref": "pkg:npm/d3-tip@0.9.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-transition", + "version": "1.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1cd20454e0f16a678ee53d51e5a0c9fdb653dcbfc8f180e420fb4ce385f657310bafa698c6e98bb074c044d13baa0998de2642de724bbf97d47424f71185a0c" + } + ], + "purl": "pkg:npm/d3-transition@1.3.2", + "type": "library", + "bom-ref": "pkg:npm/d3-transition@1.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-transition", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0292af7e3b1247ab60d3ac6b2f8df80b45b274bafb25ec0107757eff7f51307b1a5d3386d339adfce0177a78393392c19b4a239b126ba68990559d5a3ef04be3" + } + ], + "purl": "pkg:npm/d3-transition@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/d3-transition@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-voronoi", + "version": "1.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "740ac9df685c845b2b43cb8c89304bab6e7a3299d98deb81b5d1e9683958b90ca3534095cc2265fc1556f9292ccda01e1fde43ffc831a80860c74a2e01601f46" + } + ], + "purl": "pkg:npm/d3-voronoi@1.1.4", + "type": "library", + "bom-ref": "pkg:npm/d3-voronoi@1.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-zoom", + "version": "1.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "5682d74cae30bf2d5ad09a47d8897e1760a23a156eed5457585e4cfcbae8308877ff30400b7580b7b42822f3e26ce6af568db484debfdfbbf002c7417a32f229" + } + ], + "purl": "pkg:npm/d3-zoom@1.8.3", + "type": "library", + "bom-ref": "pkg:npm/d3-zoom@1.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-zoom", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6fc02657791f41aa9602e69c6cfb8d6cbeaf6a19ce25f94e85ec4bccc30d2e06badbefe7874273bc9d1a3bfe5ae4c560505192ec7bb53fd3f4de8ddf2640c2cb" + } + ], + "purl": "pkg:npm/d3-zoom@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/d3-zoom@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3", + "version": "3.5.17", + "hashes": [ + { + "alg": "SHA-512", + "content": "c8593fda275bf0e1cf2a46c02fc41a39aa8434da0c8486921d97ab937a10b040b090e6e40a92728d8c027be3878aae9411d85ed66f1918045144ede58c58e52a" + } + ], + "purl": "pkg:npm/d3@3.5.17", + "type": "library", + "bom-ref": "pkg:npm/d3@3.5.17", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3", + "version": "5.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e0f2f9847687c17e26ed9af551aa575b6ddaa68ea97b10a075eb5d2799139800e91bfed3f46931c34334b5ffe98e807addecc20a6d2ee54685632d9a32dd0c73" + } + ], + "purl": "pkg:npm/d3@5.16.0", + "type": "library", + "bom-ref": "pkg:npm/d3@5.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dagre-d3", + "version": "0.6.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "7bfea35de08feffa6d940338f1c9665f8c5365ce4493a4fa91a812ececf61eb61276a70b6452eaa407e1ee575b65115fc42655ca1eb53443d1d3c510455c49cd" + } + ], + "purl": "pkg:npm/dagre-d3@0.6.4", + "type": "library", + "bom-ref": "pkg:npm/dagre-d3@0.6.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dagre", + "version": "0.8.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "fda4ea9a746d6bbc7b3020a913193b1d02f63b8a30093da1f0d4ffffd235390f6fb76f4f6b4073480911e65c0551c43be3dd72562ff709753d8d0e68d0c9f64b" + } + ], + "purl": "pkg:npm/dagre@0.8.5", + "type": "library", + "bom-ref": "pkg:npm/dagre@0.8.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "damerau-levenshtein", + "version": "1.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1d412141efe9657d47101d440edfe07c111463d0e6b8c3d3ce58c23fa6e1adb9fee0172c069a468b084967b9d7d388a655f8dbc7a8bd227f376b23c468ec448" + } + ], + "purl": "pkg:npm/damerau-levenshtein@1.0.8", + "type": "library", + "bom-ref": "pkg:npm/damerau-levenshtein@1.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "data-urls", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f97964d25cefc1266a5d20a091b8a5204828003743b096254adf23ca6f02165354ddc390516a3c65ccc89dbe1fa0c24a3d01f43dcc88f9da9cc5f75437600bd" + } + ], + "purl": "pkg:npm/data-urls@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/data-urls@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "datatables.net-bs", + "version": "1.11.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "9506b2b6a48e712bf9d631684fb4720db6a8ce2092b520e5e589b5c8e04ff995c83ac4bd7dde333856720d0966185c94a5af09032f380b8afc8ccd46437fe894" + } + ], + "purl": "pkg:npm/datatables.net-bs@1.11.4", + "type": "library", + "bom-ref": "pkg:npm/datatables.net-bs@1.11.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "datatables.net", + "version": "1.11.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "cfd2c6e0ed1560e633a7eae702b2c4c6f9d4595f2293258170761910a0df56ecfb04ac50744ab86bfb693b44eb6e6f852f5f9163b504221f94718358fe1c06c4" + } + ], + "purl": "pkg:npm/datatables.net@1.11.4", + "type": "library", + "bom-ref": "pkg:npm/datatables.net@1.11.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "date-now", + "version": "0.1.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "eaf439fd4d4848ad74e5cc7dbef200672b9e345b" + } + ], + "purl": "pkg:npm/date-now@0.1.4", + "type": "library", + "bom-ref": "pkg:npm/date-now@0.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "debug", + "version": "4.3.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d15851ee494dde0ed4093ef9cd63b25c91eb758f4b793ae3ac1733cfcec7a40f9d9997ca947c520f122b305ea22f1d61951ce817fbb1bfbc234d85e870c5f91" + } + ], + "purl": "pkg:npm/debug@4.3.4", + "type": "library", + "bom-ref": "pkg:npm/debug@4.3.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "debug", + "version": "3.2.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "0858f3618022e1385f890be2ceb1507af4d35c7b670aa59f7bbc75021804b1c4f3e996cb6dfa0b44b3ee81343206d87a7fc644455512c961c50ffed6bb8b755d" + } + ], + "purl": "pkg:npm/debug@3.2.7", + "type": "library", + "bom-ref": "pkg:npm/debug@3.2.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "decamelize-keys", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "d171a87933252807eb3cb61dc1c1445d078df2d9" + } + ], + "purl": "pkg:npm/decamelize-keys@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/decamelize-keys@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "decamelize", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "f6534d15148269b20352e7bee26f501f9a191290" + } + ], + "purl": "pkg:npm/decamelize@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/decamelize@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "decamelize", + "version": "5.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "55fc5a772084097810964a040237a0840af9818dc77fe20a8ca6fe5fcb46543b6f7828cdf944b0a6b776ab7417051f53d7ec760c6d17645e7fc3eec702d49a5c" + } + ], + "purl": "pkg:npm/decamelize@5.0.1", + "type": "library", + "bom-ref": "pkg:npm/decamelize@5.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "decimal.js", + "version": "10.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "574a5f85fafcb2ecf23c63b1de79aae1a1ea69b7a15199fa0a1f64c85a55efd4c60d3585987a94a9775a6d1ed01eac73ad8a25178fad566261506e0e51183975" + } + ], + "purl": "pkg:npm/decimal.js@10.3.1", + "type": "library", + "bom-ref": "pkg:npm/decimal.js@10.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "decko", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd43c735e967b8013306884a56fbe665996b6817" + } + ], + "purl": "pkg:npm/decko@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/decko@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "decode-named-character-reference", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "3bcc75d91ceb505f31c95718d0a268c16b26689c506e6cb4fc4b6736d1d1a6c39c4fb7459395b9f7c7281ea055a665a8d684107ec0aa7c29a464de4326b65576" + } + ], + "purl": "pkg:npm/decode-named-character-reference@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/decode-named-character-reference@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "decode-uri-component", + "version": "0.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "16a51843ef28d79f06c864eb305266b3daa1dc2a932af02a82ab139e42c8f2c2aed34dbca2ba8187134c16415e9f4cc6ca0e9ea40083df6a63564e7c9e0204ad" + } + ], + "purl": "pkg:npm/decode-uri-component@0.2.2", + "type": "library", + "bom-ref": "pkg:npm/decode-uri-component@0.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dedent", + "version": "0.7.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "2495ddbaf6eb874abb0e1be9df22d2e5a544326c" + } + ], + "purl": "pkg:npm/dedent@0.7.0", + "type": "library", + "bom-ref": "pkg:npm/dedent@0.7.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "deep-is", + "version": "0.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "a083f392c993838fccae289a6063bea245c34fbced9ffc37129b6fffe81221d31d2ac268d2ee027d834524fcbee1228cb82a86c36c319c0f9444c837b7c6bf6d" + } + ], + "purl": "pkg:npm/deep-is@0.1.4", + "type": "library", + "bom-ref": "pkg:npm/deep-is@0.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "deepmerge", + "version": "4.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "149dd4808e20225f8f1d99b9de49ecb9216913e9c448cafb338bfd41c801ed2eb72a3ffa5aa322150269041633d4fb7eeba6d9a4fdd0ecbc9ed0ea3d30f28476" + } + ], + "purl": "pkg:npm/deepmerge@4.2.2", + "type": "library", + "bom-ref": "pkg:npm/deepmerge@4.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "define-properties", + "version": "1.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "dcca9f60a8f694bcdd3127fc648644fd5f99bb2f81803e9fd7ae1ef0adb0edd827a4a02b0437ab198a4ce3a21861c8e791d3cd3233e4f40e95141f3edd22a55d" + } + ], + "purl": "pkg:npm/define-properties@1.1.3", + "type": "library", + "bom-ref": "pkg:npm/define-properties@1.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "define-properties", + "version": "1.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "b9c90ea8a71f695bed05db1591d3efdd78ef79026c350aa68578118bcba1bd65ae3d8642365cd3f2a0326e55203685dd1dd8cc4f302a7868c0a258bc7fe6f33c" + } + ], + "purl": "pkg:npm/define-properties@1.1.4", + "type": "library", + "bom-ref": "pkg:npm/define-properties@1.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "del", + "version": "4.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "4301ae114a2e3f6915c107a702c3a87f916ff0af6ddc3f026bc3717172ab2291078d35cae49da75cb74ff802c8d5c82ff308fb2aec01853c0190e65224a3395d" + } + ], + "purl": "pkg:npm/del@4.1.1", + "type": "library", + "bom-ref": "pkg:npm/del@4.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "delayed-stream", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "df3ae199acadfb7d440aaae0b29e2272b24ec619" + } + ], + "purl": "pkg:npm/delayed-stream@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/delayed-stream@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dequal", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "d237bea8f28710ca21bdf453084a370ab3c6e9c033018826ccacb1462612483912e9e1897725499bb59a600e4409a003f702c1d93e0411eca603968555c61708" + } + ], + "purl": "pkg:npm/dequal@2.0.3", + "type": "library", + "bom-ref": "pkg:npm/dequal@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "detect-newline", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4cbcfec7fbc45e6fd8ecfef09f510914d2f1629503e1380ca2cc58e9f0152549c931bba91c13a7731c96506f4ea53687f44043eee148e4b7c482630e739e03b0" + } + ], + "purl": "pkg:npm/detect-newline@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/detect-newline@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "detect-node-es", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ca9766254fd36c16f2d83c626eebfb64b5b706cd5012633b9c78c400d7e88492ef1345d5ba38ac9f5a8f25c67183ea83b9cb2bf9b3fa7cb0f5acf4b702127b11" + } + ], + "purl": "pkg:npm/detect-node-es@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/detect-node-es@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "detect-node", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4f4348b90a674ef14301336e1cde6ba0fc12046f37ac5b2e3be3175c7f7fdcdd5e15b9f8c1c3e3b6dbe330b10f589d11194620404edc1a04b7b4dc5ba8218cee" + } + ], + "purl": "pkg:npm/detect-node@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/detect-node@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "diff-sequences", + "version": "27.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a0eb07e9045c8d5d9d29f2972e2034bffc3f07d3ad99409ddfcd8c63a6678a8e7cfc5b8a5e90bdc023c568866c999ac596d8f59a1e08ec9aa47a2f5df5d3555" + } + ], + "purl": "pkg:npm/diff-sequences@27.0.6", + "type": "library", + "bom-ref": "pkg:npm/diff-sequences@27.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "diff-sequences", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "93580201702c3602f010bf98f16be5f8cea81058f96e06b37d950ba52e429dea0f3d745a0825bb766faadb52b2d95104e57f957910c1560d4f72fbecaf84ed35" + } + ], + "purl": "pkg:npm/diff-sequences@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/diff-sequences@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "diff", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0fe9a4faa13c542fcf014ae5014df837e55f5debf48217b9cb09a9aab6b0a6199565cd5b11f9f9eaea3daa9c86a75a78c69cce1e4496e33b4177a2fb5f1e000b" + } + ], + "purl": "pkg:npm/diff@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/diff@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dir-glob", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5a4ad6a7d191e0a5df28663338b993b86562d545857f0b37efb9fd71ce79fed6fa0eeab217aa5c43901b88712c85a0e963dbfaa1a4abd9708389d1a633077320" + } + ], + "purl": "pkg:npm/dir-glob@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/dir-glob@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "doctrine", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "df999292ee195cad2f7c2b87103030b79e5d8368cd6a31d9d6876f17ef124abf3612c658e109977ee5aca3ca0477ccd185539b48dd7c68cd028d2768057ef323" + } + ], + "purl": "pkg:npm/doctrine@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/doctrine@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "doctrine", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c92f90e62de105fec6064778286f1aede04d3563462d3684c306165228c860cef3ae56033340455c78e33d6956675460ed469d7597880e68bd8c5dc79aa890db" + } + ], + "purl": "pkg:npm/doctrine@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/doctrine@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dom-accessibility-api", + "version": "0.5.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "5eef660f4523ac98ac4e6bfb9665520cc6a041c53d47987001bc6c68013fdf95cf9cf2c9a1b6ee4447d5febada8926848ff50ebe0af342cebacf24d64e5c9dfa" + } + ], + "purl": "pkg:npm/dom-accessibility-api@0.5.10", + "type": "library", + "bom-ref": "pkg:npm/dom-accessibility-api@0.5.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dom-helpers", + "version": "5.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9d109aec22b7553accd8d986908cb871b2bb219960044fcf60c9f9e6bad779faf9c570cfd0b76d7cf9db9450e855d7007ec949ee8afa8aa0149f1d0208621640" + } + ], + "purl": "pkg:npm/dom-helpers@5.2.1", + "type": "library", + "bom-ref": "pkg:npm/dom-helpers@5.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dom-serializer", + "version": "0.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "dbfc4f6f7391b10e369c76224ae9d79038cf2c16848ffc53c143b807b5c26504d193b101b5338f6b2821d74600021d8e23542ba7a3567e9021cecc23d3276df6" + } + ], + "purl": "pkg:npm/dom-serializer@0.2.2", + "type": "library", + "bom-ref": "pkg:npm/dom-serializer@0.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dom-serializer", + "version": "1.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "e5ce78064e43c38a80c4d388d691448b33d28d5b31e7e6e924a98bda43e7f0984152adaad3db5309ade68e28ee9f635f2bbf0d328b8360d30190eacf6624be8a" + } + ], + "purl": "pkg:npm/dom-serializer@1.3.2", + "type": "library", + "bom-ref": "pkg:npm/dom-serializer@1.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "domelementtype", + "version": "1.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "052281f934a9329148fc73b108daf53bc68c39367c853de9337190d30fe65919a48440d2149924cb3cf85d0b01578e010a1c0692b0df3328d50f4780d9a155df" + } + ], + "purl": "pkg:npm/domelementtype@1.3.1", + "type": "library", + "bom-ref": "pkg:npm/domelementtype@1.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "domelementtype", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0ed04ca3cda9bf5745b54987cabe3c6de8aeabbf764b1a21afef079bdce8c649583df6ba9f46770728e3d8857b6e6af6232a82967a844217e01c9279405d11e4" + } + ], + "purl": "pkg:npm/domelementtype@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/domelementtype@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "domexception", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "cb1276985cbfb226d5425bb9a878ce91ff49dcaeb38260b1809f78bb611dbc3395d3d1fedf62ed46cc04714b2651637bda954b3849d3491688555cd54204b476" + } + ], + "purl": "pkg:npm/domexception@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/domexception@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "domhandler", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "2de59a0822d5027fabff6f032c2b25a2a8abe738" + } + ], + "purl": "pkg:npm/domhandler@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/domhandler@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "domhandler", + "version": "4.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce4eec82df7bd24ccf92cd817fe7704ff3cbce084b9ec8af6fd09cc64bd1f0ccebeba3a5af439f77c9de49b8251c91da1dad8c69d7e849d36529801a69f9967c" + } + ], + "purl": "pkg:npm/domhandler@4.2.0", + "type": "library", + "bom-ref": "pkg:npm/domhandler@4.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "domhandler", + "version": "4.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "1abc28c5837eb969733bcba1517465d0ffa41c4e06b553df63354b714c4f2fb28d7472a3ebabef9618b07881ea6185d6970f93f222cca78d8b9baee0870e1631" + } + ], + "purl": "pkg:npm/domhandler@4.3.1", + "type": "library", + "bom-ref": "pkg:npm/domhandler@4.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dompurify", + "version": "2.2.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "fbd32a69cba280c219fb5f84c28125b68832586153259594df6e7c46ea71b3ed821ace07f75e06f5eafaa596ec99efdbbdbe4bebba36ada75ef67db57b8456ff" + } + ], + "purl": "pkg:npm/dompurify@2.2.9", + "type": "library", + "bom-ref": "pkg:npm/dompurify@2.2.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "domutils", + "version": "1.5.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "dcd8488a26f563d61079e48c9f7b7e32373682cf" + } + ], + "purl": "pkg:npm/domutils@1.5.1", + "type": "library", + "bom-ref": "pkg:npm/domutils@1.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "domutils", + "version": "2.7.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f1e6876b5ec8c0950f02207e4a84d8068e6609d78c81d700a17279f66e834f5bf0fb988b4b780da2a61a468c1a04ab4656b385d49cf8c834e060a2cada4bdf26" + } + ], + "purl": "pkg:npm/domutils@2.7.0", + "type": "library", + "bom-ref": "pkg:npm/domutils@2.7.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "domutils", + "version": "2.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c3de828e87e9ef63392088698e0a1b06299811fa0f8f1d55c740525fd3f7d1605d656d9620a5344f505dd24cf678d67d8a48ca8076c4c8ac7c041e87d4bde1dc" + } + ], + "purl": "pkg:npm/domutils@2.8.0", + "type": "library", + "bom-ref": "pkg:npm/domutils@2.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "echarts", + "version": "5.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "d96defc37a08dad589772033f9bf03b964b49df5ed483aa50e6aa08a7fe57f36e4074d5cb8c10deba2960659aeaf760ca799c40c412de6cdb7a6596703307810" + } + ], + "purl": "pkg:npm/echarts@5.4.2", + "type": "library", + "bom-ref": "pkg:npm/echarts@5.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "electron-to-chromium", + "version": "1.4.156", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd68f9342ec4d301da30276ac56cfd07496fec27327034e21f25c2b5b6eede95ccf5357600ea7c06d32a915baabc935d12f96d046e8bc53d90f81c58e0b50220" + } + ], + "purl": "pkg:npm/electron-to-chromium@1.4.156", + "type": "library", + "bom-ref": "pkg:npm/electron-to-chromium@1.4.156", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "elkjs", + "version": "0.7.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "943f3a456761e3cd3f52e4681e145c9efd8832421c2bac8c0c4b93f133c121b3b775be077e7545fb596061d422f7d0a4d326fe960e446f8e89087239b8eb2603" + } + ], + "purl": "pkg:npm/elkjs@0.7.1", + "type": "library", + "bom-ref": "pkg:npm/elkjs@0.7.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "emittery", + "version": "0.8.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b837ef52356b7c62498729b1fe4cfaa6b96d7a7c35bbb5ab0a0d686bde33618f31c55a4b2d4bb4e392c04f47610d97571b9f3f1293cbff9900d7cd1f43faae76" + } + ], + "purl": "pkg:npm/emittery@0.8.1", + "type": "library", + "bom-ref": "pkg:npm/emittery@0.8.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "emoji-regex", + "version": "8.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3128d8cdc58d380d1ec001e9cf4331a5816fc20eb28f2d4d1b7c6d7a8ab3eb8e150a8fd13e09ebd7f186b7e89cde2253cd0f04bb74dd335e126b09d5526184e8" + } + ], + "purl": "pkg:npm/emoji-regex@8.0.0", + "type": "library", + "bom-ref": "pkg:npm/emoji-regex@8.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "emoji-regex", + "version": "9.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f5f03689b17494936fb8da9bfc98bb398c94f686a164144e23db5c0e9a06d4aac67684bef636c514efce60f515e0a37b3464d815978d93887a7766d3affd5ca" + } + ], + "purl": "pkg:npm/emoji-regex@9.2.2", + "type": "library", + "bom-ref": "pkg:npm/emoji-regex@9.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "emojis-list", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe4c8cd7c11f8a7c1765b9e8f45c9419e161f3b282f074500501a295d1d96c4b91c9614e9afd54d74a3d041a7c5d564354d36e40ac88188bb96580005c9d15d9" + } + ], + "purl": "pkg:npm/emojis-list@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/emojis-list@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "enhanced-resolve", + "version": "5.12.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4074d723fb19426928d5c6c3a0d01ade6279aa159450d02adef474fd8883dfbf5f590adc7eea17d7e1d6d92d0c4eded79a83cb6a975a0ca52d7a55123e273b85" + } + ], + "purl": "pkg:npm/enhanced-resolve@5.12.0", + "type": "library", + "bom-ref": "pkg:npm/enhanced-resolve@5.12.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "entities", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "b2987aa3821347fcde642b24fdfc9e4fb712bf26" + } + ], + "purl": "pkg:npm/entities@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/entities@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "entities", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a7dda27f9373eb5f48d30f9a909acb647d0c5f43dbe435f7f573b0413b5749d41039a607d374b5b88429e2684e66d017af1ab85623baed84e22c1a36eb7f28f4" + } + ], + "purl": "pkg:npm/entities@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/entities@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "envinfo", + "version": "7.8.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe8f815c7981ee871b1c402ce85d849c6d288326d555476446e9d34f6825654f5701a1a686ab24aef2b0a97b837cd8c43b42d929675e8c41299eaf1a334b4e6b" + } + ], + "purl": "pkg:npm/envinfo@7.8.1", + "type": "library", + "bom-ref": "pkg:npm/envinfo@7.8.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eonasdan-bootstrap-datetimepicker", + "version": "4.17.49", + "hashes": [ + { + "alg": "SHA-512", + "content": "eca65e0e9923f80e80b4f4775e35fc8009d13d490f49f5b43a6300346d5d91438f32d2d2cdbca80a30c874471f46d40f5395f40fd1a86fbc162a7d21e105b2ec" + } + ], + "purl": "pkg:npm/eonasdan-bootstrap-datetimepicker@4.17.49", + "type": "library", + "bom-ref": "pkg:npm/eonasdan-bootstrap-datetimepicker@4.17.49", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "error-ex", + "version": "1.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "edd147366a9e15212dd9906c0ab8a8aca9e7dd9da98fe7ddf64988e90a16c38fff0cbfa270405f73453ba890a2b2aad3b0a4e3c387cd172da95bd3aa4ad0fce2" + } + ], + "purl": "pkg:npm/error-ex@1.3.2", + "type": "library", + "bom-ref": "pkg:npm/error-ex@1.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "es-abstract", + "version": "1.18.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "9d022bd7677157b492c44eabe9fd65dc3b4078461db06a69b35ddd4744f0260d52f20ca9e193e0cb71597070606e242a9e8a924dbfa80be90ee144340bf27cbf" + } + ], + "purl": "pkg:npm/es-abstract@1.18.3", + "type": "library", + "bom-ref": "pkg:npm/es-abstract@1.18.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "es-abstract", + "version": "1.20.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5849b6a0185fa08dac22678ce0e176cc4d95dc161d485f8a9d28bd4a2773e757d01ddefe26e17c5e0723f7fd28f8e59e21e212fcc8ae36796bb90ac97f5e8640" + } + ], + "purl": "pkg:npm/es-abstract@1.20.1", + "type": "library", + "bom-ref": "pkg:npm/es-abstract@1.20.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "es-abstract", + "version": "1.21.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbf0793ce3368819c8c4289eae71f51bbac2f6a42833bee52c83102eea1bd33869f02e7a3e8f35fb6363d1614a9ddd293517834e7918af273ece13b3a442113a" + } + ], + "purl": "pkg:npm/es-abstract@1.21.2", + "type": "library", + "bom-ref": "pkg:npm/es-abstract@1.21.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "es-module-lexer", + "version": "0.9.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "d47436336b0fb71c27bcebd3d590a51f24038a081d3635115a9636c1ee9a30a0908945714e656cd9460f2c8ac3f38b12fa431d5307c14b295b24fc0d9c1ae71d" + } + ], + "purl": "pkg:npm/es-module-lexer@0.9.3", + "type": "library", + "bom-ref": "pkg:npm/es-module-lexer@0.9.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "es-set-tostringtag", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "83738c6ed97063741ec25a8088c2c8e3b2b2c23599a04cad2abf297fa8930bcb89ab96c8007e7667da6743ca552fac21ac2b68e772590ee508b227c678ba2b4e" + } + ], + "purl": "pkg:npm/es-set-tostringtag@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/es-set-tostringtag@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "es-shim-unscopables", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "266e863dc09d0b7d1e30b6d9db1f33d96b91c00c2cdf34c104abaeb1f7d8554acd8ff195494019fb128c694a5f34347921bc8d0392c96da79ca1455b994701d7" + } + ], + "purl": "pkg:npm/es-shim-unscopables@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/es-shim-unscopables@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "es-to-primitive", + "version": "1.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "4023a5960649b5a528f6689805c2c285351a1cd8c91773d8b35562743ec0c22123d6463129e41372d2c07b300e1f964a447d20d8880f9fa2b0078213f22469bc" + } + ], + "purl": "pkg:npm/es-to-primitive@1.2.1", + "type": "library", + "bom-ref": "pkg:npm/es-to-primitive@1.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "es6-promise", + "version": "3.3.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "a08cdde84ccdbf34d027a1451bc91d4bcd28a613" + } + ], + "purl": "pkg:npm/es6-promise@3.3.1", + "type": "library", + "bom-ref": "pkg:npm/es6-promise@3.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "escalade", + "version": "3.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9347abda05242dff0ed332898808669139c9953bc8346bfbca00cd3db788b17fd3263189647ba1f41d94c5bb1a1249a5128f4c7e1ad2ce68489614652361979f" + } + ], + "purl": "pkg:npm/escalade@3.1.1", + "type": "library", + "bom-ref": "pkg:npm/escalade@3.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "escape-string-regexp", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-1", + "content": "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + } + ], + "purl": "pkg:npm/escape-string-regexp@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/escape-string-regexp@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "escape-string-regexp", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "529cdc2c25e895459c36ee47b5530761d5c98c0ae3b05f42d1a367aae658638b96fd5bb49a2cb96285af6d5df8e476ae56f700527a51ba130c72a4dc18e636fb" + } + ], + "purl": "pkg:npm/escape-string-regexp@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/escape-string-regexp@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "escape-string-regexp", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4eda5c349dd7033c771aaf2c591cc96956a346cd2e57103660091d6f58e6d9890fcf81ba7a05050320379f9bed10865e7cf93959ae145db2ae4b97ca90959d80" + } + ], + "purl": "pkg:npm/escape-string-regexp@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/escape-string-regexp@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "escape-string-regexp", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fef798ef925b30ae23d728efb94c6e56c892fe1affe221ecf454d3e9c8137b1c5d1342f2fe095c7010249681ff0e87e48d16d95376e7a23dfc98e9a1919d251f" + } + ], + "purl": "pkg:npm/escape-string-regexp@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/escape-string-regexp@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "escodegen", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9a61cacacfc2f01154188f8c01635c498a0e4582cc74fce3ae49ddd9573e6d4b233796d772bf0486b341f944ea7cbd72dc8f5ce1fc368a182d30f40b051890c7" + } + ], + "purl": "pkg:npm/escodegen@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/escodegen@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-config-airbnb-base", + "version": "15.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5a5f7cf865921c14bbe1da850dbdc5f9a04a1f5dd6bb822626ba9955c683a0e40ec45c932b532a91811fa684384f2bc2d9e0fb6d14e06f0980db5f7b14a148a" + } + ], + "purl": "pkg:npm/eslint-config-airbnb-base@15.0.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-config-airbnb-base@15.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-config-airbnb-typescript", + "version": "17.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7a5362bb30f490f00f4d78c55a0fa5136e2731d1ccb6ec606280f7d0ec8c0facab5b50211593c0836ed55fb777b73384af0f9d8094cd59f4520ea11c5dbe15d2" + } + ], + "purl": "pkg:npm/eslint-config-airbnb-typescript@17.0.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-config-airbnb-typescript@17.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-config-airbnb", + "version": "19.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "4fbe506105505f9ee388d82917daf529e80c20213de15630a0543230686bbdcfa507c605d84fccfcf6036907b500971668482a2c4f84ad75753a0ffee95cb37b" + } + ], + "purl": "pkg:npm/eslint-config-airbnb@19.0.4", + "type": "library", + "bom-ref": "pkg:npm/eslint-config-airbnb@19.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-config-prettier", + "version": "8.6.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c017478ba4b56a3f9a0455414aa4c03e367445202c27f57f01e63ad1f4572a9d806e3dba961234c4b293d6323e727ba733a122c3c1e0b34a8dcaa3b806ad968" + } + ], + "purl": "pkg:npm/eslint-config-prettier@8.6.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-config-prettier@8.6.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-import-resolver-node", + "version": "0.3.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "828cd6d9b94c2c909e169070ba02d31b2bd58cda1ea35927a275c071ab42e9b8cf0598ada2dc5d59fec68a6af6e4de1cd0000ea3878e51f686f362093c3a6a08" + } + ], + "purl": "pkg:npm/eslint-import-resolver-node@0.3.7", + "type": "library", + "bom-ref": "pkg:npm/eslint-import-resolver-node@0.3.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-module-utils", + "version": "2.7.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "8f8193fabab30a844a1f05115fba5d76d20f1b24a75fd4a2fdc80c239cedadca8e3ed93974311e677e024153e9867aa4272b6573ded5ba4d39526da627780440" + } + ], + "purl": "pkg:npm/eslint-module-utils@2.7.4", + "type": "library", + "bom-ref": "pkg:npm/eslint-module-utils@2.7.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-plugin-es", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "194980b0968de0573b19bb65f2e38195aca8d83aa1c16bc4cf290c1d20991d4dd7749f8d4b3cd97158578775715f989ca90fa841d2046b05d7f31911de620599" + } + ], + "purl": "pkg:npm/eslint-plugin-es@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-es@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-plugin-html", + "version": "6.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "6e1048472645a88e04a05d769460c702681f7dff1e2d7c7a479dbf2b7112421b31cc2cc813a85d79b4bb3f2eb9d5fed4dd1068b6aae85270b72f6f5b47ba8959" + } + ], + "purl": "pkg:npm/eslint-plugin-html@6.1.2", + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-html@6.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-plugin-import", + "version": "2.27.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e612ddc65687e0886ba213e391a67bcffa4026de1e8c2d92784391c2c87003a1fb1be15cd716c4625a3ddcd0e16257edc3585874aa0deff6070f95f737cd1a3" + } + ], + "purl": "pkg:npm/eslint-plugin-import@2.27.5", + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-import@2.27.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-plugin-jsx-a11y", + "version": "6.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b15085297f5f9655119d74f62702cde50828db8520e4d17a7718649b1b0c1146615d170683e5f77b525b27ce1878f40a065e44d198c01f9438ae475c198f7dfa" + } + ], + "purl": "pkg:npm/eslint-plugin-jsx-a11y@6.5.1", + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-jsx-a11y@6.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-plugin-node", + "version": "11.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a14c2d3c9d56d12283d13afec2abbdd9ce71b82790a81de14821dab27fd982315d03d88318d90d7f6662f73b58ed7fa136e3226f6dcb346466ebeb8df8a2c4de" + } + ], + "purl": "pkg:npm/eslint-plugin-node@11.1.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-node@11.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-plugin-promise", + "version": "4.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d8dac1aaca9b731410cb87f18c6c0c5f7490be6f47f6dcc13adc5384e3e25aa34a19dc4d4b13016d5895ffd6918c24b893b6b4927ab9f609133f83e75f73479" + } + ], + "purl": "pkg:npm/eslint-plugin-promise@4.3.1", + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-promise@4.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-plugin-react-hooks", + "version": "4.6.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a0573b22dcfd431876c7880d1d2b6fdc1a89ab9e04c5799f0be6b536302d6bae8800df3b5aed11fd002b8084bda8acd7ddd5ca3c8f47e5cae5f5072134c63dfa" + } + ], + "purl": "pkg:npm/eslint-plugin-react-hooks@4.6.0", + "type": "framework", + "bom-ref": "pkg:npm/eslint-plugin-react-hooks@4.6.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-plugin-react", + "version": "7.30.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "460c07ee18d6e3c06578ab18c872b9bd402fc6d13d48c3c32a670f45082d44261a640d1740fb7915292b5379e1cf989fccc65c03ca29c26449d9c98e3bcb6be4" + } + ], + "purl": "pkg:npm/eslint-plugin-react@7.30.0", + "type": "framework", + "bom-ref": "pkg:npm/eslint-plugin-react@7.30.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-plugin-standard", + "version": "4.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "64befe4118b18d347aff9dbc60d1b20e8b727df9b9390b2dfec1b1283c066fd52ab38227e44822e3e8dba1b86a268ca808cebfeefff50397e143b49c32d0e369" + } + ], + "purl": "pkg:npm/eslint-plugin-standard@4.1.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-standard@4.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-scope", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "d8dc706c5fe16742a97a960dd1c35ba3e14de97a0aec6687950860c7f848665e956b46c5e3945038ec212c8cbc9500dbb8289a7522c20671f608562aba2b796f" + } + ], + "purl": "pkg:npm/eslint-scope@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/eslint-scope@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-scope", + "version": "7.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "40a40cfd45e92221dc2ea27900ec885bb5d99b38e4cd05d8139e27d7efb06f4bbd57f69b5b797db909f15fc6795ddd7cc72288313500c90d24d5ef29cfa2d4af" + } + ], + "purl": "pkg:npm/eslint-scope@7.1.1", + "type": "library", + "bom-ref": "pkg:npm/eslint-scope@7.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-utils", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c3de1d418a1abb2be50dce375e7181f2553766def5def342860b78116c215c03f65e406f9dd7f117402022a28e39ab233c83f38fd26a8309306c2603d3f57766" + } + ], + "purl": "pkg:npm/eslint-utils@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-utils@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-utils", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "bae402e3720672dc3af29240d5181b412f3f34feeb721e82c1de23dd906d828e3ff05963e1e184ed96126513778aae69554bfa18f756e59d511657a8f38b8b0c" + } + ], + "purl": "pkg:npm/eslint-utils@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-utils@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-visitor-keys", + "version": "1.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e89ef637c50d6b8eb6c1afca14e0edfcf277214eb4483a42dd05c2d478dcd415d7a5f2f60bd479f8053b8e17b417a19112a54c87826ebbe358ef19fee9d8a951" + } + ], + "purl": "pkg:npm/eslint-visitor-keys@1.3.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-visitor-keys@1.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-visitor-keys", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d2b4a6441cd7803cc8b03ea619d2607afce07b3239df809eaf92ffbf2317d241f34ff8e2078de346177d61494c1982d0cb6ce9acd9a84fca9ab021ad63e41a2b" + } + ], + "purl": "pkg:npm/eslint-visitor-keys@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-visitor-keys@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-visitor-keys", + "version": "3.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "990facbaa2895727aec0660701d8cc16a8c2c9f97cf8b767c6eca9de576230114a92fcadad751959a88f0846aff2a0c72adcb8e1b0fea95d483f84fec3ec5744" + } + ], + "purl": "pkg:npm/eslint-visitor-keys@3.3.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-visitor-keys@3.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint", + "version": "8.17.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "82ad26d014c97dc8bad05cf89dccd8c4d025103fac31c8a196d9dd47cb7db757af9d4fdacf1e77c77b765075c2fee46371bbd1c3f5dcb6968dca04937100fe23" + } + ], + "purl": "pkg:npm/eslint@8.17.0", + "type": "library", + "bom-ref": "pkg:npm/eslint@8.17.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "espree", + "version": "9.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f6d75b42ed9c28b9322e639c7d5e74b413db16342841ec860a5ff5e9e5e423de715786a9a250307dab6ef2efaa0597c8d3837a57710c7f6e9c4c7ecdc22196c" + } + ], + "purl": "pkg:npm/espree@9.3.2", + "type": "library", + "bom-ref": "pkg:npm/espree@9.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "esprima", + "version": "4.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "786b85170ed4a5d6be838a7e407be75b44724d7fd255e2410ccfe00ad30044ed1c2ee4f61dc10a9d33ef86357a6867aaac207fb1b368a742acce6d23b1a594e0" + } + ], + "purl": "pkg:npm/esprima@4.0.1", + "type": "library", + "bom-ref": "pkg:npm/esprima@4.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "esquery", + "version": "1.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7020e2b295ade6f1c7b70318d98ac043889b16400bf116c7e581819d905cf7432896fbdf92441c26ba3f699880414950dea82b612e83eaff067391b9090b1cf7" + } + ], + "purl": "pkg:npm/esquery@1.4.0", + "type": "library", + "bom-ref": "pkg:npm/esquery@1.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "esrecurse", + "version": "4.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a67ca2f76fa1be457bcff0dd6faf74ead642ffa021609f63585c4b6a3fcfcbde929aa540381bc70555aa05dd2537db7083e17ca947f7df8a81e692d8bafd36a" + } + ], + "purl": "pkg:npm/esrecurse@4.3.0", + "type": "library", + "bom-ref": "pkg:npm/esrecurse@4.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "estraverse", + "version": "4.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfd9e729f7d6cfcc4dd4153fd9cefd9fd9c1f470f3a349e2614ab1eb1caa527ca8027432c96a4e4dd6447a209c87c041bb9d79b78c29f599a055f5619fd101a7" + } + ], + "purl": "pkg:npm/estraverse@4.3.0", + "type": "library", + "bom-ref": "pkg:npm/estraverse@4.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "estraverse", + "version": "5.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "30c74046e54443388d4de243f0380caa6870475d41450fdc04ffa92ed61d4939dfdcc20ef1f15e8883446d7dfa65d3657d4ffb03d7f7814c38f41de842cbf004" + } + ], + "purl": "pkg:npm/estraverse@5.3.0", + "type": "library", + "bom-ref": "pkg:npm/estraverse@5.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "estraverse", + "version": "5.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0716cd186366d11c9162f51d1e9230bfd216cde33d5c295b3b1c28013b8574e13b644eb01cbf874394fc8683ccfb31ef98acf3b04aa1832d06ad0e57d7769f89" + } + ], + "purl": "pkg:npm/estraverse@5.2.0", + "type": "library", + "bom-ref": "pkg:npm/estraverse@5.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "esutils", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "915b1ca97938382a7af126747648042958baffc8a3df4d0a0564c9ab7d8ffdd61e5934b02b8d56c93c5a94dd5e46603967d514fcb5fd0fb1564a657d480631ea" + } + ], + "purl": "pkg:npm/esutils@2.0.3", + "type": "library", + "bom-ref": "pkg:npm/esutils@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eventemitter3", + "version": "4.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "f20b870590b02a716161d1ebdb2b2e45612b4f08683765fc5c42d196b470a667de6368e3b94378b5a40cb142ca515a352b80ef665fb4a607f2a32b07c6f9af13" + } + ], + "purl": "pkg:npm/eventemitter3@4.0.7", + "type": "library", + "bom-ref": "pkg:npm/eventemitter3@4.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "events", + "version": "3.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "990c3ed9f9106c02f343b574318d08a9d9d734e793b4fe2bd2537dcfb0006b009782a79aedb0e28b6d0062b201ac577f1f1d0cd8e733e92d75d4268591471bd1" + } + ], + "purl": "pkg:npm/events@3.3.0", + "type": "library", + "bom-ref": "pkg:npm/events@3.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "execa", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f2e4a9659a1c01944100f20420d263dcba3d1f21a2b6595ccdcdbb121e586288e3305327f321cc0cc6941c4d89a9fab4e43ff0b9cc08e091944725edd6f721ca" + } + ], + "purl": "pkg:npm/execa@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/execa@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "exit", + "version": "0.1.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "0632638f8d877cc82107d30a0fff1a17cba1cd0c" + } + ], + "purl": "pkg:npm/exit@0.1.2", + "type": "library", + "bom-ref": "pkg:npm/exit@0.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "expect", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "135ab9852506d80998430409d38d67be0a643831d0bc1f912a507821876bbbab89b321534726403f8eb733ed6520da2bc1ba809948208baf96c240fc9424bf0f" + } + ], + "purl": "pkg:npm/expect@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/expect@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "extend", + "version": "3.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "7e3aae0b9f5c0fb0b25babab3572b4141b9f9197288861bcd304ee3ee8d7e7dd1c0794ed967db4136501e12fd601156a8577df665d8b3604be81074f2088a6fe" + } + ], + "purl": "pkg:npm/extend@3.0.2", + "type": "library", + "bom-ref": "pkg:npm/extend@3.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fast-deep-equal", + "version": "3.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f7a90f68432f63d808417bf1fd542f75c0b98a042094fe00ce9ca340606e61b303bb04b2a3d3d1dce4760dcfd70623efb19690c22200da8ad56cd3701347ce1" + } + ], + "purl": "pkg:npm/fast-deep-equal@3.1.3", + "type": "library", + "bom-ref": "pkg:npm/fast-deep-equal@3.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fast-glob", + "version": "3.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0a10eebdb3b2a4fb8d8cef322037f7eb1ec19595f5b267143134dcca8223c9c7b13b177a0c5b0ab20db5a95073126af71bb7d4288472dbfa6c8a2f82214b7b14" + } + ], + "purl": "pkg:npm/fast-glob@3.3.0", + "type": "library", + "bom-ref": "pkg:npm/fast-glob@3.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fast-json-stable-stringify", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "96177fc05f8b93df076684c2b6556b687b5f8795d88a32236a55dc93bb1a52db9a9d20f22ccc671e149710326a1f10fb9ac47c0f4b829aa964c23095f31bf01f" + } + ], + "purl": "pkg:npm/fast-json-stable-stringify@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/fast-json-stable-stringify@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fast-levenshtein", + "version": "2.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "0c25eee887e1a9c92ced364a6371f1a77cbaaa9858e522599ab58c0eb29c11148e5d641d32153d220fcf62bcf2c3fba5f63388ca1d0de0cd2d6c2e61a1d83c77" + } + ], + "purl": "pkg:npm/fast-levenshtein@2.0.6", + "type": "library", + "bom-ref": "pkg:npm/fast-levenshtein@2.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fast-safe-stringify", + "version": "2.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "52d9ba09dcd3fbac6c0e4da6f12eae2fc547c4dc08e89b9bf9ef4d6137009acdbc4fce294dadb9189415f63d02634375accf212b8c7a82ba45d8141ffb6ab054" + } + ], + "purl": "pkg:npm/fast-safe-stringify@2.0.7", + "type": "library", + "bom-ref": "pkg:npm/fast-safe-stringify@2.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fastest-levenshtein", + "version": "1.0.16", + "hashes": [ + { + "alg": "SHA-512", + "content": "7919c2b534ed199169402c2126250ebb13d05915d52980e7d1bd8f7877d72fafd98b9dd22c0cc01df5615562b602bc82fd61f4e6419fc611483ef4c5d125d0ce" + } + ], + "purl": "pkg:npm/fastest-levenshtein@1.0.16", + "type": "library", + "bom-ref": "pkg:npm/fastest-levenshtein@1.0.16", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fastq", + "version": "1.11.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec4733b3c8083c3ad5cd3f8492c60172ea6a332c521d75eb1ce2d1471536fc389c57cefcf4c441451f3e1dcdae5b352ea4eb38612e09cc1981c638c2541c43fe" + } + ], + "purl": "pkg:npm/fastq@1.11.0", + "type": "library", + "bom-ref": "pkg:npm/fastq@1.11.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fault", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "089d07081e6d2f97d84c403b4e802ae7e913c1dfbe068adfd7f6e27f177d893ef441c5ebe0c46b3b72e57fc21fb3bd2af9225c18716d9c813f370ea0882b4408" + } + ], + "purl": "pkg:npm/fault@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/fault@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fb-watchman", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e43c9290798ea42b09ae32b7ad061afb1ba56876bedb1700d84d72247c6d608ef3696b1053415dcf6d783a6d1d5cd543f88cf397d231d46db1c034bf6f46356" + } + ], + "purl": "pkg:npm/fb-watchman@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/fb-watchman@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fbemitter", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "29629a71e0b0290534f873e8a29ea09f878e1e4e746c1bff5718c9b4631fc2626ddc3dbd2693781f87a2b02b483c0f9af065416a6fa574c329323254be90f21f" + } + ], + "purl": "pkg:npm/fbemitter@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/fbemitter@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fbjs-css-vars", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "6f65c614015d5995a0d2986d0162c70a4f37e80d576a79fe23e0e07771a4eb83072993b8e057e80f52b1caf6d2874a99b08a174061a5573b4863ea22b493e945" + } + ], + "purl": "pkg:npm/fbjs-css-vars@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/fbjs-css-vars@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fbjs", + "version": "3.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "b9c574b433839c65772429e7926a2ccdbe657f86cda738eff342b8d7077893bf7c12dabe5180f4cb44c87da94b8d9a0a8238af7bafda764467b33c1aa620e005" + } + ], + "purl": "pkg:npm/fbjs@3.0.4", + "type": "library", + "bom-ref": "pkg:npm/fbjs@3.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "file-entry-cache", + "version": "6.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec6a6cfd75b299b2e4d902d82b8373a4c3ab623321748c57b88bf2d9006c2c4ea58eea1d2af7645acfdca72249dc25485691f43a2d47be0d68bdb3332dd14106" + } + ], + "purl": "pkg:npm/file-entry-cache@6.0.1", + "type": "library", + "bom-ref": "pkg:npm/file-entry-cache@6.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "file-loader", + "version": "6.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa8de096ac936bad58b60e2eef71ae96d8c71a3751ca2837b46ea53edc97fe338426f1e27fdb81d3f3822362a27fa72d17771a4135b61b98329b6d6802c238a7" + } + ], + "purl": "pkg:npm/file-loader@6.2.0", + "type": "library", + "bom-ref": "pkg:npm/file-loader@6.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fill-range", + "version": "7.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8ea3d17e74c5260b62dc6f805b56f9ca2714cf8c29be451a5ee200ee1abce42fb984565fdd8d84aed8e750d8f6b7d36378a2a91283d8abea368b589d94495a5" + } + ], + "purl": "pkg:npm/fill-range@7.0.1", + "type": "library", + "bom-ref": "pkg:npm/fill-range@7.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "find-cache-dir", + "version": "3.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b7618332dde8182feff81330ce6965583b8917fc5c0ed1398ff7c219ba830fb38bb89923d1c7e1d58480e5528fbf031e2c52cd0c193038a6765fce6318b55fb5" + } + ], + "purl": "pkg:npm/find-cache-dir@3.3.1", + "type": "library", + "bom-ref": "pkg:npm/find-cache-dir@3.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "find-cache-dir", + "version": "3.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "c17655e5e985123aeb89d220103d753a850a2f18988c072aa2dfcd25d0243a1949faf1b3c213807dc1b9397d633fe4b43dc8c49fc6dd309bfe8368f04373a78a" + } + ], + "purl": "pkg:npm/find-cache-dir@3.3.2", + "type": "library", + "bom-ref": "pkg:npm/find-cache-dir@3.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "find-root", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "34a7d6e9b79ce867ca734486c757b4ed0658f4f13df6ed017edff4af3483e64dec3bfbf09155290d42959b91a9a7951edd87d284f1535f6d3bd2d0ece6407d36" + } + ], + "purl": "pkg:npm/find-root@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/find-root@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "find-up", + "version": "4.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3e93b001d43f6255d0daf8fc6b787c222a43b98462df071e550406616c4d20d71cab8d009f0ec196c11708c6edd59b7e38b03a16af6cb88a48583d0eb2721297" + } + ], + "purl": "pkg:npm/find-up@4.1.0", + "type": "library", + "bom-ref": "pkg:npm/find-up@4.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "find-up", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "efcfcf5d3d7094b2c3813cc3b3bb23abd873cf4bd70fece7fbbc32a447b87d74310a6766a9f1ac10f4319a2092408dda8c557dd5b552b2f36dac94625ba9c69e" + } + ], + "purl": "pkg:npm/find-up@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/find-up@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "flat-cache", + "version": "3.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "766f6ce4fc3b25cd06bcc61bb2137acdc84203d460425cf31195f7bf2951f48a857d2f177226e551738a7d6e928ae2747b5dde0d8668655e7076b7afecfdcdc2" + } + ], + "purl": "pkg:npm/flat-cache@3.0.4", + "type": "library", + "bom-ref": "pkg:npm/flat-cache@3.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "flatted", + "version": "3.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "cc0a00422b9dcbeaf94af9d2c37289cb9a2cfe8449607cebce36bfb410eaad9b4d854c3c6edeb2f0e0733167235abfbc96257c11beb23a1c3c599ed5159e59cc" + } + ], + "purl": "pkg:npm/flatted@3.1.1", + "type": "library", + "bom-ref": "pkg:npm/flatted@3.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "flux", + "version": "4.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "c8a01bae9ec9859863eae893d454ee54c948013d49e23a84c81a450298b5931a46642bda70c55cfedd69310ca8b6a1e1020be81376cdbc0ca4842a3608b8e763" + } + ], + "purl": "pkg:npm/flux@4.0.3", + "type": "library", + "bom-ref": "pkg:npm/flux@4.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "focus-lock", + "version": "0.11.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "292b95deeaf881fd8aa8c368671de75cd561a82927e361ae4d8097e2d5cf1307f4323a4542634c88dea6edd5da517808a22bcbebfeb96a0a14320e112d2d156e" + } + ], + "purl": "pkg:npm/focus-lock@0.11.6", + "type": "library", + "bom-ref": "pkg:npm/focus-lock@0.11.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "follow-redirects", + "version": "1.15.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "d55cceb6e10cf290bd48553513ef0a7d38d9c8cced46c8047f0425e38cfc036e6ecb5de34b34e3e9dc8ad837f9da2574be01c27c1c0b84359ebcb9fde70e6fe9" + } + ], + "purl": "pkg:npm/follow-redirects@1.15.3", + "type": "library", + "bom-ref": "pkg:npm/follow-redirects@1.15.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "for-each", + "version": "0.3.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "8ea61f2e9ee6a3dbc8c907fcca45b6bfb03ed8de108de09e239f83cfd5eb6a23b58a09fcd708e21fb15bf6f48e5af41f36d9926b81f6468413aeb5e2bdd5199b" + } + ], + "purl": "pkg:npm/for-each@0.3.3", + "type": "library", + "bom-ref": "pkg:npm/for-each@0.3.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "foreach", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bee005018aeb260d0a3af3ae658dd0136ec1b99" + } + ], + "purl": "pkg:npm/foreach@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/foreach@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "form-data", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "4479012ad2d6515c1ded2a9122f099304bc0328194a745d4fac7908997a38f408ecf7448de158fe2c0afde065658b8c94ddeeb1b072c17978a6468a2d2bfe16e" + } + ], + "purl": "pkg:npm/form-data@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/form-data@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "form-data", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1131249521a2e6dd10319ba25e803f43abdc9f170b40fe6f76e812a6e0328ba4951a2d9c94f3e9fb180486e31a1c2fb31a09f7d4a776df95b7e5fec7ca491ac3" + } + ], + "purl": "pkg:npm/form-data@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/form-data@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "format", + "version": "0.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "c33b2003a58eabed3dc2b535b6c274f6e75e47f61945a780acbf5ed703db160dc61b6c839c2da574aa71b38c6e9e9145f4382a0aa388adaddb7351d6ac9dfb5b" + } + ], + "purl": "pkg:npm/format@0.2.2", + "type": "library", + "bom-ref": "pkg:npm/format@0.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "framer-motion", + "version": "6.3.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "c502e4f994a494db3940d09499d58fa4a30eb96881f19113b2f708396c3cc6fae2f4add36a6ba27e0088fc1e97a5a103474fd5d99405d969be814019ad7a3eaf" + } + ], + "purl": "pkg:npm/framer-motion@6.3.11", + "type": "library", + "bom-ref": "pkg:npm/framer-motion@6.3.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "framesync", + "version": "5.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a1ce66ebc1c33bfb6e2b66e58fb65c744051c77a753e3ae01daccbf06604a6f50b86bb462056d002b37a7104b64215bc9a2b5f7da07e558ccc8c3a81c7141ea0" + } + ], + "purl": "pkg:npm/framesync@5.3.0", + "type": "library", + "bom-ref": "pkg:npm/framesync@5.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "framesync", + "version": "6.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "7d463cf245ef1a2208b60342ef07133a5d123510955cc292596d98cdf9a7ec428d73e3290b3733f4385d1dc7636ebb4dddce91e07e5d4d8da3882a4f772b048c" + } + ], + "purl": "pkg:npm/framesync@6.0.1", + "type": "library", + "bom-ref": "pkg:npm/framesync@6.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fs-minipass", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "57f26038b1424be47a55cab4b250ae69e58474d0b7a2e0e524c348b1a707d95b402e2bbd995e0b3eb1dce5c0e5f24e5ac3a27c8f08165a9893a39458866233be" + } + ], + "purl": "pkg:npm/fs-minipass@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/fs-minipass@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fs.realpath", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "1504ad2523158caa40db4a2787cb01411994ea4f" + } + ], + "purl": "pkg:npm/fs.realpath@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/fs.realpath@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fsevents", + "version": "2.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "c62a8c411e3101e1d3b81f6e5a6f9f1517083a02813223813fe7978b24fb8ec8150aad5b915ca0b74d28012a3007b11db6938769a3e02adf35d8ff5a6fe0c328" + } + ], + "purl": "pkg:npm/fsevents@2.3.2", + "type": "library", + "bom-ref": "pkg:npm/fsevents@2.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "function-bind", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c88a2f033317e3db05f18979f1f482589e6cbd22ee6a26cfc5740914b98139b4ee0abd0c7f52a23e8a4633d3621638980426df69ad8587a6eb790e803554c8d0" + } + ], + "purl": "pkg:npm/function-bind@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/function-bind@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "function.prototype.name", + "version": "1.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "b8dee6fc1cd52909c2505fe25bc8d879aebbbfefb6bbb9b952010d6c746d74355c94e50ff8530f94235d9a4d21ff2b06ca8dad6af309103a8902425d45ad6f30" + } + ], + "purl": "pkg:npm/function.prototype.name@1.1.5", + "type": "library", + "bom-ref": "pkg:npm/function.prototype.name@1.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "functional-red-black-tree", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "76c28d40d763eb10374fe4250030c0ee6392957d2a88c20d8e7d1c82bf9e1871ac6d21f34da6dc228833dbea7f8aa3f55ece843ffb12d926ea1fe6eb1936ead2" + } + ], + "purl": "pkg:npm/functional-red-black-tree@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/functional-red-black-tree@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "functions-have-names", + "version": "1.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5c901517c9322a4fdeedab6c7600c6fe835eb76f9245cac624d31e2ac4d1706df42498d6688911dbeac3f323dfd0577dd67aebd5601508883e0dccd232a9a45" + } + ], + "purl": "pkg:npm/functions-have-names@1.2.3", + "type": "library", + "bom-ref": "pkg:npm/functions-have-names@1.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "gensync", + "version": "1.0.0-beta.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "de137b35ab2462f3032d0639e609d6dcd43e99eb0401ea53aa583e5446e3ef3cea10c055361cdc19861ea85a3f4e5633e9e42215ca751dcb0264efa71a04bcce" + } + ], + "purl": "pkg:npm/gensync@1.0.0-beta.2", + "type": "library", + "bom-ref": "pkg:npm/gensync@1.0.0-beta.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "get-caller-file", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f214fdc133fdd81d340e0942ffc343991d1d25a4a786af1a2d70759ca8d11d9e5b6a1705d57e110143de1e228df801f429a34ac6922e1cc8889fb58d3a87616" + } + ], + "purl": "pkg:npm/get-caller-file@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/get-caller-file@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "get-intrinsic", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "91666b9d5338d900a2100d888356c6f338e820c3a0c56c1808478d77063a4effdc392786a5ca17e295c77ca53134a56802b9eb12bd9ef6cae7031c4622b692f5" + } + ], + "purl": "pkg:npm/get-intrinsic@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/get-intrinsic@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "get-intrinsic", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f4e3dcba9c53aea26e701b245cdff81d4cb3bde1dc9254a4400a3d5198964141795b4cc86d3488245a4507abe8d8999bca7f5e045b51282679e36e6a078a3d1" + } + ], + "purl": "pkg:npm/get-intrinsic@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/get-intrinsic@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "get-nonce", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "1498584680da89ab5f12450af072a589c9aeff7486143e75ab78ad2831a8493cac4090677ce7315391b19e113513ab2807be8c6d3d0c06d9ca26e5f2031fbde9" + } + ], + "purl": "pkg:npm/get-nonce@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/get-nonce@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "get-npm-tarball-url", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "d9d3e1813d0ae295727224ea752d20afd9c4c32090c2df6a975fede4c09432f7235a3032b23189813ed2c789faa2aded1418c1376dfc9b15f845f4e34f7f37f1" + } + ], + "purl": "pkg:npm/get-npm-tarball-url@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/get-npm-tarball-url@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "get-package-type", + "version": "0.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a63cee2ad63ae0661f5a2ccd009d1fafd56ab6d6643622b6892e37d0bb481f38c112be9b5fc026db39b8b16e11a39c23596e5c02544bd6a00c4dc5db8cd00ed9" + } + ], + "purl": "pkg:npm/get-package-type@0.1.0", + "type": "library", + "bom-ref": "pkg:npm/get-package-type@0.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "get-stream", + "version": "6.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6ce968beda3de3423aa2ef4c3902537c0c59e44b00be32a9b113374400b076a976585775ff6f50937e03cb18934c7805b174f7d4f053b59acdcd51f68708f62" + } + ], + "purl": "pkg:npm/get-stream@6.0.1", + "type": "library", + "bom-ref": "pkg:npm/get-stream@6.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "get-symbol-description", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d8499d1f562f210899a65b4236092e8949f2ba4cf133f47a343257df529edc11b536ae5bd12d8f857e7d50a8bdbd9a4f0d055daa7fb521c680c27cd34f9bc28f" + } + ], + "purl": "pkg:npm/get-symbol-description@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/get-symbol-description@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "glob-parent", + "version": "5.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "00e22049009ea62258c0fdc04671b1fb95674eed870587736c63f8e5e2f0d6faf7cc1def64b7b279dd6c0bd8676dc39cf7f4ab33233944f42b906cf8692f59a3" + } + ], + "purl": "pkg:npm/glob-parent@5.1.2", + "type": "library", + "bom-ref": "pkg:npm/glob-parent@5.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "glob-parent", + "version": "6.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f1c08f043a1550816a7a8832feddbd2bf3a7f877a017eb3494e791df078c9d084b972d773915c61e3aefa79c67ed4b84c48eeff5d6bb782893d33206df9afe0" + } + ], + "purl": "pkg:npm/glob-parent@6.0.2", + "type": "library", + "bom-ref": "pkg:npm/glob-parent@6.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "glob-to-regexp", + "version": "0.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9645f51c95f0c8c729af0ff961465cdacec3ae90221c1db5fd5f84d6b1d4ad5368924bc1e9ba8ccd3d157d5ebff3a64d69bb75935e18388693ee70ef397dc88b" + } + ], + "purl": "pkg:npm/glob-to-regexp@0.4.1", + "type": "library", + "bom-ref": "pkg:npm/glob-to-regexp@0.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "glob", + "version": "7.1.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "3af0fd10dccf2db7a010d9d83f95147c9222ad3838f97c0c5866907d04d8d097a7c4dbef20a3f7537fed01048f22efe51f15d84999a95e55077aa00874acc12d" + } + ], + "purl": "pkg:npm/glob@7.1.7", + "type": "library", + "bom-ref": "pkg:npm/glob@7.1.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "glob", + "version": "7.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9662dfea0b72acfabcb538d29ab3bde3005e41b151dc76cb1dbbb20faf70bb2424226a76856a8c181e3b397eb914190f7df3bae3520ff6359ad73e22bea1b6e9" + } + ], + "purl": "pkg:npm/glob@7.2.0", + "type": "library", + "bom-ref": "pkg:npm/glob@7.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "global-modules", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3466df989069f71f08c722527753fea2d60af2fa27a0969cb4ea20ad57c5448004635ba48a5f1148a0f3d98a3bc21d688a1979d65febe96e1ea6478a247a8bf0" + } + ], + "purl": "pkg:npm/global-modules@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/global-modules@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "global-prefix", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6b00a89c9495087546343eb1ded98c68a710bf05cb8637649a89b2d96f86a1aba2f183e06205c965ec218377d60be0e57eaa90b9683c030aa31930f69c03d55a" + } + ], + "purl": "pkg:npm/global-prefix@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/global-prefix@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "globals", + "version": "11.12.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "58e069fc410652222c252a7bc1cbffcba30efa557d5289dc5aac6e15f9bc781c3358d8327c177a1b3f8878a43d8c29b28681fdf60d793374fe41a5471638b354" + } + ], + "purl": "pkg:npm/globals@11.12.0", + "type": "library", + "bom-ref": "pkg:npm/globals@11.12.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "globals", + "version": "13.15.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6e9cdc3a580384c1b4ef402fd15cb93b0925a6fd48ebe8fde8685423b461ec8cc308a2f36e87e52ebadfa8cbbc36ab836e247810e424ed7cc9c2a549c62731a2" + } + ], + "purl": "pkg:npm/globals@13.15.0", + "type": "library", + "bom-ref": "pkg:npm/globals@13.15.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "globalthis", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "b05748e4bc8188d4c78d177b7063d66a988758c3972b2b81357fdc589dcd7f3ad94156bc188ffc7287c297be00395aaaf56e6436682e4c8cc9ff5b3683223dc0" + } + ], + "purl": "pkg:npm/globalthis@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/globalthis@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "globalyzer", + "version": "0.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e34a0d4ccf547c6e9a066b8ac64fe08879f99d0f11573fd24b822beb38333aff7fa82de4299f6fe1eb464dc25b125fcdc95407ec5194eddf97d5e82be7b31dd9" + } + ], + "purl": "pkg:npm/globalyzer@0.1.0", + "type": "library", + "bom-ref": "pkg:npm/globalyzer@0.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "globby", + "version": "11.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e121768ecf2d6c6fc232a1c6abb964a7d538e69c156cf00ca1732f37ae6c4d27cab6b96282023dc29c963e2a91925c2b9e00f7348b4e6456f54ab4fd6df52de" + } + ], + "purl": "pkg:npm/globby@11.1.0", + "type": "library", + "bom-ref": "pkg:npm/globby@11.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "globby", + "version": "6.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "f5a6d70e8395e21c858fb0489d64df02424d506c" + } + ], + "purl": "pkg:npm/globby@6.1.0", + "type": "library", + "bom-ref": "pkg:npm/globby@6.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "globjoin", + "version": "0.1.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f4494ac8919e3767c5cbb691e9f463324285d43" + } + ], + "purl": "pkg:npm/globjoin@0.1.4", + "type": "library", + "bom-ref": "pkg:npm/globjoin@0.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "globrex", + "version": "0.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "b872606f000cc0d15fe662ecb7b2162cd835e31d4291eaa09496ff2b77688b8770eaad88bc002633f63cd647afcbcdf03fe4acb7e9eeb454d838683777596cc6" + } + ], + "purl": "pkg:npm/globrex@0.1.2", + "type": "library", + "bom-ref": "pkg:npm/globrex@0.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "gopd", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "77ae5b36521a771be96ff03669b55d96a2aa579eb78ee4676755ad93ab35b0847cb8db1747bd31a88cd5ab155fd5e4ea0ee9f04f632473311e69ecc2293661c0" + } + ], + "purl": "pkg:npm/gopd@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/gopd@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "graceful-fs", + "version": "4.2.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "36d371a947178295b688cadfa927d1ef71a5b77f4af812f05ac3ecf78c91eb7bf8e53d166de8fb79198be5c59fc0482a5e79a3429df36894ec85d456fea0b665" + } + ], + "purl": "pkg:npm/graceful-fs@4.2.9", + "type": "library", + "bom-ref": "pkg:npm/graceful-fs@4.2.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "graphlib", + "version": "2.1.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "8dc2cb7e4a68546987eff227302ff5848bce3d2521dfca09b4686face146ce2a04d4367ed185b5e918263898478ae593bc688943d675224e3726f9113d1bc4f8" + } + ], + "purl": "pkg:npm/graphlib@2.1.8", + "type": "library", + "bom-ref": "pkg:npm/graphlib@2.1.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "hard-rejection", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "548641fa26c3871ece6e101eece56da046ee3f887f32e3931c9f89f21fde057a2d2589747c1811ef6c431422a0221db638964839537104c5ae840af5d2bf0774" + } + ], + "purl": "pkg:npm/hard-rejection@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/hard-rejection@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has-bigints", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d2052d8b8db3414dfeb6f3b2446c4cef2607ed905e6a164982a3d8434690332a150e949fa1c7c75de144acd344a0b14370738eb5ec9f648b962d10294cd9f7c" + } + ], + "purl": "pkg:npm/has-bigints@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/has-bigints@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has-bigints", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "b52bc22ad06bf65905d04c7469088ff4df8ea55e338b6aff35e7b95644436daaafdf944b60ccdbc107c5499647d2447e45deb7d36509676a7f6c9084a11dd5a1" + } + ], + "purl": "pkg:npm/has-bigints@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/has-bigints@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has-flag", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5d454dc2199ae225699f3467e5a07f3b955bafd" + } + ], + "purl": "pkg:npm/has-flag@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/has-flag@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has-flag", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1329094ff4352a34d672da698080207d23b4b4a56e6548e180caf5ee4a93ba6325e807efdc421295e53ba99533a170c54c01d30c2e0d3a81bf67153712f94c3d" + } + ], + "purl": "pkg:npm/has-flag@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/has-flag@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has-property-descriptors", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "eb60d52d91a88840431d0caa1b8c3dc42b99ede244c0d989456c36558f3839e75bed615c036edf88455ef28510c7d840509e1e92eaeabae7131b0b323b55c675" + } + ], + "purl": "pkg:npm/has-property-descriptors@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/has-property-descriptors@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has-proto", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "eea13e88ff8ef9b805f5c944e7e528045cc4eb99a5062563ded282ae5350d0e8309b4063a53fe02b84a52d80ccc9b0e1e48dd30932a73cf6b4a0c1bb24362b86" + } + ], + "purl": "pkg:npm/has-proto@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/has-proto@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has-symbols", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "7215daefdacbfd40b62a55f5ee3a37bd11b3d1acda584c79b46a99839a4edcd532109541d7b74caee425cc208e7d4bc496084a726e75f78f81091be2d91bff1b" + } + ], + "purl": "pkg:npm/has-symbols@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/has-symbols@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has-symbols", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "9772c2b85e8c8033704c32a47581848a1623b79a513db120e3aaed9669d23e551b82607c2ce22b2896d86050526e73da25ec4c2ad88f3bc8667918d1cf64ddf8" + } + ], + "purl": "pkg:npm/has-symbols@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/has-symbols@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has-tostringtag", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9058dc48d867946575932a0693b3972926b01f924e6ff2f351ce70f41d3684e4ced1d7c54636c740abe0d5de9c7f71db7949ad53d55b6d5deacd9d937a1f7b59" + } + ], + "purl": "pkg:npm/has-tostringtag@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/has-tostringtag@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f676f3b4554e8e7a3ed1916246ade8636f33008c5a79fd528fa79b53a56215e091c764ad7f0716c546d7ffb220364964ded3d71a0e656d618cd61086c14b8cf" + } + ], + "purl": "pkg:npm/has@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/has@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "hast-util-parse-selector", + "version": "2.2.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "ee3ea6ae4feaaa449e86c33ddb0423748816336fc15bad6eff9dc6eb1982f22d4e98474a2c76e4e35f50290523cfa2e0956b1faa88879b231190fd411a379c35" + } + ], + "purl": "pkg:npm/hast-util-parse-selector@2.2.5", + "type": "library", + "bom-ref": "pkg:npm/hast-util-parse-selector@2.2.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "hast-util-whitespace", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3e4c3ec411ee57ac45789a6b25ed81044a0357e02f43249acf7a4f0d152ce4f35910c423a57249b9eaaba5c1c85f19d64dc0068bf50e0a0552865918ea42e8aa" + } + ], + "purl": "pkg:npm/hast-util-whitespace@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/hast-util-whitespace@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "hastscript", + "version": "6.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c333a6ef77b948a835226048aee5297ffba45e3f404c93fd9fe14fd1a2871cc648f43f99e6f9a70ce4fac627fb7923ca8f1a2a99484ea1540c1911d648bcfe3" + } + ], + "purl": "pkg:npm/hastscript@6.0.0", + "type": "library", + "bom-ref": "pkg:npm/hastscript@6.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "hey-listen", + "version": "1.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "08ea66ac5d8d3a0e13056509e5457268253603cf3010c9143cae2136ac8292a1dbc53f7605bbdf8e84a8ce4008226e978627069491e115dba59489eb761c14f1" + } + ], + "purl": "pkg:npm/hey-listen@1.0.8", + "type": "library", + "bom-ref": "pkg:npm/hey-listen@1.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "highlight.js", + "version": "10.7.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "b7371415aba2b1628d1da4643785a397f640d3b8043408c597727f738f34769ae4193839110b2d81a345a817d4a82ab9e2465120472b793b00805fe6daab83ec" + } + ], + "purl": "pkg:npm/highlight.js@10.7.3", + "type": "library", + "bom-ref": "pkg:npm/highlight.js@10.7.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "history", + "version": "5.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "66a68ac238eb0185187cb1be86d19a2086789e2a17d8bef4654308172b12df1bc1b121b8c7f9f557a4d757737c65836e1469438ab160df64fb07a58e50f0d871" + } + ], + "purl": "pkg:npm/history@5.3.0", + "type": "library", + "bom-ref": "pkg:npm/history@5.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "hoist-non-react-statics", + "version": "3.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe01a2bf18bc24f296366fd6d234a6cdc30fa5fa4f2dcddd63fe86c615f6850f621a3dda0df925578113ecd8caa528a72e9279bda7daf62886204660d7449f07" + } + ], + "purl": "pkg:npm/hoist-non-react-statics@3.3.2", + "type": "framework", + "bom-ref": "pkg:npm/hoist-non-react-statics@3.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "hosted-git-info", + "version": "4.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "73d3865db67782e0bfc4e9428350a2fd5816970b2a0efd723102f5096a970cbd210e35ee35cab4cee478c6a3d2b9ab08de4a850e1a92c938d1133e60cead1f5e" + } + ], + "purl": "pkg:npm/hosted-git-info@4.0.2", + "type": "library", + "bom-ref": "pkg:npm/hosted-git-info@4.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "html-encoding-sniffer", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f925b38c04847f4d5664b9b1d3f8ec93dbbd3942fa20516e08067ea71ddef9e8ec2279217d6836058f876fe871c454661b1da2c44dadd6820658596332cb765" + } + ], + "purl": "pkg:npm/html-encoding-sniffer@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/html-encoding-sniffer@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "html-escaper", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "1f688cb5dd08e0cb7979889aa517480e3a7e5f37a55d0d2d144e094bb605c057af5d73263a9f66c8dad4bc28340fac2cf22aa444f05f28781bc228354a694b7e" + } + ], + "purl": "pkg:npm/html-escaper@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/html-escaper@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "html-tags", + "version": "3.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "cedab20b790bb68d1ef566cda7469e3fe337913b7e9db688bde1a653102d65afbc88580a2d4383e1828ce63f9fdd00fcf5badaed47ae9a89591cab8e5e74e679" + } + ], + "purl": "pkg:npm/html-tags@3.3.1", + "type": "library", + "bom-ref": "pkg:npm/html-tags@3.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "htmlparser2", + "version": "3.8.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "996c28b191516a8be86501a7d79757e5c70c1068" + } + ], + "purl": "pkg:npm/htmlparser2@3.8.3", + "type": "library", + "bom-ref": "pkg:npm/htmlparser2@3.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "htmlparser2", + "version": "6.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "832c8f93aae0a272c51031a879181035a114bdd27892d4e699487f876b7bb3e33ca0fa483f180d00259afba112479ee45ecb70a8f882badd15f0d469730814ec" + } + ], + "purl": "pkg:npm/htmlparser2@6.1.0", + "type": "library", + "bom-ref": "pkg:npm/htmlparser2@6.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "http-proxy-agent", + "version": "4.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "934cdd360a964c603a69e211569bdf5686f87cbe767537da7a1ca583463852f4b24af3aafd8f813b23eb82952b03b1f296abd4f2f2191ac46e5e6b29b245744e" + } + ], + "purl": "pkg:npm/http-proxy-agent@4.0.1", + "type": "library", + "bom-ref": "pkg:npm/http-proxy-agent@4.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "http2-client", + "version": "1.3.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "9d4c4bca6590f69ce4cd39a2af6e29d91b6c82bb8b9a18deee51f784b5f5229c2fc9383bedf5bed5bade9cf3cfdd448047ead0dfaa79b1303fc7bb2308956400" + } + ], + "purl": "pkg:npm/http2-client@1.3.3", + "type": "library", + "bom-ref": "pkg:npm/http2-client@1.3.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "https-proxy-agent", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "124626e4170a50689dbb1cd2b77129a64a3e3e2356344a5ae324a4f6f4c2eb00ec4095bdac749af94846349a11629edbcfa1edd5e69121ae90689a8ee6b0856c" + } + ], + "purl": "pkg:npm/https-proxy-agent@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/https-proxy-agent@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "human-signals", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "07814567aabf4f68e1864b2091b116dc706f5887c35bce6c9e44206b0b74ed2ec9e505d393a064355fb4c80799acce50a4c01d625a1c1a89639f4b09fd642417" + } + ], + "purl": "pkg:npm/human-signals@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/human-signals@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "iconv-lite", + "version": "0.4.24", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf73179d901cbe7cb091350466898801cb657bb4575de79d391df5c3097b565ca85cee108bd6abbd27a73505a77b54dc4708422f51f02c8db56c4a9da63f3fac" + } + ], + "purl": "pkg:npm/iconv-lite@0.4.24", + "type": "library", + "bom-ref": "pkg:npm/iconv-lite@0.4.24", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "icss-utils", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b281617e509558b7d134e3d4de2bf967d554753e38c4545bce32ec1334abe4042682a3cc4c7754dcf313d427f5b2cc7c7cb3490c0d63b9fb5897e3d472fdcca8" + } + ], + "purl": "pkg:npm/icss-utils@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/icss-utils@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ignore", + "version": "5.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "3006f7f017126c7d1e1cd0719fbaa5d8d1ff917df73a4077959d4135d87b10d7910a11d362c4ef5ab32e6e220030d4b69655c4120675314381b570a13f791a15" + } + ], + "purl": "pkg:npm/ignore@5.2.4", + "type": "library", + "bom-ref": "pkg:npm/ignore@5.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "import-fresh", + "version": "3.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "bde6188506be0f54012b39ef8541f16fc7dac65af0527c6c78301b029e39ec4d302cd8a8d9b3922a78d80e1323f98880abad71acc1a1424f625d593917381033" + } + ], + "purl": "pkg:npm/import-fresh@3.3.0", + "type": "library", + "bom-ref": "pkg:npm/import-fresh@3.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "import-lazy", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "acab6fa3a6bcebc6f91eede17a7794f8be32110e2360a2ed8e99cf79474aee1d32cd71a6c814f2a649e5902bc7141a9f5fd625a2b12230ce839eaff96ad7c793" + } + ], + "purl": "pkg:npm/import-lazy@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/import-lazy@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "import-local", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c4f626946370971fc0b07da9ff69b0ca0317b52864fd9321ac04fa9fe8330aff3d1ad8ecc0b2bba4798360207e9c1f95ebe39da36f54d42fcad27c22e367db8" + } + ], + "purl": "pkg:npm/import-local@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/import-local@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "imports-loader", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ccfbda9e028482bacf7aa794a87d1485ce7d62a2b4ec9a99062f5af5c437bff10a508aab6c91d8e02bd4ac3bacda58106b90263f25ee1ab58ff09253ab313945" + } + ], + "purl": "pkg:npm/imports-loader@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/imports-loader@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "imurmurhash", + "version": "0.1.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "9218b9b2b928a238b13dc4fb6b6d576f231453ea" + } + ], + "purl": "pkg:npm/imurmurhash@0.1.4", + "type": "library", + "bom-ref": "pkg:npm/imurmurhash@0.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "indent-string", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "11d0c366ee00d8ec882bb2ebff6cc6fb0e6399bba4d435419c4c11110bc1ceca412640846d16bc1b153596085871a1890a745689b8c35e5abbefd5f5ff2e71c2" + } + ], + "purl": "pkg:npm/indent-string@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/indent-string@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "indent-string", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9ba140a3fb299ac5b601bd9f537e494d8c2d38a6b6c80c174b08234afd53273878321ee60b797300e54b069adbef65ec4eb824108b25ed8ac53408838918481a" + } + ], + "purl": "pkg:npm/indent-string@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/indent-string@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "infer-owner", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "202963f97cfde3e77b8ab1f9a91c9f2689ce75f4f3b836a27c4e993d67f1d0dd3efc04d909bb933eada9ac5979dbabab91077dd16c942888750df050da1333f4" + } + ], + "purl": "pkg:npm/infer-owner@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/infer-owner@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "inflight", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-1", + "content": "49bd6331d7d02d0c09bc910a1075ba8165b56df9" + } + ], + "purl": "pkg:npm/inflight@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/inflight@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "inherits", + "version": "2.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "93fbc6697e3f6256b75b3c8c0af4d039761e207bea38ab67a8176ecd31e9ce9419cc0b2428c859d8af849c189233dcc64a820578ca572b16b8758799210a9ec1" + } + ], + "purl": "pkg:npm/inherits@2.0.4", + "type": "library", + "bom-ref": "pkg:npm/inherits@2.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ini", + "version": "1.3.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "255ff2ba0576bb35b988c4528990320ed41dfa7c6d5278de2edd1a70d770f7c90a2ebbee455c81f34b6c444384ef2bc65606a5859e913570a61079142812b17b" + } + ], + "purl": "pkg:npm/ini@1.3.8", + "type": "library", + "bom-ref": "pkg:npm/ini@1.3.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "inline-style-parser", + "version": "0.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ecd5e896c2b80804b9fb1bdd8f938c31b23deb6854ff0bf0a3193e2d647d124f5b56dcaeb9849c0cde9e4b4ad49ba4f1029169c3b097d68e2e27371de00c83dd" + } + ], + "purl": "pkg:npm/inline-style-parser@0.1.1", + "type": "library", + "bom-ref": "pkg:npm/inline-style-parser@0.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "internal-slot", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "3b40c1d490bfb0fc9997b708a3bf27e5d47b7944b0c2960f8974614f337165500c52e07cbe59d11722f176b553a24b3a5cf2d59c57dbcda55de562e386083ebc" + } + ], + "purl": "pkg:npm/internal-slot@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/internal-slot@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "internal-slot", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "63e479849af3b39d90086da568b9f8b9d6159f1b1f9f2f42a4e84d854be4fd249257217a4f6ec5cd16c5d2cae83e2752bb75fca040243a7d8af34e268e9b7a51" + } + ], + "purl": "pkg:npm/internal-slot@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/internal-slot@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "internmap", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "94307961c70cc9d141b5ab15b719d9dcc4411ee6a813c18ab29a6af8472128bd94e272bf0e61293c7347f0c65ee4790cb694a24d2399c1f374b736233bf94913" + } + ], + "purl": "pkg:npm/internmap@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/internmap@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "interpret", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "26ed01cff70489ae79c43c145846bcfa8945a42890a32a639d0c92b1e2ad9a336b9e9b373fec5fa54986afdd13ef28e554998eb726d1bcf5e128c6c7afe7d69f" + } + ], + "purl": "pkg:npm/interpret@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/interpret@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "invariant", + "version": "2.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "a6125f41506e689339ada3a926349f9220fa0696c213836cfff2da5e5eb0198b54058f379d64ba45ff6d5e6d9ef1568aeb42448d895d6cf89ffc0d81d42da034" + } + ], + "purl": "pkg:npm/invariant@2.2.4", + "type": "library", + "bom-ref": "pkg:npm/invariant@2.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-alphabetical", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f0cec034e0b435d051d366e2f4fe0ad50e4e2b168547d698c04e863006b1d2c5cac120642e5eb40cb43e54d5bd14d975602990932cb3fcbb6431aa1cb797656" + } + ], + "purl": "pkg:npm/is-alphabetical@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/is-alphabetical@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-alphanumerical", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "533a1952bf977d5cf7b77bf82b21849e254bf410d1a10b58eed3b2ad1c9b9153630c55b2a35ca15cd1abac14d0c69de26fd04b016b3b93660a050b05464646f4" + } + ], + "purl": "pkg:npm/is-alphanumerical@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/is-alphanumerical@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-array-buffer", + "version": "3.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbe172c91ff0f2f7c846ae1e41c3351188124e79875cfa9a17e220ce0adacad085ab95e1f259650d598066894f26266db592de15220d3d831a109effbd651ad7" + } + ], + "purl": "pkg:npm/is-array-buffer@3.0.2", + "type": "library", + "bom-ref": "pkg:npm/is-array-buffer@3.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-arrayish", + "version": "0.2.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "77c99840527aa8ecb1a8ba697b80645a7a926a9d" + } + ], + "purl": "pkg:npm/is-arrayish@0.2.1", + "type": "library", + "bom-ref": "pkg:npm/is-arrayish@0.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-arrayish", + "version": "0.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "79546a0af56565bbb0dc6acceb7a2f352340780d4ad7a91a47f2d163ff76c34cf1439ff5633c1b9545fae768b85ecf51c001a35bd77dcba5fcf2df0e68025f59" + } + ], + "purl": "pkg:npm/is-arrayish@0.3.2", + "type": "library", + "bom-ref": "pkg:npm/is-arrayish@0.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-bigint", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "d09579f9238242421dce304af5bb8045c57cd380ddbbb03441eb7ab078b7162984f677ba9b80464197d19fe3598976c19381785e61df0d9222a4b8fda57f1d48" + } + ], + "purl": "pkg:npm/is-bigint@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/is-bigint@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-boolean-object", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d77505a410205420070291e1f5ba7c092c8a5961a6b956fbb2812c92fdcda57fbd7d9932990d4e54743465a5dd355230038265bc45fa9a3fe9916953ddaff36" + } + ], + "purl": "pkg:npm/is-boolean-object@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/is-boolean-object@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-buffer", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b647accd143c20107272414b49124d17162d62d1d3c59ffa2a8cadffbcf09c0de26f5b9350f3757c41b89c7c5d52ba939a07487c9ed8010b662213b75fc9cb5" + } + ], + "purl": "pkg:npm/is-buffer@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/is-buffer@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-callable", + "version": "1.2.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "d410b40551614bfa74aadc3a7a7a7c7bef0e0f452b2b4a052f3b528cdce170a037583b89c7100f5f33ee3ed2a48c463d514a045a55fff1f80a7aed92f22f494c" + } + ], + "purl": "pkg:npm/is-callable@1.2.7", + "type": "library", + "bom-ref": "pkg:npm/is-callable@1.2.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-callable", + "version": "1.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "2750dc31ef14613052aca7b3b885135308d7b21a36f7af77ba75ccd98849513476b712bf786e3b6ef35aff08a93c5999160aff37a7f5180eba76fd261324c8c9" + } + ], + "purl": "pkg:npm/is-callable@1.2.3", + "type": "library", + "bom-ref": "pkg:npm/is-callable@1.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-callable", + "version": "1.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "9ecbb0b7165f317ebb3abca5f4b090faea670b4674060a709eda52f3d9b51ff4cb174ccd7f37cb315ffd59affa319b23d1a72912300ed0a175c53e9974b97de7" + } + ], + "purl": "pkg:npm/is-callable@1.2.4", + "type": "library", + "bom-ref": "pkg:npm/is-callable@1.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-core-module", + "version": "2.11.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4518f196f2c3903d582700dbae804731bf9cba4bab90358dc87c7b0f7a0d079c7dadbe6881c92c302e701c269d717a28ebb815afffb7185c92877d77e338baaf" + } + ], + "purl": "pkg:npm/is-core-module@2.11.0", + "type": "library", + "bom-ref": "pkg:npm/is-core-module@2.11.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-core-module", + "version": "2.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e80d9f91fab5adf790663c6b64919eae92c24c744d101892827bb4fa86de26910f651528a0782c8b3bf3bf46632703b3de25881dd26d55627fb663ebdc3db5fc" + } + ], + "purl": "pkg:npm/is-core-module@2.4.0", + "type": "library", + "bom-ref": "pkg:npm/is-core-module@2.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-core-module", + "version": "2.12.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "43866e0407b6154b0ab72409a101e5bcff0ebc1111c4ede3126cb523b85c457709046187161fda241b306d7b92f6c82b0c7d9050ef22964c0d3c7bc731df1c96" + } + ], + "purl": "pkg:npm/is-core-module@2.12.1", + "type": "library", + "bom-ref": "pkg:npm/is-core-module@2.12.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-core-module", + "version": "2.9.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fb914fcb93e7c263b796f7cc6f402ca0f6811bee4a1d4234c181573ad60f9d5555b294c552e31935f35a35546ddc565a76cb6ed9cf31db7bf29115bf341a14e8" + } + ], + "purl": "pkg:npm/is-core-module@2.9.0", + "type": "library", + "bom-ref": "pkg:npm/is-core-module@2.9.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-date-object", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "fdbe1956c1bb6795d5b48c6cfe1f56f27bdf2e0480c8a61db465902dbab2ea303589c9a08dff160a84ca81e4b8c32e6d61a3de3e8bb314c00d6e78fde1cd99f8" + } + ], + "purl": "pkg:npm/is-date-object@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/is-date-object@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-decimal", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "44676b88c99042f6766aa690ab76b0340e9d086b4aa620c570eceb4d6ac3013d8c896aca4153e6c4b18797b6369cdbba95e774904ca85f47a7634a9762cbfdcf" + } + ], + "purl": "pkg:npm/is-decimal@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/is-decimal@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-extglob", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "a88c02535791f02ed37c76a1b9ea9773c833f8c2" + } + ], + "purl": "pkg:npm/is-extglob@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/is-extglob@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-fullwidth-code-point", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "cf29a6e7ebbeb02b125b20fda8d69e8d5dc316f84229c94a762cd868952e1c0f3744b8dbee74ae1a775d0871afd2193e298ec130096c59e2b851e83a115e9742" + } + ], + "purl": "pkg:npm/is-fullwidth-code-point@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/is-fullwidth-code-point@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-generator-fn", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "713201e323d82ff1abc3411a4b3012ce0e9b072f60a82a1fbd637ca244e1018231289642fae7654409866ccd172de9e21094acf2e1201cf1ae1d27b55ec38b49" + } + ], + "purl": "pkg:npm/is-generator-fn@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/is-generator-fn@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-glob", + "version": "4.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e46d2d2ad05314898ea839cb076846e81a76a9c28415dba8e2d66ef4c4ff1fa350bff821872df4a39e6e7da7f127f2dd1fbf4b2ecd8a7eb9fce532cac80ec152" + } + ], + "purl": "pkg:npm/is-glob@4.0.1", + "type": "library", + "bom-ref": "pkg:npm/is-glob@4.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-glob", + "version": "4.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5e9526b21c7dfa66013b6568658bba56df884d6cd97c3a3bf92959a4243e2105d0f7b61f137e4f6f61ab0b33e99758e6611648197f184b4a7af046be1e9524a" + } + ], + "purl": "pkg:npm/is-glob@4.0.3", + "type": "library", + "bom-ref": "pkg:npm/is-glob@4.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-hexadecimal", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "8323c9baff376c7329a1c558a2aa1fe550e266f784a06a052fc9b705735bd955bc5ecfabcfd92a3bc2ce4390c7e84b2ebe2953d40a5acd4d29ca5fb2b5b3ed97" + } + ], + "purl": "pkg:npm/is-hexadecimal@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/is-hexadecimal@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-negative-zero", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "db3e89cd0bd945af40d98ef10ba750426e054934933568ca218613b78db8e9e313266228d10f99c8eb14eba5fc9712b501b07dd9d15e8253cbae1c2979128eeb" + } + ], + "purl": "pkg:npm/is-negative-zero@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/is-negative-zero@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-negative-zero", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "76a26f6ab2dac17b056cd0de256ef3033f08b49f5c776f18b9fbae1738741bca4d1e324c9d8d3c0efeec617dae17952940ec2278078e13111801659fbbb65950" + } + ], + "purl": "pkg:npm/is-negative-zero@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/is-negative-zero@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-number-object", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "454d2523f9fde6932850abbdbf50593f9301719b8d495264324006d9d26a0b8cf61a590650d787ebc4ae1ee04a043fd715ef8b1d9f9ff412a42c44fad0d89e77" + } + ], + "purl": "pkg:npm/is-number-object@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/is-number-object@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-number", + "version": "7.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e350a27e483a7bc4f2952a5db53a5e2d532abd20445734edb47bc4443ef8d7ea6767c00dbf4d34e0c44be3740a3c394af5c1af369e8d6566540656c65d8c719e" + } + ], + "purl": "pkg:npm/is-number@7.0.0", + "type": "library", + "bom-ref": "pkg:npm/is-number@7.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-path-cwd", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c3de366d372287c7dd24f266407173912efa3443fc2b3cef9b0f76717b1acdbf229edc0ba8f89b3cf7577f800d74a577ad832eb90606216b6fcfd262941dcd15" + } + ], + "purl": "pkg:npm/is-path-cwd@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/is-path-cwd@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-path-in-cwd", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "acda1c5c7822a4efabbe73fa764df3236d11a4eb6b00cfe4cdb076e7c530e415abdd3a578bceb5cb38e8d7a0e7e21528c74ee2c3903278c2c75acba3923cef45" + } + ], + "purl": "pkg:npm/is-path-in-cwd@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/is-path-in-cwd@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-path-inside", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c22ca14f37c35acbf0016e77381585e73baf68e1a567a3f063101b3d50e1a66fa0334f712901a306affcb98375d9a0ef3319c09eadddc53ca84a844d9a0e5816" + } + ], + "purl": "pkg:npm/is-path-inside@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/is-path-inside@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-plain-obj", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "71a50c8429dfca773c92a390a4a03b39fcd51d3e" + } + ], + "purl": "pkg:npm/is-plain-obj@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/is-plain-obj@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-plain-obj", + "version": "4.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8f822faf32e50d909c84c62301b792251683322a7af9ce127852ca73e7c58e841179428219905c8d1c86c102d1f0cd502093946d9dd54db0344deb5fe6983aa" + } + ], + "purl": "pkg:npm/is-plain-obj@4.1.0", + "type": "library", + "bom-ref": "pkg:npm/is-plain-obj@4.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-plain-object", + "version": "2.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "8793e98179168ad737f0104c61ac1360c5891c564956706ab85139ef11698c1f29245885ea067e6d4f96c88ff2a9788547999d2ec81835a3def2e6a8e94bfd3a" + } + ], + "purl": "pkg:npm/is-plain-object@2.0.4", + "type": "library", + "bom-ref": "pkg:npm/is-plain-object@2.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-plain-object", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5514b32a46cc9b98cc0e828b6e5b4090543942bed50e24c5197c581575e8c158f7f3b19e18d382b0e1fa32ccb4d12199dc5a7ce1bd4d69ad69b2a81c08810fe5" + } + ], + "purl": "pkg:npm/is-plain-object@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/is-plain-object@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-potential-custom-element-name", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c261e440dab5626ca65dfacdbadb98069c617fb7b0d2a83b3874fec2acb0359bb8ca5b3ea9a6cd0ba582c937c43ae07b663ca27586b3779f33cd28510a39489" + } + ], + "purl": "pkg:npm/is-potential-custom-element-name@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/is-potential-custom-element-name@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-regex", + "version": "1.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "a92557173dbc1ccef2f88597eaf2c2b1ec5d96fcd3d4f24d15206e6902d0e68d08130f140d85baff6f9e08c57222c6ccf0234b5f66bf416992a72c5810763b09" + } + ], + "purl": "pkg:npm/is-regex@1.1.3", + "type": "library", + "bom-ref": "pkg:npm/is-regex@1.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-regex", + "version": "1.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "92f45dc43b31663873517d3b6672f27734b54d4fd32654d41c763860b2fcededfba14038f437e42ea832f958c5a1ca30cb6f5c2af7128aefa422fef6f234d356" + } + ], + "purl": "pkg:npm/is-regex@1.1.4", + "type": "library", + "bom-ref": "pkg:npm/is-regex@1.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-shared-array-buffer", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "b2a376503bb5ff4cbabaf5f24ad08ecf28408c24a51dc785a0c2895bc5bd114f5cbe273f41db19d24114f771c4cb7214105648887ff7c3e007fd441b3c735d84" + } + ], + "purl": "pkg:npm/is-shared-array-buffer@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/is-shared-array-buffer@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-stream", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "845a222624e5eb79e7fa4b2d1c606d7b05922a740ba726f5e7928785e035977f6ebed3bd9d6228a75a77b9da8f71477fc5b17554b30ee27ece23aa7b45b9e00e" + } + ], + "purl": "pkg:npm/is-stream@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/is-stream@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-string", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "da07736ca52eaad43795836b513418a0294f866ee842ee14769499329d7f0c68241c14fc136675974c8c75be83e33340c700e232ff0c76e94a44e246365d10d3" + } + ], + "purl": "pkg:npm/is-string@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/is-string@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-string", + "version": "1.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "b44d945f38af8deea87cf5bb976ddc8c338c6b4f606fbc6502a1ba8c6e5e8fab8f577d939563f734a3e282d68678736ef5fa2171c458bc889931f38e9ce614b6" + } + ], + "purl": "pkg:npm/is-string@1.0.7", + "type": "library", + "bom-ref": "pkg:npm/is-string@1.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-symbol", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "0bf08f06a2969ef75cc6a200471c8e878bf551410e087a600dad16620a4a0c532ccdcacf71f7e0e6e8704a03c22c3d965b19aaea2b22b33f3bb734f4d6db8686" + } + ], + "purl": "pkg:npm/is-symbol@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/is-symbol@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-typed-array", + "version": "1.1.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c9aa010789666f329685677b9373c9073cce3ee000d39439e2b902fb714fd40c0d1097b17bd3219f1e987770b35ef9cf6da1a8a0bfe0c5cd324a85cd82b4ee8" + } + ], + "purl": "pkg:npm/is-typed-array@1.1.10", + "type": "library", + "bom-ref": "pkg:npm/is-typed-array@1.1.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-typedarray", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "e479c80858df0c1b11ddda6940f96011fcda4a9a" + } + ], + "purl": "pkg:npm/is-typedarray@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/is-typedarray@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-weakref", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "a9cb6cb8b666210d3ebd248c7e856fc857b6f86484be7999d9ecd3ba9d5206c7bdfadc0209e89a97a1048b735cd8a15c7fafaacf61413e78d7b24f3184a49a3d" + } + ], + "purl": "pkg:npm/is-weakref@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/is-weakref@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "isarray", + "version": "0.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "8a18acfca9a8f4177e09abfc6038939b05d1eedf" + } + ], + "purl": "pkg:npm/isarray@0.0.1", + "type": "library", + "bom-ref": "pkg:npm/isarray@0.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "isexe", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + } + ], + "purl": "pkg:npm/isexe@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/isexe@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "isobject", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + } + ], + "purl": "pkg:npm/isobject@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/isobject@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "istanbul-lib-coverage", + "version": "3.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "78e789e411c298762f40aef1b7d1a4747bb3b82192d58ea0f46be7c77626df77f3fc7a4b458c624b4c0736bfa6fcc042f01eb8ed7b7ad3cbc20c4be197d73a33" + } + ], + "purl": "pkg:npm/istanbul-lib-coverage@3.2.0", + "type": "library", + "bom-ref": "pkg:npm/istanbul-lib-coverage@3.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "istanbul-lib-instrument", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "733c14cf9db9ae43850c9c5f28aea661f22cf7304a20bcab650c63cf700186341785b845b126e8d475bf04572c0e77c9609580ead851479fd3518daab395bdf5" + } + ], + "purl": "pkg:npm/istanbul-lib-instrument@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/istanbul-lib-instrument@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "istanbul-lib-report", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c1c762fae00acdf8864f669b3e9299d21494d6b1908d44272efb58e4ca50ed00936a10f754e0e172ee3071f63562d9066830f9caec9d38b20d5ec7dbbacf513b" + } + ], + "purl": "pkg:npm/istanbul-lib-report@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/istanbul-lib-report@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "istanbul-lib-source-maps", + "version": "4.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f7b3c13091d1482421b704f28162fb248171a8cbcf00473bde8248ad93ad0dc5177096d2ce4da1fb09488c457bf0628ae5d10ef5da212371607e7cafccad657" + } + ], + "purl": "pkg:npm/istanbul-lib-source-maps@4.0.1", + "type": "library", + "bom-ref": "pkg:npm/istanbul-lib-source-maps@4.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "istanbul-reports", + "version": "3.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "af5fc3b2137829213bc561249d92cb2cb0e7e422726d5de7c34d554e4a7a0f98f32ee10b95c6ee75f8ff792405beb2ac26e4d50869de3ceee1a3cd8dc3dcf37f" + } + ], + "purl": "pkg:npm/istanbul-reports@3.1.4", + "type": "library", + "bom-ref": "pkg:npm/istanbul-reports@3.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-canvas-mock", + "version": "2.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2159d18b3fafe04627df274cfe9068f065bf27e9d4fc783980705040e51085d47235fbc79da6c1f117aa0112ced29fa4bd0821aabe15d2d03dd8217725c51246" + } + ], + "purl": "pkg:npm/jest-canvas-mock@2.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-canvas-mock@2.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-changed-files", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6ee04b3220727d6182a0cb0b2f3194512a409880069db476289a0c375d3388b84e2ef3f87b44a5ca91e701e97c8aa4174eb71b99f118f6c4aa69ee6c814b13bf" + } + ], + "purl": "pkg:npm/jest-changed-files@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-changed-files@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-circus", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0fde51ef1e54b65300e62058b0e1c515b303fc6540e11fca76ad797fbc585947d61c1b68f4d611b0ebe749ab9381d17ea200a9278b7228e5e15227f14bae6077" + } + ], + "purl": "pkg:npm/jest-circus@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-circus@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-cli", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "1dce8738ec18ab8ffbe3f73ad9d104debe5e971f308d8ab1634af41bf9c5acb0cf30546ee9103fbbca8834e224be1c46ee6310e4426c3867d1a48f0be9e15457" + } + ], + "purl": "pkg:npm/jest-cli@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-cli@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-config", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e6c02c8e6ead19db156d6f5a85c0a13c01429382259105249c7e40bca8ee2d34a570eff00992b215d9fb460d04902f8e1a058e0c4cb6843a560753e0cc7d0934" + } + ], + "purl": "pkg:npm/jest-config@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-config@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-diff", + "version": "27.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c27ae007e00594a363b9fa4b16e292fdbf9c4901c20a3d43df221641706d512afff4f9dbda59340ad4dadabbc77aedda7ae5f3aa6de31da2297ee8f79dc843d" + } + ], + "purl": "pkg:npm/jest-diff@27.3.1", + "type": "library", + "bom-ref": "pkg:npm/jest-diff@27.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-diff", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9b436f917e792c3b7d4f899cb531209d99377e6120dcd458badbcc3d633fd223e79058f6c08785e393b5ef5f1c3123853b5bc8364aa6c6a0fcbc4dfbb9311bab" + } + ], + "purl": "pkg:npm/jest-diff@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-diff@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-docblock", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae5ee194005e4ec458c4a8947e91eb42b1b87b6a1b3a24d059f3041f73f13e33ad76c7cb40ee11796499690ec31139b8c6ed3bae5e2afe1e3370a5f2534fcecd" + } + ], + "purl": "pkg:npm/jest-docblock@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-docblock@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-each", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "d457faa7e15b853fdb5d09c4a2e632d346e435263b394a5f21c99d97cbd9df50355146aeace2cf03c6bc05b24e17644350497026199e695ecb9da808fb953035" + } + ], + "purl": "pkg:npm/jest-each@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-each@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-environment-jsdom", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c506f9130b51e79e7ae46bf7d46f9e9ab5f0ed27d54c67de099234db8209753c4a70ad8b5404a31ecc1de29cb996a90b1760b70cc0da03430a014c0bc57ec7f" + } + ], + "purl": "pkg:npm/jest-environment-jsdom@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-environment-jsdom@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-environment-node", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "26de19527c5d3ac4c6c124407ca12713a05cc2c48f34e8a38f089fab9b0315203691eb275d3bcda8a1d880cd210eadf9e3d51ffcacdd5cd627e3031924f9452f" + } + ], + "purl": "pkg:npm/jest-environment-node@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-environment-node@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-get-type", + "version": "27.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8896a8bc8601d201d865437b35d8201535df07f7a6644017d8a17980af366739f02d54024488f0c18ab8c1c846e5bc6ff82cf26690bfa706a3cedc0d5824012" + } + ], + "purl": "pkg:npm/jest-get-type@27.3.1", + "type": "library", + "bom-ref": "pkg:npm/jest-get-type@27.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-get-type", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "d8a63de64b1849a2bb0cc056427e9d433de4a807f7041eb8cb6b9d786fa1bf829f48e6fdab071842cb5325cd4a09bb22c7ec0b65665837cb7b9f05f718e04b47" + } + ], + "purl": "pkg:npm/jest-get-type@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-get-type@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-haste-map", + "version": "27.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9587cd648cf03dc70325923293d233e6240c33f307e7a34821c1a3ec0154d58c80e1ec1614197ccfe60f26e48244c2ff79ed9c0addb2dd6e0add55cf4fa361ce" + } + ], + "purl": "pkg:npm/jest-haste-map@27.3.1", + "type": "library", + "bom-ref": "pkg:npm/jest-haste-map@27.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-haste-map", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec6824678170e0d15b3120d2a59c177818886f1fadff8ea7276422b643a3bf03d8c999aab6dbb64c34a298c1cfd4490f3a2e3151900dd5da04e55776e47e099e" + } + ], + "purl": "pkg:npm/jest-haste-map@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-haste-map@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-jasmine2", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "8edabb555c86f12a80a2b0e9029c22249226774576c2fd71cdd85e187446cae4fb8199ba806e3b404b243a5cec3753c6ffa58d682a39a66c0c1c37f70241b6a5" + } + ], + "purl": "pkg:npm/jest-jasmine2@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-jasmine2@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-leak-detector", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ce5df58032f7d4e963145dfb55e07a259c97e73ce184bb5d1fb1c34203be8a06945185c30dd9cf1dde24f6a71412dc72db03ee57e2c3943f360ed8d5322251d" + } + ], + "purl": "pkg:npm/jest-leak-detector@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-leak-detector@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-matcher-utils", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "cf6b93c7f4fa2c1682a0d58d156c0284b04a6314cc7060518c0b7ed926cff76f7f15f95bf5a6b92c699aeb9e11cfccfd1cbc6cad4698cf113d4ff10520bfcf03" + } + ], + "purl": "pkg:npm/jest-matcher-utils@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-matcher-utils@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-message-util", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "accc857b5fa39f20007fe347c137250f3d1e01a2e454374a5471c1156b015879e787961e24c3565acbfb01b1585df2b7a13aaf2fb5535a484d2eed635f6e03fa" + } + ], + "purl": "pkg:npm/jest-message-util@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-message-util@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-mock", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2b88ca6d8d5de043616eb1b6cee3d669006f0e5cbe899db2016f93d5f01337bf21734b089f09fbc1907c5ed94d9ef1ee83944cc15f3ded79b82ea98f3387b63a" + } + ], + "purl": "pkg:npm/jest-mock@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-mock@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-pnp-resolver", + "version": "1.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "a25578d5b292326f01767b8cb1ec13e23aa567cfb74c20110178d9193f637284a7adf527442aa732817d5c47a85a36f339ba6a17d751847423d176fd41d17aff" + } + ], + "purl": "pkg:npm/jest-pnp-resolver@1.2.2", + "type": "library", + "bom-ref": "pkg:npm/jest-pnp-resolver@1.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-regex-util", + "version": "27.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "49484fcc1b066b520a9bc871d85e0d7d3186a7eafb0572780ae96c675936908fa618b1be9711abb3beaf78dd8b17f694746a2c241cca81798d0b0f81cc5a810d" + } + ], + "purl": "pkg:npm/jest-regex-util@27.0.6", + "type": "library", + "bom-ref": "pkg:npm/jest-regex-util@27.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-regex-util", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e1b7caab6ce27bec75ea892a0d78d79fdaa5d81d1d49c42efaf7307b84ef155864572b962eaa59ad9b57c4b2d6a176209f413cec8eabe864581c5ef0159054be" + } + ], + "purl": "pkg:npm/jest-regex-util@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-regex-util@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-resolve-dependencies", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "41038e758e0f137f626b00e7e6bcdb21e3cd8a07dee41f59f751830f569eff134396ef6469ab7c410e442a73665563d5e78854771095c308fa60c811d8eec83a" + } + ], + "purl": "pkg:npm/jest-resolve-dependencies@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-resolve-dependencies@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-resolve", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "1450f2f3ff44e8257cdc831b0e97233a1ba60103c3c844e7536299d4ef7c0f04e7cfc00e06c5bf5efdc6c92af598e65d22d2d1fb30d9ec8fd475315b8123950b" + } + ], + "purl": "pkg:npm/jest-resolve@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-resolve@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-runner", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "83834fb0ce261423b014a5cee29fc7fe4586749a7d57c914458da55fc31ed9dae05ea1bbaeb640c7992ffb91fbc2db7f71d1488e1a98c751eb96a58768ebc369" + } + ], + "purl": "pkg:npm/jest-runner@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-runner@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-runtime", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a3b831c3719ff87d881adf1fbf4462c84d7eafcdc524146bba803e157ae51f0eb113206c53cba003a20f7d3755c80d30f070a5a5b2be0c62711f9f54acd331f0" + } + ], + "purl": "pkg:npm/jest-runtime@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-runtime@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-serializer", + "version": "27.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ed19d54af44182eddb1ace2b247ea6803e26fac135626371bc139c33f6d2d53e11f2883353667ff18d9e24840c3ed3d424a0e5699fbbc5e673d237a76d05ec4" + } + ], + "purl": "pkg:npm/jest-serializer@27.0.6", + "type": "library", + "bom-ref": "pkg:npm/jest-serializer@27.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-serializer", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d90b2a3a888c4ed5aa94c69b819704c3324cce0094b86b7798cf7633831c55405c0b79203b25fab971ba8263e24bbd30eb5a2ae0bac23fd0ac3128c82b75fef" + } + ], + "purl": "pkg:npm/jest-serializer@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-serializer@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-snapshot", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c98ca45c8e5ad08df5c57ebb9a078bc350d9d1b241fa0a6ae48a52b82028c838b4f8186053f448acbf914f30e690d4dc86f0c558a3fc969fb0ff8d99deeb39b0" + } + ], + "purl": "pkg:npm/jest-snapshot@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-snapshot@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-util", + "version": "27.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f1f83e89f107dc60ebc8b41ffde299724d4312cd98b953c108c39a1d0c5554b990c25fc20e15b3aef0a14d7e1e7cb6711abc3e000d26497bfbf1ccb2b41b7fbb" + } + ], + "purl": "pkg:npm/jest-util@27.3.1", + "type": "library", + "bom-ref": "pkg:npm/jest-util@27.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-util", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2afda8ffc8cdbd7d4c434286b70e3cd04ff0e1f0420ce9c7ebee8399e2a2e8b654225280e64c18d1835d9736964e2560c6a02a8a4d75432c4338a939e3768a5f" + } + ], + "purl": "pkg:npm/jest-util@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-util@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-validate", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6190d962d0b61398e235b43077148d52d514e9fc1ab277da536ab2702fcece20116ea846f9029bf911a02912e75883883ce9edc24fa90cd11a30921b449c205" + } + ], + "purl": "pkg:npm/jest-validate@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-validate@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-watcher", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "cfaefa4ae0fa67ca3ca9b9841a1a0450538cd7e8df1222f70d71caff1804886d84c8d61f146eb48e5b9672ea58e9d0138df12c290ba26d1792d5d8c89d09e857" + } + ], + "purl": "pkg:npm/jest-watcher@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-watcher@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-worker", + "version": "26.6.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "2966155757388be8db3296810be53efb855ad1ca7c3a2b14d7ce68ef74f5be8f7d86a8bbc3cb5225f51762cc30aaaae3cf0c5ae8aa512b9e1684fbf07f9c3a3d" + } + ], + "purl": "pkg:npm/jest-worker@26.6.2", + "type": "library", + "bom-ref": "pkg:npm/jest-worker@26.6.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-worker", + "version": "27.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "92cdd60b3b2265a38f265fe832c0e369fd134624afedcb4d82cd05a91af69c046ca2fcfa0165b2e282c497072ab864b3ebdd83ce0650ac22d270f36ce58942e2" + } + ], + "purl": "pkg:npm/jest-worker@27.3.1", + "type": "library", + "bom-ref": "pkg:npm/jest-worker@27.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-worker", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "eefba1f3957971d0e87cfcb19f9f27acf8c192d668d2ef71d60f16b6342897e8d90da13e7e137e708bd38f5d469dd067327c9fad4386d6c650c427632a1f832a" + } + ], + "purl": "pkg:npm/jest-worker@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-worker@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest", + "version": "27.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "536017d0081019de44cccb2266962df07c99fa7495221e6e8d0f423e9f4441924c8d7222499a49370799974b306ad291a2a1d680628cdf3692c26e196b3f3b9e" + } + ], + "purl": "pkg:npm/jest@27.3.1", + "type": "library", + "bom-ref": "pkg:npm/jest@27.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jquery", + "version": "3.6.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "255cc047f02306f56dd81998871442498cac0ec3dcb2c7664c59f3c8b12db3da8dc268e6bb825300c62e6c47f054e4b0a50d48d6c28a15cc616422366ee7ab7f" + } + ], + "purl": "pkg:npm/jquery@3.6.0", + "type": "framework", + "bom-ref": "pkg:npm/jquery@3.6.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "js-levenshtein", + "version": "1.1.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f6041d75619b6b46a63812741c2d7e51877ef7cdb2b86a50b5156ec3ecc0612f682d702d7b7139ebe8399f1d9792d2cdab4c78d44cc3077c6ee03bc492770fa" + } + ], + "purl": "pkg:npm/js-levenshtein@1.1.6", + "type": "library", + "bom-ref": "pkg:npm/js-levenshtein@1.1.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "js-sha3", + "version": "0.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "805d5c46b1e123335f4e873cd363fcd3437c3e95d2f9ebcb2d77ec569a30aa600547dbb06e2f3d5af5e0d90b293a65cbf102fce89e13d44a45bbec94930258dd" + } + ], + "purl": "pkg:npm/js-sha3@0.8.0", + "type": "library", + "bom-ref": "pkg:npm/js-sha3@0.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "js-tokens", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "45d2547e5704ddc5332a232a420b02bb4e853eef5474824ed1b7986cf84737893a6a9809b627dca02b53f5b7313a9601b690f690233a49bce0e026aeb16fcf29" + } + ], + "purl": "pkg:npm/js-tokens@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/js-tokens@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "js-yaml", + "version": "3.14.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a24307ece5d727b62b37d3a4dff497ae7bb8897f723a4fb6e67a97e22992da7a6ebd36039a8fd0119a2ac199186880e4de356f04e4ce20480485a2ceca7052f6" + } + ], + "purl": "pkg:npm/js-yaml@3.14.1", + "type": "library", + "bom-ref": "pkg:npm/js-yaml@3.14.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "js-yaml", + "version": "4.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c29c59b3d368c596891122462194f20c4698a65d0529203e141f5a262c9e98a84cc24c5083ade1e13d4a2605061e94ea3c33517269982ee82b46326506d5af44" + } + ], + "purl": "pkg:npm/js-yaml@4.1.0", + "type": "library", + "bom-ref": "pkg:npm/js-yaml@4.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jsdom", + "version": "16.7.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "bbd4a67361b55124ad33eb3fc75aeee52c6b97a98f6026c1c86d54fe1526a9a56c9b8b5b3724bb0a270e491cae190619853bb487ce2a919650fc8f9dce2cd257" + } + ], + "purl": "pkg:npm/jsdom@16.7.0", + "type": "library", + "bom-ref": "pkg:npm/jsdom@16.7.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jsesc", + "version": "2.5.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "398bbb5c4ce39024370b93ecdd0219b107cda6aa09c99640f7dc1df5a59dd39342b42e6958e91284ada690be875d047afc2cb695b35d3e5641a6e4075c4eb780" + } + ], + "purl": "pkg:npm/jsesc@2.5.2", + "type": "library", + "bom-ref": "pkg:npm/jsesc@2.5.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jsesc", + "version": "0.5.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + } + ], + "purl": "pkg:npm/jsesc@0.5.0", + "type": "library", + "bom-ref": "pkg:npm/jsesc@0.5.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jshint", + "version": "2.13.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "1ceddba2c2fce1bdaa5aa234abe9294ff3a9449c28d11e22be09b168ef38f3e6e8d74adce744a43e7aedc12157b6d5b4ca6e27a7c8db26f2f0939373881ee323" + } + ], + "purl": "pkg:npm/jshint@2.13.4", + "type": "library", + "bom-ref": "pkg:npm/jshint@2.13.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "json-parse-even-better-errors", + "version": "2.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c72170ca1ae8fc91287fa1a17b68b3d8d717a23dac96836c5abfd7b044432bfa223c27da36197938d7e9fa341d01945043420958dcc7f7321917b962f75921db" + } + ], + "purl": "pkg:npm/json-parse-even-better-errors@2.3.1", + "type": "library", + "bom-ref": "pkg:npm/json-parse-even-better-errors@2.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "json-pointer", + "version": "0.6.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "bcb59c29b39a5e53be8ef472e2a35df932354143d9cdf263d6da49def0170f2721e5725ff777eda5429ee69282af3c8823080125c39c0954547ea40fdb969f07" + } + ], + "purl": "pkg:npm/json-pointer@0.6.2", + "type": "library", + "bom-ref": "pkg:npm/json-pointer@0.6.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "json-schema-traverse", + "version": "0.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5b6c21f9742614e53f0b704861ba1ec727cf075ee5b7aac237634cce64529f6441dca5688753f271ce4eb6f41aec69bfe63221d0b62f7030ffbce3944f7b756" + } + ], + "purl": "pkg:npm/json-schema-traverse@0.4.1", + "type": "library", + "bom-ref": "pkg:npm/json-schema-traverse@0.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "json-schema-traverse", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "34cf3f3fd9f75e35e12199f594b86415a0024ce5114178d6855e0103f4673aff31be0aadaa9017f483b89914314b1d51968e2dab37aa6f4b0e96bb9a3b2dddba" + } + ], + "purl": "pkg:npm/json-schema-traverse@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/json-schema-traverse@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "json-stable-stringify-without-jsonify", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "05d6e8cbe97bb40dce196e858f21475a43f92ee0728f54e4df72e3caad1ac72cdd93dfff2528b6bb77cfd504a677528dc2ae9538a606940bbcec28ac562afa3f" + } + ], + "purl": "pkg:npm/json-stable-stringify-without-jsonify@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/json-stable-stringify-without-jsonify@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "json-stringify-safe", + "version": "5.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "642960e80698bda9af60413cd9ddc8c9ddef49222343ea1d823693cd1b8edeceeda0274529cce86f68b4cc287b244f245a7d7bcaf016854571bea1b051a96c44" + } + ], + "purl": "pkg:npm/json-stringify-safe@5.0.1", + "type": "library", + "bom-ref": "pkg:npm/json-stringify-safe@5.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "json5", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "83531630b062cfc14a8b57b8c3453254bdf0fa225c7960050406819e718a3a935ae5ff132e4b646eb7b5facea8202c9d5809be1d15064e623efffc6fda1bd760" + } + ], + "purl": "pkg:npm/json5@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/json5@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "json5", + "version": "2.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "d61a8b14c4ab187447c5abfdabd80d8c9e445f39c8c4654ed3dc5046bc2995c4bcaacdbca59f2cf21ba96409aa0f065499567641bda39f23ce59c0c7f26f1d94" + } + ], + "purl": "pkg:npm/json5@2.2.1", + "type": "library", + "bom-ref": "pkg:npm/json5@2.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jsx-ast-utils", + "version": "3.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b8fe6fbbcc5fcb617d03a2c60b6d8a3bb7b6fef1934b53213fed7c7fef993657f43a16b16dcf67204c0702c7a39492b2cdf67353950885ee48b58922b5c66764" + } + ], + "purl": "pkg:npm/jsx-ast-utils@3.2.1", + "type": "library", + "bom-ref": "pkg:npm/jsx-ast-utils@3.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jsx-ast-utils", + "version": "3.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f33bd96e3fa2f4c64c7084824c4c9429668fde78deb42b4f231dd7b17c3e7af401b178dba0e9491eb5e1d712144ea0cf1a47b11c52839098885c2508dcbaaf1" + } + ], + "purl": "pkg:npm/jsx-ast-utils@3.3.0", + "type": "library", + "bom-ref": "pkg:npm/jsx-ast-utils@3.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "kind-of", + "version": "6.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "75c4b5ba5fbdb66783f794fec76f3f7a12e077d98435adcbb2f0d3b739b7bf20443bb44fa6dbc00feb78e165576948d305172ba45785942f160abb94478e7a87" + } + ], + "purl": "pkg:npm/kind-of@6.0.3", + "type": "library", + "bom-ref": "pkg:npm/kind-of@6.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "kleur", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "793233955392511f89c5d0c57a911870132d67d42a75e7feae7cd675166e31b3b2c2ee6d3b6c3637baea8e800d67993dbf2c212fa06bd55463508813431e04f3" + } + ], + "purl": "pkg:npm/kleur@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/kleur@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "kleur", + "version": "4.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "a3e34efbc5ab462404138ffb9f044984dd475a9566266e75d690475313cbb69d015084b3941a653916129937250a726f42adad2aefec825df156991ced95ae41" + } + ], + "purl": "pkg:npm/kleur@4.1.5", + "type": "library", + "bom-ref": "pkg:npm/kleur@4.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "known-css-properties", + "version": "0.27.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b8c0a3ebe859603a1f7eebc02631403f3e7a13dba8a3014799392a46d46ae56c82e50e82bbf7d364a350a57fd16f30a10582cb977968f028c56410195eaf6a16" + } + ], + "purl": "pkg:npm/known-css-properties@0.27.0", + "type": "library", + "bom-ref": "pkg:npm/known-css-properties@0.27.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "language-subtag-registry", + "version": "0.3.21", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f422ac252178e294155560a153dfb5fd221d75526e4d125f5c6c922e53f4b03ffcc41006c13ce9c479ebb154c7f8e727564110d037736a73de8e81b1f52be3e" + } + ], + "purl": "pkg:npm/language-subtag-registry@0.3.21", + "type": "library", + "bom-ref": "pkg:npm/language-subtag-registry@0.3.21", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "language-tags", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-1", + "content": "d321dbc4da30ba8bf3024e040fa5c14661f9193a" + } + ], + "purl": "pkg:npm/language-tags@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/language-tags@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "leven", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "aac75af87f234da51a37fc79bf35b6af373ef11c384c043fe0a8c1e3a2302b9547f8895579e7a37bf128651a625ef22a8c580af3841f7ea3f3b462375412c6d4" + } + ], + "purl": "pkg:npm/leven@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/leven@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "levn", + "version": "0.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f9b4f6b87e04e4b184ee1fe7ddebdc4bfb109495c2a48a7aca6f0e589e5e57afbaec3b2a97f2da693eea24102ddabcdfa1aff94011818710e2c7574cb7691029" + } + ], + "purl": "pkg:npm/levn@0.4.1", + "type": "library", + "bom-ref": "pkg:npm/levn@0.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "levn", + "version": "0.3.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b09924edf9f083c0490fdd4c0bc4421e04764ee" + } + ], + "purl": "pkg:npm/levn@0.3.0", + "type": "library", + "bom-ref": "pkg:npm/levn@0.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lilconfig", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5a6265d9b531cf030e66fb12cdf1a6fd0beddaf18995ddab0d48f3804c84dbb70adf6f068b263f21eba1f558c22900b0a4aac2332b787ba10f8f757f8b43d12" + } + ], + "purl": "pkg:npm/lilconfig@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/lilconfig@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lines-and-columns", + "version": "1.1.6", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c00c743b433cd0a4e80758f7b64a57440d9ff00" + } + ], + "purl": "pkg:npm/lines-and-columns@1.1.6", + "type": "library", + "bom-ref": "pkg:npm/lines-and-columns@1.1.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "loader-runner", + "version": "4.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd1ff533ec92de3e68bbcd0c7b9f63ec5f4832ce0f5ecdd5a91ae6d1353701b28fc659a9a18d5336c70957fa06257a3ca826ad1464df0db63a5ba8a918e6177e" + } + ], + "purl": "pkg:npm/loader-runner@4.3.0", + "type": "library", + "bom-ref": "pkg:npm/loader-runner@4.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "loader-utils", + "version": "2.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "c57aa95e820d7c5860b9af718aa0fc7cf147824a2ad669a6a44f765a50db9bdacd45dfc46d16fe1aa7fdd3c4f60cc7ee1e38c9964b222b645b1d539d0ff32a4b" + } + ], + "purl": "pkg:npm/loader-utils@2.0.4", + "type": "library", + "bom-ref": "pkg:npm/loader-utils@2.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "locate-path", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b7b870f6923e5afbb03495f0939cd51e9ca122ace0daa4e592524e7f4995c4649b7b7169d9589e65c76e3588da2c3a32ea9f6e1a94041961bced6a4c2a536af2" + } + ], + "purl": "pkg:npm/locate-path@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/locate-path@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "locate-path", + "version": "6.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "88f64ae9e6236f146edee078fd667712c10830914ca80a28a65dd1fb3baad148dc026fcc3ba282c1e0e03df3f77a54f3b6828fdcab67547c539f63470520d553" + } + ], + "purl": "pkg:npm/locate-path@6.0.0", + "type": "library", + "bom-ref": "pkg:npm/locate-path@6.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.curry", + "version": "4.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "feed78a571af88b6b0798e49234214ce0cc5d89e8d7bc20dcb30198c899caf28e0919f9e6ebb81c72dbf25a38e913a9271d75c62d6a48e149a79e995f25474b4" + } + ], + "purl": "pkg:npm/lodash.curry@4.1.1", + "type": "library", + "bom-ref": "pkg:npm/lodash.curry@4.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.debounce", + "version": "4.0.8", + "hashes": [ + { + "alg": "SHA-1", + "content": "82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + } + ], + "purl": "pkg:npm/lodash.debounce@4.0.8", + "type": "library", + "bom-ref": "pkg:npm/lodash.debounce@4.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.difference", + "version": "4.5.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ccb4e505d486b91651345772885a2df27fd017c" + } + ], + "purl": "pkg:npm/lodash.difference@4.5.0", + "type": "library", + "bom-ref": "pkg:npm/lodash.difference@4.5.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.flow", + "version": "3.5.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7dfdc15ffb528a8a3e5e88d7e0c3ac38c849c349d9a14105d35d4b5fc83c77782f8d56f177cf5c0a2a380425eba278f1713508254a2a284500fa7e02aafbd13f" + } + ], + "purl": "pkg:npm/lodash.flow@3.5.0", + "type": "library", + "bom-ref": "pkg:npm/lodash.flow@3.5.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.isequal", + "version": "4.5.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "415c4478f2bcc30120c22ce10ed3226f7d3e18e0" + } + ], + "purl": "pkg:npm/lodash.isequal@4.5.0", + "type": "library", + "bom-ref": "pkg:npm/lodash.isequal@4.5.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.memoize", + "version": "4.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "b7b8fe3739a09d0cd30185dcb0760b8229a5b4e5753171ed94e59fe868cbf4a8fc18ae45227c39268b71bdb3acf88bd5d7f0f3a34e3f7c219f2d5b3b6976f802" + } + ], + "purl": "pkg:npm/lodash.memoize@4.1.2", + "type": "library", + "bom-ref": "pkg:npm/lodash.memoize@4.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.merge", + "version": "4.6.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "d0aa63a97455beb6320ac5f5b3047f5d32b4bdae9542440ce8c368ecfa96efb0728c086801103c11facfd4de3e2a52a3f184b46540ad453fd852e872603ba321" + } + ], + "purl": "pkg:npm/lodash.merge@4.6.2", + "type": "library", + "bom-ref": "pkg:npm/lodash.merge@4.6.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.mergewith", + "version": "4.6.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "18ade0e513d959345278b4a980ff1786b6bea678c10b9eaaf456587b577944ddd3277e5d6e41b2dd8a8148c6f20ab95b8be08cf59dc9939c932fb442b2a6e8c9" + } + ], + "purl": "pkg:npm/lodash.mergewith@4.6.2", + "type": "library", + "bom-ref": "pkg:npm/lodash.mergewith@4.6.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.set", + "version": "4.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "e2134f3798e59bf37f1cb3023b8deff015caabd67b41d00673f546ad10fad70f2037d83fea317d0382f5a5b52004b09f7e2d30f55b177d33a28f9c7c893c85be" + } + ], + "purl": "pkg:npm/lodash.set@4.3.2", + "type": "library", + "bom-ref": "pkg:npm/lodash.set@4.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.truncate", + "version": "4.4.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a350da0b1113b837ecfffd5812cbe58d6eae193" + } + ], + "purl": "pkg:npm/lodash.truncate@4.4.2", + "type": "library", + "bom-ref": "pkg:npm/lodash.truncate@4.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.uniq", + "version": "4.5.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5f05a5d077daf277d765483be7bc8d25bf17cb2656006735e89946332cab5478e42f38fe698aa016b86b6b8567aa6972bd861a0cfe2c89739015f977ec5f71d" + } + ], + "purl": "pkg:npm/lodash.uniq@4.5.0", + "type": "library", + "bom-ref": "pkg:npm/lodash.uniq@4.5.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash", + "version": "4.17.21", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf690311ee7b95e713ba568322e3533f2dd1cb880b189e99d4edef13592b81764daec43e2c54c61d5c558dc5cfb35ecb85b65519e74026ff17675b6f8f916f4a" + } + ], + "purl": "pkg:npm/lodash@4.17.21", + "type": "library", + "bom-ref": "pkg:npm/lodash@4.17.21", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "longest-streak", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f518bea3425881e8536950410e832a225f065ed6d683bd753b7b2b7ed707859d1daa7113a8b6a820ad31d7b7d4c3dac54a52bfd0d96c29ed00861ca5e695c4da" + } + ], + "purl": "pkg:npm/longest-streak@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/longest-streak@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "loose-envify", + "version": "1.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "972bb13c6aff59f86b95e9b608bfd472751cd7372a280226043cee918ed8e45ff242235d928ebe7d12debe5c351e03324b0edfeb5d54218e34f04b71452a0add" + } + ], + "purl": "pkg:npm/loose-envify@1.4.0", + "type": "library", + "bom-ref": "pkg:npm/loose-envify@1.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lowlight", + "version": "1.20.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f0ab63fa9ac46f546808f9043ab3cc61437f9c282007ba8059eddaecea4c8d6424877976443e7029143ea3c43c62e23d446ff1b3de7069a23f13aca6ffb36c4f" + } + ], + "purl": "pkg:npm/lowlight@1.20.0", + "type": "library", + "bom-ref": "pkg:npm/lowlight@1.20.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lru-cache", + "version": "6.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "268e9d274e029928eece7c09492de951e5a677f1f47df4e59175e0c198be7aad540a6a90c0287e78bb183980b063df758b615a878875044302c78a938466ec88" + } + ], + "purl": "pkg:npm/lru-cache@6.0.0", + "type": "library", + "bom-ref": "pkg:npm/lru-cache@6.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lunr", + "version": "2.3.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd35370da65a17746df6b84ddee04c1900f7743dbfbc542a9ef6420efe1d97988ecead88650a93c6ef74af813927e9cfef42778a5a950ab6e1a3679669e5bc3b" + } + ], + "purl": "pkg:npm/lunr@2.3.9", + "type": "library", + "bom-ref": "pkg:npm/lunr@2.3.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lz-string", + "version": "1.4.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0d8eaf36059f705796e1e344811cf4c498d3a26" + } + ], + "purl": "pkg:npm/lz-string@1.4.4", + "type": "library", + "bom-ref": "pkg:npm/lz-string@1.4.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "make-dir", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "83715e3f6d0b3708402dbffa0b3e837781769e0cded23cfbb5bceb0f6c0057ea3d15e3477b8acbfb22b699dd09fdf8927f5b1ad400e15ea8b9fa857038cfde1b" + } + ], + "purl": "pkg:npm/make-dir@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/make-dir@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "makeerror", + "version": "1.0.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "266a82bd4866b78de669d9691731b8050cc6d99de6eadbd00cd29d0a56673b755b22e749626c6c4f414d24c7a2076f894d295341349b53c41d7ac566c097262e" + } + ], + "purl": "pkg:npm/makeerror@1.0.12", + "type": "library", + "bom-ref": "pkg:npm/makeerror@1.0.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "map-obj", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + } + ], + "purl": "pkg:npm/map-obj@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/map-obj@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "map-obj", + "version": "4.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "85d375c15ad96dbdbd7811a21a325b78ff096ca8ead6eae41c9fcb20ffcd638f0c6754155d4b10055d46d73bd81479f55c4d3a7308c1b0e2362b75259e3d585d" + } + ], + "purl": "pkg:npm/map-obj@4.3.0", + "type": "library", + "bom-ref": "pkg:npm/map-obj@4.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mark.js", + "version": "8.11.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "180f1f9ebef8b0e638e4166ad52db879beb2ffc5" + } + ], + "purl": "pkg:npm/mark.js@8.11.1", + "type": "library", + "bom-ref": "pkg:npm/mark.js@8.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "markdown-table", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "67534bdd36f533dc07e17112b020c492c5a829376551a7ca738a6dd064708d4c97682159f9d7378367aba81eb39b7b330362144a2ed59cf23ea3ff639f187d87" + } + ], + "purl": "pkg:npm/markdown-table@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/markdown-table@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "marked", + "version": "4.0.17", + "hashes": [ + { + "alg": "SHA-512", + "content": "59f93401338ae623f1338a6dace46415e9aaae8cf4643c69e4c59f600ec7fc5fb03b5ecd456579629c62ea9de0d979b0d9b29e8983a5ea85672c72b1040d1584" + } + ], + "purl": "pkg:npm/marked@4.0.17", + "type": "library", + "bom-ref": "pkg:npm/marked@4.0.17", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "match-sorter", + "version": "6.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9b1c9b6e8de93cdb80f99b825219b96f03645eb2536ec9395566d1e708b0cff182e8b2227a00469f6c373b4f141bf8dd6d82e29f0e757d2439c4d53553732007" + } + ], + "purl": "pkg:npm/match-sorter@6.3.1", + "type": "library", + "bom-ref": "pkg:npm/match-sorter@6.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mathml-tag-names", + "version": "2.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "00f30111a9e3c9b68fcd4adfa94d08314e48d00b3028c1fb93c3932ecd2fbd5e0a669131913918f3b9d1ff3a5bb933e3fa0011a29eda1946e5d75a670df5bac6" + } + ], + "purl": "pkg:npm/mathml-tag-names@2.1.3", + "type": "library", + "bom-ref": "pkg:npm/mathml-tag-names@2.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-definitions", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ad0f86bfb987b6dc47381c767641781d64e0f8413e511efca6d4160f29733ca690b9519d1b81c8a18dd2ad2fe90a9f349d9d3882b785bd76d51474feb9fd0955" + } + ], + "purl": "pkg:npm/mdast-util-definitions@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-definitions@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-find-and-replace", + "version": "2.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "4a86f19105c501d7786f95a611a926915a21d7c89c8d04711b2e4e5930b382c2d19b516efca0adc03d472104ac9aae59463547d0487083afc59f7c48524fa72b" + } + ], + "purl": "pkg:npm/mdast-util-find-and-replace@2.2.1", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-find-and-replace@2.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-from-markdown", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "899272caf283d7e2bb417d5be635dd13b49ce5db684ebcb5bf3576f146597bc675c559c1fdccca9ed27b640906d2d00da919c117aa77a7b1a9535cb5f434dfd9" + } + ], + "purl": "pkg:npm/mdast-util-from-markdown@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-from-markdown@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-gfm-autolink-literal", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "173a2990e778c534c17865e15d2054d0e0830e1e65523dab77e1d0a86f762ddfa32f896951f817d804f63870153fd6847832a9ec6f767eea28499718240ddc46" + } + ], + "purl": "pkg:npm/mdast-util-gfm-autolink-literal@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-gfm-autolink-literal@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-gfm-footnote", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a7e3eb625930f437824644d5c3576e5aa3d11d7e98c21d8134a2507196c2c00b8fff9f41d0b93d91a92e01deca6d0a6b54ee06cdd5bc792e7ef80f4f512a88cb" + } + ], + "purl": "pkg:npm/mdast-util-gfm-footnote@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-gfm-footnote@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-gfm-strikethrough", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "4ffe035475dcba31fa8f1d72aa9700618c1dfb3e65018330e0bb3aca14df6cc32d0add0f1d8e2011f856f7e94ab0b06dca15062912337140361404d5aa7bcf0c" + } + ], + "purl": "pkg:npm/mdast-util-gfm-strikethrough@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-gfm-strikethrough@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-gfm-table", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "b8747e7ea16adc8bc1dd1778fa4cd75bc766a71521be009065ea7a29d8ec2cae0eea678ae5d61911ac8bb48c4dbacd573b781f8df70815ef1aecbd076511a06a" + } + ], + "purl": "pkg:npm/mdast-util-gfm-table@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-gfm-table@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-gfm-task-list-item", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "299e0a2e63dd0015ceb1f9cce891d4223c44bdcc76ba593ae7a67fe016a5c34ef5ff9aa09e1cfe1f5b86b5fdb32069eb9ef0c2f31478163f6e29b8c014634878" + } + ], + "purl": "pkg:npm/mdast-util-gfm-task-list-item@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-gfm-task-list-item@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-gfm", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e36c8705b7d62058ac6807d5d5e8b195a6dbb1aeaaeef1de48f63e720f810635f9d4cf3186031a72a1fd83a4dfb41ffdf9891c234a285789dc7eb26c9739bf45" + } + ], + "purl": "pkg:npm/mdast-util-gfm@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-gfm@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-to-hast", + "version": "12.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "6b6d71a3149e7f597c5611f14b50e7ca2a33ea0aeb264a1a094806ccc0ffedd587bdba185f7556e777ac4547c1e6d813cb3e18a2cd67db948f723df9749aa602" + } + ], + "purl": "pkg:npm/mdast-util-to-hast@12.2.4", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-to-hast@12.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-to-markdown", + "version": "1.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ead512b38afe28ae091934e243b15f1e654e683acb4093e6a630fac0f3251c65155e81bd5637378c878ffaec815917fc725c01d9b94cf96efe2ab94c6109dfb4" + } + ], + "purl": "pkg:npm/mdast-util-to-markdown@1.3.0", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-to-markdown@1.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-to-string", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f8572a73fc3660c28d223072d02f8f5d273969ed8b4024ff8dd3b3191e98cf7ffe5726e1d45acb6f885e0c9f68c4891fc6366b67451aa7c2c5c4c64de281f14" + } + ], + "purl": "pkg:npm/mdast-util-to-string@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-to-string@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdn-data", + "version": "2.0.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "767eb0774bb0e46b1db303c57ec80ca79352074fda0dee9f2bde18255fc02436172fa1d52d606cc5eabb8ecec077e994d8af4b025c2993a90dd83e66c023d5a3" + } + ], + "purl": "pkg:npm/mdn-data@2.0.14", + "type": "library", + "bom-ref": "pkg:npm/mdn-data@2.0.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdn-data", + "version": "2.0.30", + "hashes": [ + { + "alg": "SHA-512", + "content": "19aa96592856e24bff1bd204b9c592701c7d1b5fefb056592543beb43dba33c27ccf72b0e510d08daa197b4dd8002960792fd258f39c6f89e41414c48b90d410" + } + ], + "purl": "pkg:npm/mdn-data@2.0.30", + "type": "library", + "bom-ref": "pkg:npm/mdn-data@2.0.30", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "memoize-one", + "version": "5.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd88b0b5951c6325caa3f9e9f7a00664072493e1565ac51d2777071869a577bf8086f716990c86098521d6173843fa643a16fae5d411fe9a82c8ad1c39a1f3e1" + } + ], + "purl": "pkg:npm/memoize-one@5.2.1", + "type": "library", + "bom-ref": "pkg:npm/memoize-one@5.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "meow", + "version": "10.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "fddf8f43818a986bccf4179efc33daf33de65ecfe992f244d8a11386781534eaad9a58c2e8aecd30fc6d73625e6584e6a566fd93f4e6c6378bd7c7b3de1eef0b" + } + ], + "purl": "pkg:npm/meow@10.1.5", + "type": "library", + "bom-ref": "pkg:npm/meow@10.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "merge-stream", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "69bbffa8e72e3df9375113df0f39995352ca9aec3c913fb49c81ef2ab2a016bc227e897f76859c740e19aac590f0436b14a91debb31fa68fcba2f6c852c6eddf" + } + ], + "purl": "pkg:npm/merge-stream@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/merge-stream@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "merge2", + "version": "1.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f2aed51203095b827cb5c7d53f2f20d3d35c43065d6f0144aa17bf5999282338e7ff74c60f0b4e098b571b10373bcb4fce97330820e0bfe3f63f9cb4d1924e3a" + } + ], + "purl": "pkg:npm/merge2@1.4.1", + "type": "library", + "bom-ref": "pkg:npm/merge2@1.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-core-commonmark", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "2be3e4253c6a8c57d23647c0869e0607e7193df41de9dc6d4d79dff918d9395ed3e041179ef83339c9e9f9e4939a91a4f5dd52f6c2fafe5aab812367fecd0764" + } + ], + "purl": "pkg:npm/micromark-core-commonmark@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/micromark-core-commonmark@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-extension-gfm-autolink-literal", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b7766bd4d21b5ac1f5840fc68730c033015a7f17467ed1b3e1dd8adb4cf3cbd6fe18025099a72e6b04ee69d0b3d8899a34cc5564a1887bbc353bc904a208c8e" + } + ], + "purl": "pkg:npm/micromark-extension-gfm-autolink-literal@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/micromark-extension-gfm-autolink-literal@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-extension-gfm-footnote", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "13f7e63e60ea2e23143fc98b27c35b2562786d3c3ab52f851104bc09cb83b59a482ee39bda48cba8f11e01e3c5d5d8d744e1d70a133fc0f270d224b890709c22" + } + ], + "purl": "pkg:npm/micromark-extension-gfm-footnote@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/micromark-extension-gfm-footnote@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-extension-gfm-strikethrough", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "fef8c753f95a9668d9093e71b7b09c1d5246abcb18466f34cf6e2a00a5f3687cde9bfc6c0d86f6c8b2fe34d55b62f9a92f1dceed260fb862f9a73bac2fd08b21" + } + ], + "purl": "pkg:npm/micromark-extension-gfm-strikethrough@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/micromark-extension-gfm-strikethrough@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-extension-gfm-table", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "c4067c2755fd5bd2b725325350bec6eb048a869d99607ac5939a89818ff8077dec709cc4da4a5f44bea88b0fef7894dbb7b8e233fd6b9e02e538a3d6af51bebe" + } + ], + "purl": "pkg:npm/micromark-extension-gfm-table@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/micromark-extension-gfm-table@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-extension-gfm-tagfilter", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "4f2ea9b0b01c0236e845afd42946db51cc23540bf9a65c66a544f2d970bfde72452f7ede1de8fc8eb1eb47392a7298a92658ae047df40d3b3bfb7c2a35c41454" + } + ], + "purl": "pkg:npm/micromark-extension-gfm-tagfilter@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/micromark-extension-gfm-tagfilter@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-extension-gfm-task-list-item", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "3e9cac2b64b543fe555e2ef62086a96e2fe39626a2385cefed31c7e1a9b05de6172eade5d6ea3cff605ed00735ac4c0adb431012c187da5b4064b358d8a23fd1" + } + ], + "purl": "pkg:npm/micromark-extension-gfm-task-list-item@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/micromark-extension-gfm-task-list-item@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-extension-gfm", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a76b068da8cb6b489888641d4f4a1e95a85162d316bcb8f2f09f4b382c73210b2594c0862dbb0b5be35cf8de2f8b4da371126f79d549ebc7237a52883ba6e90c" + } + ], + "purl": "pkg:npm/micromark-extension-gfm@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/micromark-extension-gfm@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-factory-destination", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "794040ed1b35ff1b5356e9fd4e65778237cfcf6c04c202b9479c5c6c833965802dbc617a264c9a0ec8f46a0c7cbab5e73b7d6d10ee9483cde2547ded75e74b9f" + } + ], + "purl": "pkg:npm/micromark-factory-destination@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-factory-destination@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-factory-label", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "093230c653a753b744b215c343e76caf69fecb1a4fd3e7e7dbbd69bb46f00c84bcbaa7c572e997a63e662e7de1482f22c36314afa1b1f0470a9e0d5d0fb8ba86" + } + ], + "purl": "pkg:npm/micromark-factory-label@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/micromark-factory-label@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-factory-space", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a949aab38923f5ae7206793724c2f28ed59837a3337dcc7cb897e2e5702f7819e20debe665ab1d1816dae5be10b2f45c0249af1a8e400a64949b21a22932d97b" + } + ], + "purl": "pkg:npm/micromark-factory-space@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-factory-space@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-factory-title", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce2972f8daf8c85aa030644a2e94d5b0d9792f83ccbb8f397c6143390250065d8d1698c6b5ed5ef3acc2d1d6bddf07fdee3adce3ed86d8642e7453079f7217f8" + } + ], + "purl": "pkg:npm/micromark-factory-title@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/micromark-factory-title@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-factory-whitespace", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "431eee1326a153596dd519ec102062b846dfafd20d8d04c66ba12bafe805de0d13c78604be23dbaaa18a36ffcdac1684edd547767d5b55928cfe7e48fc16a4ec" + } + ], + "purl": "pkg:npm/micromark-factory-whitespace@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-factory-whitespace@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-character", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a0279077ba718d27dac9bc00cc279662623051c83a732803a4d352a98b54ca8654f500fc775d993a78ded1b52cf57ab6d61c2d8bf13df12d9f35c1db46459ce" + } + ], + "purl": "pkg:npm/micromark-util-character@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-character@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-chunked", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e5ef314e2b39b4464a81eb1f6d030a442cb3bdf7d14545fe94aff2f83bec30575a6c089c3e491957a80ef851168bd45fb8a2a8c713f034bf9d145d1230899cd6" + } + ], + "purl": "pkg:npm/micromark-util-chunked@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-chunked@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-classify-character", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "17ca16d8a2ab4116f7bd2e6e7791c8a815640aa422db6e0d9b9e68e7060bcd8ffd3f01c65c2d35b6bdddefe4ea1c7cfaceb290ef63a4c2dbe6ff1426e8e54d64" + } + ], + "purl": "pkg:npm/micromark-util-classify-character@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-classify-character@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-combine-extensions", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "27c1f4e7cbc505da3febe02c8c7a76345ec0274d9266d59a5548ec6b23457808b2753c54c158903f13741dff1da781660908b4514168bc5b04c914949851f730" + } + ], + "purl": "pkg:npm/micromark-util-combine-extensions@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-combine-extensions@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-decode-numeric-character-reference", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3b33bd008e5552dad30fb29275a81fe0c5a01ccb444f5ed46b57c8a574e9ba17250aa0fc7a0156a3ce46c521afc609064bbe1b11a86fb4cd163f41e3bd5d1ee3" + } + ], + "purl": "pkg:npm/micromark-util-decode-numeric-character-reference@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-decode-numeric-character-reference@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-decode-string", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "0cb4f91e8d36aabe905953586d1677458392496585b87ded25ec5dddd80dd68744b8f3710a781309726e9bbf9589101df416ddc42bcc4e83ce0ff22f561cc6e9" + } + ], + "purl": "pkg:npm/micromark-util-decode-string@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-decode-string@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-encode", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "536b3961d9c061ec632837a5df549530f6df8be785f32d54e297e2456fd8f041550b2fef83193fdb0593c7372a13bd4b1ed0ae0b39410d15366b9090e63fa640" + } + ], + "purl": "pkg:npm/micromark-util-encode@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-encode@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-html-tag-name", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "04a94294c99844ecbd522574dd2c0d99c9248e7f101d569692aa00ab38af69bbdd19cc0d18c30c1ffe6ccc09f2c26b13054cc3b14e7bfe6162d2ca780503ba74" + } + ], + "purl": "pkg:npm/micromark-util-html-tag-name@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-html-tag-name@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-normalize-identifier", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ca0fb3acbd786c14c5ad0ee7df90a60725944c5b20b2de49840e20258a2dcb80eace3e19e05aff0c77a4492e5a2df1fd6dd95f9d2bca016b008098486e883206" + } + ], + "purl": "pkg:npm/micromark-util-normalize-identifier@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-normalize-identifier@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-resolve-all", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "081fc01a4f7cbb9d24e3692f81a30cf78c3306aa334b30c36a89ca53b3fb8f0408b87d915344de06a198273d9663551d8a1863c1e8af4adac9d8976474499c7f" + } + ], + "purl": "pkg:npm/micromark-util-resolve-all@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-resolve-all@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-sanitize-uri", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "468c6db92097eac50db7185b9ac10541f5b3b3c54dedc4dcb6604fbd88afa3df316ff9031284c2b49417e70cb321812693f96f3454dab7884bf285b42a7745a6" + } + ], + "purl": "pkg:npm/micromark-util-sanitize-uri@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-sanitize-uri@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-subtokenize", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "77dd2ea829d7a7f732e06f3cd546f8a6c139ed27fc603d298a6f507630913637dab36335bba2dbb7e5d92bd8271cbd971619e8cd98847426bd08d7d749f43ac4" + } + ], + "purl": "pkg:npm/micromark-util-subtokenize@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-subtokenize@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-symbol", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a0a0c430adaee6aa80a6d6ac0c0c160d7ab4b46f40b2c570031dc4f5b045dedfec851206b162111be70669fb36a7f4a70d239e727b7a8593c2136a3a9477c599" + } + ], + "purl": "pkg:npm/micromark-util-symbol@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-symbol@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-types", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "0c27e0fd3f1f72b86b44a4cf8d1af0ff92cbbdd195ec11f249fff52ce671ed3cd665d6118e880db7236af3ce73de735a965c2bdd050a0118eabc7a97d7feedfb" + } + ], + "purl": "pkg:npm/micromark-util-types@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-types@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e8c8f4c872dd5198c79ce3e0af9c5f58832a3164b5db30cdea2c2cf522ee4b3efa5bc8d3b40bf6e0c378fc22fb809ae5e6fb711889e492a0effc922846c40ebc" + } + ], + "purl": "pkg:npm/micromark@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/micromark@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromatch", + "version": "4.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "0cccbe1117045b6abc6763e8f96357bb0ddce586944858c03b91ac26a7c497b523bed22e14a3ba66b2af708b5dcbdf1dc05236375b60df334874a6904fe68d74" + } + ], + "purl": "pkg:npm/micromatch@4.0.5", + "type": "library", + "bom-ref": "pkg:npm/micromatch@4.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "microseconds", + "version": "0.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9fb0c71cc8d1d5abc16d2a6c4c18fa7e6306876006ae27d55787be59873743d94efb19d267737285c04d0f7bf3cdab6dd392c5868285471ac8ca49662e552dc8" + } + ], + "purl": "pkg:npm/microseconds@0.2.0", + "type": "library", + "bom-ref": "pkg:npm/microseconds@0.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mime-db", + "version": "1.52.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0f538b95edd625bed589c70c311c3d0fba285536213b4f201b439496c43081f66518bce82ba103b061040e28f27c0886c4fb51135653a82b5502da7537818be" + } + ], + "purl": "pkg:npm/mime-db@1.52.0", + "type": "library", + "bom-ref": "pkg:npm/mime-db@1.52.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mime-types", + "version": "2.1.35", + "hashes": [ + { + "alg": "SHA-512", + "content": "64363e6cf9b9cd34c5f98a42ac053d9cad148080983d3d10b53d4d65616fe2cfbe4cd91c815693d20ebee11dae238323423cf2b07075cf1b962f9d21cda7978b" + } + ], + "purl": "pkg:npm/mime-types@2.1.35", + "type": "library", + "bom-ref": "pkg:npm/mime-types@2.1.35", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mime", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d2094eff541d65a0858165ed7868460753ffb550c107a1a3bbab108e5493b0f46807ef65405a9a7135c8d4fb1f5ada4dc648805734ac57405a91bef67bbebdc" + } + ], + "purl": "pkg:npm/mime@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/mime@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mimic-fn", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3aa6ce939a0441e019f165d6c9d96ef47263cfd59574422f6a63027179aea946234e49c7fecaac5af850def830285451d47a63bcd04a437ee76c9818cc6a8672" + } + ], + "purl": "pkg:npm/mimic-fn@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/mimic-fn@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "min-indent", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "23d8f0327d3b4b2fc8c0e8f7cd59158a4d894ef8296b29036448a02fa471e8df4b6cccb0c1448cb71113fbb955a032cb7773b7217c09c2fbae9ecf1407f1de02" + } + ], + "purl": "pkg:npm/min-indent@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/min-indent@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mini-css-extract-plugin", + "version": "1.6.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "5a10ef3b74a31a6e34a15e72dba1a330962377650caab2c018acb9612dbfdd0289cb617b8e0ca7b874e2affb605143a2350bb9b1a5c775cf2b7a8ed8ba1853e1" + } + ], + "purl": "pkg:npm/mini-css-extract-plugin@1.6.2", + "type": "library", + "bom-ref": "pkg:npm/mini-css-extract-plugin@1.6.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minimatch", + "version": "3.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "27ba7ade1462023c35343130c355bb8b7efe07222b3963b95d0400cd9dd539c2f43cdc9bc297e657f374e73140cf043d512c84717eaddd43be2b96aa0503881f" + } + ], + "purl": "pkg:npm/minimatch@3.1.2", + "type": "library", + "bom-ref": "pkg:npm/minimatch@3.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minimatch", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f533c11866a4e271df199b0f068866f405a0e8da13ed04c27a14b704824006c97265bcf17d5efc40cd98ebe8bbe3538f64869f1406a2884321e4ec88ac93e0b6" + } + ], + "purl": "pkg:npm/minimatch@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/minimatch@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minimatch", + "version": "3.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "e85b11010b3143ad66c3ea8fd59cdb2fd05cefcc76a793aa3603699e80052d3ad7f27e4ac698740ac9e198a28d5d35a35ea5392f4a463d1ee1624f97599afad1" + } + ], + "purl": "pkg:npm/minimatch@3.0.8", + "type": "library", + "bom-ref": "pkg:npm/minimatch@3.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minimist-options", + "version": "4.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "438afc82177cd3284eff48f53b7076063c1e5f77e21e0f5c74ec2325dd89efa435df973e343c460aa758290d52281b857e059b014cc17ef6233d411e360a8dd4" + } + ], + "purl": "pkg:npm/minimist-options@4.1.0", + "type": "library", + "bom-ref": "pkg:npm/minimist-options@4.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minimist", + "version": "1.2.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "6f37cbd58519b0fe35826bbfaa3ac493443a8b68b1fdc55e0216c26ea1fdbb7cd8bad4b570b834d2a86b0f4336315742731e127345293f67815a8f6ba2da6aea" + } + ], + "purl": "pkg:npm/minimist@1.2.7", + "type": "library", + "bom-ref": "pkg:npm/minimist@1.2.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minipass-collect", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "e93ea51f41fc386f642139bf266ead768a086e8806f5ed2d2e0a58ea6a615d29bf03dbbc36ad6bc811be42ca62b9bf4b8d69413ec3d2ded590fc1a2dab815dc4" + } + ], + "purl": "pkg:npm/minipass-collect@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/minipass-collect@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minipass-flush", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "266412618a4f52a5f92729f5997691c0e75ad6e43c1cfe4a013fe80d22c2cedd41611850534fe10edb01d6e7d97c4133319f5a0159ac070f3e156b085e50a55b" + } + ], + "purl": "pkg:npm/minipass-flush@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/minipass-flush@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minipass-pipeline", + "version": "1.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "c6e22aedc20eb74f513d1275f60762e1bf9188dbc31587b9247fa080dbc1a86aa941772bbb73dc466399b8704a58ad53c5ff7e710f8731537877acf8e8b64fec" + } + ], + "purl": "pkg:npm/minipass-pipeline@1.2.4", + "type": "library", + "bom-ref": "pkg:npm/minipass-pipeline@1.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minipass", + "version": "3.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "32077619d315cd8fb1dc827ea079d533e286de503973cb6769bc892a61d2686da4006a6e771b8e7fc4e80e486e985ed4ccc13b0de71b404f6e39984d9bb3ee26" + } + ], + "purl": "pkg:npm/minipass@3.1.3", + "type": "library", + "bom-ref": "pkg:npm/minipass@3.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minizlib", + "version": "2.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c0c6c47c0557e3eb40d65c7137bb7d281f37e5e06ee48644ae3d6faabe977b8c54479bb74bc4e8d493510700227f8712d8f29846274621607668ee38a5ed076" + } + ], + "purl": "pkg:npm/minizlib@2.1.2", + "type": "library", + "bom-ref": "pkg:npm/minizlib@2.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mkdirp", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "bd5a95650c9fdd62f1d9285dd2a27dc6ebea800c8a3cb022a884c4b6a5b4a08523ce8dcf78f0dde9f5bd885cf7d1e7fb62ca7fa225aa6e1b33786596d93e86cf" + } + ], + "purl": "pkg:npm/mkdirp@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/mkdirp@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mobx-react-lite", + "version": "3.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ab9f941c8a9808ea41a059bf3c4943b8e85b71ab6f4e5960469dccd6cf87a798f467a5cd8036e0ab16b0274640504c8a33c5f5cecef43c2ba1008cd7d5fe10fe" + } + ], + "purl": "pkg:npm/mobx-react-lite@3.2.0", + "type": "framework", + "bom-ref": "pkg:npm/mobx-react-lite@3.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mobx-react", + "version": "7.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2875236771c199994d9cf77533cda371d56c4110e57f29b7f33261644b37dd5c725504ef2fbee1383080aeaebe0b53f593fe9eac47a8d91eeba44ed978e2fb76" + } + ], + "purl": "pkg:npm/mobx-react@7.2.0", + "type": "framework", + "bom-ref": "pkg:npm/mobx-react@7.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "moment-locales-webpack-plugin", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4008b9bf43a53d43fb197be228cb719e9040a3c5a64c7ad434dee272202134e10077d7af08ebee37483537b4e1220dead7518b0a48d8d73436b1a45c7ffe379d" + } + ], + "purl": "pkg:npm/moment-locales-webpack-plugin@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/moment-locales-webpack-plugin@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "moment-timezone", + "version": "0.4.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "81f598c3ad5e22cdad796b67ecd8d88d0f5baa06" + } + ], + "purl": "pkg:npm/moment-timezone@0.4.1", + "type": "library", + "bom-ref": "pkg:npm/moment-timezone@0.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "moment-timezone", + "version": "0.5.43", + "hashes": [ + { + "alg": "SHA-512", + "content": "ef68f768dcae22c0f1745d62ec212057615fc4cd6be9a6aa2722c1dafc1bdf7997632a322e5cbe175cdb5aa840dff6d5228278b33954a0c6d49d5762777d8d51" + } + ], + "purl": "pkg:npm/moment-timezone@0.5.43", + "type": "library", + "bom-ref": "pkg:npm/moment-timezone@0.5.43", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "moment", + "version": "2.29.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4b0bd48ec6349cd8717abced82cae4c3362bc4768cf622fc892468fa5fc0c9d1e1727eccc4d1088477e897981bd43f7587c528c51ffbc8b00d04374d1c82bf3" + } + ], + "purl": "pkg:npm/moment@2.29.4", + "type": "library", + "bom-ref": "pkg:npm/moment@2.29.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "moo-color", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "8bff992973037fa6aa62d061b8e71e8fbd584a56e34f7c023bfe07d63f2b3efc4324489f770820e4c685caeea26004fc181649836cf476480ae18333bd44402d" + } + ], + "purl": "pkg:npm/moo-color@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/moo-color@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mri", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b73cec91bddb1bc2ef606145fe60d3a6ade3a48e90f707372c49816a086ef83742b2c77515a90dec17348553661321aad5bab74607e409bddc9902e934f3aba0" + } + ], + "purl": "pkg:npm/mri@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/mri@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ms", + "version": "2.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0690fc7e56332d980e8c5f6ee80381411442c50996784b85ea7863970afebcb53fa36f7be4fd1c9a2963f43d32b25ad98b48cd1bf9a7544c4bdbb353c4687db" + } + ], + "purl": "pkg:npm/ms@2.1.2", + "type": "library", + "bom-ref": "pkg:npm/ms@2.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ms", + "version": "2.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "e85973b9b4cb646dc9d9afcd542025784863ceae68c601f268253dc985ef70bb2fa1568726afece715c8ebf5d73fab73ed1f7100eb479d23bfb57b45dd645394" + } + ], + "purl": "pkg:npm/ms@2.1.3", + "type": "library", + "bom-ref": "pkg:npm/ms@2.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "nano-time", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0554f69ad89e22d0907f7a12b0993a5d96137ef" + } + ], + "purl": "pkg:npm/nano-time@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/nano-time@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "nanoid", + "version": "3.3.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "04672a30c26e4e817b8b5aedfb63d648d567588906094efc8c11b74713bf6d996764f2b60a68b641a7dfc463bfd91bd68bdb0bf850224625cc82ccb14350c80c" + } + ], + "purl": "pkg:npm/nanoid@3.3.6", + "type": "library", + "bom-ref": "pkg:npm/nanoid@3.3.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "natural-compare", + "version": "1.4.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + } + ], + "purl": "pkg:npm/natural-compare@1.4.0", + "type": "library", + "bom-ref": "pkg:npm/natural-compare@1.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "needle", + "version": "2.9.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e91f5fa89e597267feb9868581d20798bc0d95d9f91db2bc2f9c9b9fb533fb2957feb9ceb12a7500772f412ac268537ea8d335c29ca61ea0fb9956ac10e94719" + } + ], + "purl": "pkg:npm/needle@2.9.1", + "type": "library", + "bom-ref": "pkg:npm/needle@2.9.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "neo-async", + "version": "2.6.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "61ddd4112e665824aa47ea8d4fddd2dd4a18524a8067d94b83c6bb83dae29ac5a66062bc7154e8038fec17746bb21772577b0018c5d5526a4c60ec3e74ba4ebb" + } + ], + "purl": "pkg:npm/neo-async@2.6.2", + "type": "library", + "bom-ref": "pkg:npm/neo-async@2.6.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "nock", + "version": "13.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "f063f39f0c5c3cd087fe1f01f9765c2a360f5e7515e5c94e2828c0ab28ec8aa03ef8ca4dc7d13dfadf183e9d0c6d384ef8a6ae468eda649d56b886663ab4f652" + } + ], + "purl": "pkg:npm/nock@13.2.4", + "type": "library", + "bom-ref": "pkg:npm/nock@13.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "node-fetch-h2", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a1f456f7801bd13e003a1e4593cb7487c3815ab9a36f4492076d318751fc6273d5f4427e7f900ca18494436ce027822ad8700ad08da5e7f35eaaef18cc54b71e" + } + ], + "purl": "pkg:npm/node-fetch-h2@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/node-fetch-h2@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "node-fetch", + "version": "2.6.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "66330f1447d5c798fecb6c85df92b3c79b05ee40f3c6e0e3eb3887e0515b3a9f3bcca0d9371f321312486f4e4e185e0d96df481c520c064465e3555dbdc35d6d" + } + ], + "purl": "pkg:npm/node-fetch@2.6.7", + "type": "library", + "bom-ref": "pkg:npm/node-fetch@2.6.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "node-int64", + "version": "0.4.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "87a9065cdb355d3182d8f94ce11188b825c68a3b" + } + ], + "purl": "pkg:npm/node-int64@0.4.0", + "type": "library", + "bom-ref": "pkg:npm/node-int64@0.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "node-modules-regexp", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "8d9dbe28964a4ac5712e9131642107c71e90ec40" + } + ], + "purl": "pkg:npm/node-modules-regexp@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/node-modules-regexp@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "node-readfiles", + "version": "0.2.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "dbbd4af12134e2e635c245ef93ffcf6f60673a5d" + } + ], + "purl": "pkg:npm/node-readfiles@0.2.0", + "type": "library", + "bom-ref": "pkg:npm/node-readfiles@0.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "node-releases", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "53d87534b44e653abdb84d5235f7e7e96b8f0e0f227268b79ece2b125fe84df2257b888b8d39620b3813b1b68814cabf5e7d3bf3f95f63f04bd06599fa9b0ae1" + } + ], + "purl": "pkg:npm/node-releases@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/node-releases@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "normalize-package-data", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "a765b5b20aa28f7ccc332442d3aec3835e9b7f3547fb0ee1c9e826a48bd9e09363aad18e54022f2e68c1c77c8fed84def6f289824a0d38f8f0406a200e831714" + } + ], + "purl": "pkg:npm/normalize-package-data@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/normalize-package-data@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "normalize-path", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e9e66ce4bb375ad0a2b075a9f52d86532f1daa4a468b80554b3dc66aa884e9ecee6f4e75d844b3b57530501e82e8829b4246363e76ff983e166288c24707302c" + } + ], + "purl": "pkg:npm/normalize-path@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/normalize-path@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "normalize-registry-url", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d2fe93e3ce756fbdb2924e7312d168378417fc5ab293ba68b888fdc59c80bc07bd8e50e10304f8cfa165c2ca100878deb8ad84194a00c32fc5e32e01d6e66af4" + } + ], + "purl": "pkg:npm/normalize-registry-url@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/normalize-registry-url@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "normalize-url", + "version": "6.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e52fe5f03b2dcdc4043cc6e0b4a243e02b8ea2b953402b4d5837b46e79806aa85786b018d5f5798203301d82dfbaebb6c297990f87d12a28a0f09da3c6d48ec" + } + ], + "purl": "pkg:npm/normalize-url@6.1.0", + "type": "library", + "bom-ref": "pkg:npm/normalize-url@6.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "npm-run-path", + "version": "4.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b8f16cd95bbefbce1348ae7ee0c4e94848d02a8bd642fee4059d175b7881e1661080e94aa990e4fc4f51bb06f7dd80fe04afc805e2c51b692d22ed0bc87c25b" + } + ], + "purl": "pkg:npm/npm-run-path@4.0.1", + "type": "library", + "bom-ref": "pkg:npm/npm-run-path@4.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "nth-check", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "96a8eb8e668ea009d67cc9813cbf97367ca7661dbeb30c625f7594134b38c841c8ea6f80c2b2b65193a2988465dd7ff841cb55a92f008998c5ab2386acc5dbff" + } + ], + "purl": "pkg:npm/nth-check@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/nth-check@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "nvd3", + "version": "1.8.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "60643d840407b90085d09998913d8684d3076f9a40faf0df423e82d8676940fcdd44f8ffb2b3c6de687fddf673505b7e6add4dbac2e4fd1a880945a4c66e2f89" + } + ], + "purl": "pkg:npm/nvd3@1.8.6", + "type": "library", + "bom-ref": "pkg:npm/nvd3@1.8.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "nwsapi", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "87601ab5dc181fe247899a6fee9b7f8125f55e84466fb2ffa9221ebaa03a1b062817dc35bcfd5cc38d933b4688da9372b2144ae7cf7784d4a5fb5fffbc72bb85" + } + ], + "purl": "pkg:npm/nwsapi@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/nwsapi@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "oas-kit-common", + "version": "1.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "a494d2dbe4f4a062308231a9c3bb08454f1140c714a0a0835852dd06a281d813661a96c1307dac76a01a397520f0ece89d91d4d0beef7c9bb59891448980d639" + } + ], + "purl": "pkg:npm/oas-kit-common@1.0.8", + "type": "library", + "bom-ref": "pkg:npm/oas-kit-common@1.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "oas-linter", + "version": "3.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "2841a33c35685392bab30828f6125503fa981a5c1f6c5c7e2a0d9007f91deebcd5e4df0de4c83a3e5b2808ca21567426a3ea7325aa7f17ad74a93a1d2b379c19" + } + ], + "purl": "pkg:npm/oas-linter@3.2.2", + "type": "library", + "bom-ref": "pkg:npm/oas-linter@3.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "oas-resolver", + "version": "2.5.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "d69a358332254d742ac9536d2c5589bb30e6e31c6130227c41c3f739aaca0cef1a27c0260ad43aed76755fe9c16c71f80a34dc12c21a6f5a97e7e1885387f61a" + } + ], + "purl": "pkg:npm/oas-resolver@2.5.5", + "type": "library", + "bom-ref": "pkg:npm/oas-resolver@2.5.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "oas-schema-walker", + "version": "1.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "db2b9c7a7ab56bd60f99e344c6851af50c2bb7d445923a9a3000355fe53bb1b6f402a05e4c874c1e4cbd49043a88df786cee4d5b45b84d16177ab1be05d02f01" + } + ], + "purl": "pkg:npm/oas-schema-walker@1.1.5", + "type": "library", + "bom-ref": "pkg:npm/oas-schema-walker@1.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "oas-validator", + "version": "5.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c8fa0cabdcc886ff843921bbe0d11efbb245564bcf36805324c70075a7aa98ed1738a7b1280decc555fa277636212433c39c1d590fb02a8fb01644e02c30166" + } + ], + "purl": "pkg:npm/oas-validator@5.0.6", + "type": "library", + "bom-ref": "pkg:npm/oas-validator@5.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object-assign", + "version": "4.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ac98134279149c7d6c170f324fa552537cc3dec5a6bbab19848b1e63c557f8646edcfe85ec5bbe24d0e85df9251256cb2529dcdc55101d57b8714e618fe05c52" + } + ], + "purl": "pkg:npm/object-assign@4.1.1", + "type": "library", + "bom-ref": "pkg:npm/object-assign@4.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object-inspect", + "version": "1.10.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "7b9982265487ee9a0035f0bccfc4bdb3d4b620de7fe196f7699df77f9b3c62aa1acc217334b9682d4f2be55086f86ed6a2a2ef00066854c732deda7fdd7d0f97" + } + ], + "purl": "pkg:npm/object-inspect@1.10.3", + "type": "library", + "bom-ref": "pkg:npm/object-inspect@1.10.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object-inspect", + "version": "1.12.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "cfe70fc56d10194a7499ca9cb204322d5443a171506d73b005aab217b548808e1358d42c0c7ac1a5442c9519887c0a1859d633b3a525289b41d972694da352a5" + } + ], + "purl": "pkg:npm/object-inspect@1.12.2", + "type": "library", + "bom-ref": "pkg:npm/object-inspect@1.12.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object-inspect", + "version": "1.12.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "81e52f764edcf9e8b330d503911a56d7027081f3a239e1dbc4147f84b5cad5a4face65523b48ec41cb3b7e3e8c1b0f3d8c2fdc8c67cb70d3abb4c62d1aa9bcd6" + } + ], + "purl": "pkg:npm/object-inspect@1.12.3", + "type": "library", + "bom-ref": "pkg:npm/object-inspect@1.12.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object-inspect", + "version": "1.11.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e9ee2912e927771b141f6493f21f772371b245e8664f0a581d57e105ca08c52d0e45996fdd4549d377d3d0f64d0986834369b5856e9175c827525820ba81ec6" + } + ], + "purl": "pkg:npm/object-inspect@1.11.0", + "type": "library", + "bom-ref": "pkg:npm/object-inspect@1.11.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object-keys", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "36e00449439432b9485ce7c72b30fa6e93eeded62ddf1be335d44843e15e4f494d6f82bc591ef409a0f186e360b92d971be1a39323303b3b0de5992d2267e12c" + } + ], + "purl": "pkg:npm/object-keys@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/object-keys@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object.assign", + "version": "4.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b14f62f94c75ec029ca250f60a996fb6107a575dee488b733e7f87be6891401daa396a61515ba27438ee9cfcb53c05ee3bbad0b1d862fcf61c4607a5d298ab9" + } + ], + "purl": "pkg:npm/object.assign@4.1.2", + "type": "library", + "bom-ref": "pkg:npm/object.assign@4.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object.assign", + "version": "4.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "d66c4a7f47b9f1bbf28d20ad298638b117bd8ad464dcf269aae24e8de224cfcf3909ccdc23822f2490cb3d2ef6a28c2e4a1fa907150544ea57f9353efa1c6165" + } + ], + "purl": "pkg:npm/object.assign@4.1.4", + "type": "library", + "bom-ref": "pkg:npm/object.assign@4.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object.entries", + "version": "1.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "4f2c668d4a198207783abad4d56eba14c0c6e82baa271b05bf299ec97239d7ebd02cdebbcd87d9b1ea6d4607bbd3790a41da38b9c72000a79b5c57110b3938fa" + } + ], + "purl": "pkg:npm/object.entries@1.1.5", + "type": "library", + "bom-ref": "pkg:npm/object.entries@1.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object.fromentries", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "080c86e66590451881539ed17b814aa130635df0e8370745547d98d6d4bd3ea0ac7d44f2980a213a410c486dda44d2a6bf8955dceee9d5eb7b735f3baba6f29f" + } + ], + "purl": "pkg:npm/object.fromentries@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/object.fromentries@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object.hasown", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d82dee2d8af350ceae0975a596e963b71cc659256ce4907f1f9c8e8479b5a5d1566d876c0bd8ba2f9bbe1ea76fe067395a4dd57ad8964712a1d0db2567f10fc" + } + ], + "purl": "pkg:npm/object.hasown@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/object.hasown@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object.values", + "version": "1.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "4146515b48a54373e73e96cdb6074d5753c36c4a8b22248507797e1271ad050ffc4944cb8f53d9c2d40700166d2e0c292594d2661b862ce1a4e7b0ebc7622f62" + } + ], + "purl": "pkg:npm/object.values@1.1.5", + "type": "library", + "bom-ref": "pkg:npm/object.values@1.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object.values", + "version": "1.1.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "155553903d6f10d0ac01cc0db3d93a8de6b6b870bf5f4f897231bc600eb414de4231a2661bde704fd8de93fc57f67a2b9ea191ac190ab73b80bb6c2e1e92aabf" + } + ], + "purl": "pkg:npm/object.values@1.1.6", + "type": "library", + "bom-ref": "pkg:npm/object.values@1.1.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "oblivious-set", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "cfea48d3bab1a387360ae9541c20dff6572a0e5312a3bd8dff8acb5294577fa7eefaaf2f8edf32d314be4e57fc3532437535c76dd78ed67dcc95b72dc04a1767" + } + ], + "purl": "pkg:npm/oblivious-set@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/oblivious-set@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "once", + "version": "1.4.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "583b1aa775961d4b113ac17d9c50baef9dd76bd1" + } + ], + "purl": "pkg:npm/once@1.4.0", + "type": "library", + "bom-ref": "pkg:npm/once@1.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "onetime", + "version": "5.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "91ba5a4921894d674063928f55e30e2974ab3edafc0bc0bbc287496dcb1de758d19e60fe199bbc63456853a0e6e59e2f5abd0883fd4d2ae59129fee3e5a6984a" + } + ], + "purl": "pkg:npm/onetime@5.1.2", + "type": "library", + "bom-ref": "pkg:npm/onetime@5.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "openapi-sampler", + "version": "1.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d907e32b5a0cf52bf4abcd807b546b51edf27c5980ca3179e3cfba78079bfa1fdc2f5523e754d6e147b3ada044bf011dce80607e8e006932d51464ca8fec980f" + } + ], + "purl": "pkg:npm/openapi-sampler@1.3.0", + "type": "library", + "bom-ref": "pkg:npm/openapi-sampler@1.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "openapi-typescript", + "version": "5.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "00607642264fcf8ac4ef32305777511eda140bf0961e1523bb3197bed98c40dd80155f310932ca7195072dc74f426b7ff378b6da7444efe4f15ce5e42be81fe1" + } + ], + "purl": "pkg:npm/openapi-typescript@5.4.1", + "type": "library", + "bom-ref": "pkg:npm/openapi-typescript@5.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "optionator", + "version": "0.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "f885bda4009d9375d69a64d71bc9b7ba919426cb795d11b3c4c4635f302e2755e720536f7e18e322e6240efcac9cf43bab3a95ccbb7bf010abba7b6a4615906c" + } + ], + "purl": "pkg:npm/optionator@0.8.3", + "type": "library", + "bom-ref": "pkg:npm/optionator@0.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "optionator", + "version": "0.9.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ef84656391429e1ab88d1c5550f283691c2b54d5ccaac1ac896e80270e172bc866b66d74c02d32a5904bc39208a7ce4d64cafdd7ea9dd51bef10dc20ee38d117" + } + ], + "purl": "pkg:npm/optionator@0.9.1", + "type": "library", + "bom-ref": "pkg:npm/optionator@0.9.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "p-limit", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ffff3c985592271f25c42cf07400014c92f6332581d76f9e218ecc0cbd92a8b98091e294f6ac51bd6b92c938e6dc5526a4110cb857dc90022a11a546503c5beb" + } + ], + "purl": "pkg:npm/p-limit@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/p-limit@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "p-limit", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4d839a9ccdf01b0346b193767154d83c0af0e39e319d78f9aa6585d5b12801ce3e714fe897b19587ba1d7af8e9d4534776e1dcdca64c70576ec54e5773ab8945" + } + ], + "purl": "pkg:npm/p-limit@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/p-limit@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "p-locate", + "version": "4.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "47bf5967fd30031286bb7a18325cfc8f2fe46e1b0dad2ed2299ecfc441c1809e7e1769ad156d9f2b670eb4187570762442c6f3155ec8f84a1129ee98b74a0aec" + } + ], + "purl": "pkg:npm/p-locate@4.1.0", + "type": "library", + "bom-ref": "pkg:npm/p-locate@4.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "p-locate", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2da363b51594058fbecc1e6713f37071aa0cca548f93e4be647341d53cdd6cc24c9f2e9dca7a401aded7fed97f418ab74c8784ea7c47a696e8d8b1b29ab1b93f" + } + ], + "purl": "pkg:npm/p-locate@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/p-locate@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "p-map", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "cb76fc2a977c380378e388717c16c57e3d4563f463b5377cb73630854a8d617c747d7c76897e2668fe10afaaa120a6d05c8d36c132c075ae1f6146c36a04d417" + } + ], + "purl": "pkg:npm/p-map@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/p-map@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "p-map", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fdb8ceaa68044c1601e41a0478655e6bc766bc76f69bd18bcb513d5b8df27b27cfe9040264614d6be5d171e244b8307aceaafe80aa4802694b79b329ca4c3f31" + } + ], + "purl": "pkg:npm/p-map@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/p-map@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "p-try", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4789cf0154c053407d0f7e7f1a4dee25fffb5d86d0732a2148a76f03121148d821165e1eef5855a069c1350cfd716697c4ed88d742930bede331dbefa0ac3a75" + } + ], + "purl": "pkg:npm/p-try@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/p-try@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "parent-module", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "190d84591a5057cfe8f80c3c62ab5f6593df3515996246e2744f64e6ba65fe10b7bed1c705f1a6d887e2eaa595f9ca031a4ad42990311372e8b7991cb11961fa" + } + ], + "purl": "pkg:npm/parent-module@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/parent-module@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "parse-entities", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "924cb01a909c45886a408721696a99f3be70ce94bf6cc2a1cf91e7377a7bc2f7894e44edc8007f0259d2d1ff03152a985b54fcdadeb2100904701f80d48dcc6d" + } + ], + "purl": "pkg:npm/parse-entities@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/parse-entities@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "parse-json", + "version": "5.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6b208abe6fe98421b13a461148233cda20f072df3f1289d2120092c56c43eef7ba8c7820b059787d955004f44d810a0a8ae57fa1d845ac6cd05d9c1b89f0bc46" + } + ], + "purl": "pkg:npm/parse-json@5.2.0", + "type": "library", + "bom-ref": "pkg:npm/parse-json@5.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "parse5", + "version": "6.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "39f9ff0931734464d3c70a4d12cf4f3fdde05d2847713ab6e799f345848a7bc024569658eded5fa664df3b2a08be33f91c6ed9d9933b552f4f3e14065b6a4ea7" + } + ], + "purl": "pkg:npm/parse5@6.0.1", + "type": "library", + "bom-ref": "pkg:npm/parse5@6.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "path-browserify", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6fbba8d9409439865c9c5ff7203d25ba53898bf6da7f16b5c4f7bb64fb1a9a6052a634964248cdc65b7adf96064b632247d1a3bee5c2b73d9e9abde36eccfdf2" + } + ], + "purl": "pkg:npm/path-browserify@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/path-browserify@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "path-exists", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a4f50cb943b8d86f65b071ecb9169be0d8aa0073f64884b48b392066466ca03ec1b091556dd1f65ad2aaed333fa6ead2530077d943c167981e0c1b82d6cbbff" + } + ], + "purl": "pkg:npm/path-exists@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/path-exists@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "path-is-absolute", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + } + ], + "purl": "pkg:npm/path-is-absolute@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/path-is-absolute@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "path-is-inside", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "365417dede44430d1c11af61027facf074bdfc53" + } + ], + "purl": "pkg:npm/path-is-inside@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/path-is-inside@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "path-key", + "version": "3.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a2399e374a9dfb2d23b3312da18e3caf43deab97703049089423aee90e5fe3595f92cc17b8ab58ae18284e92e7c887079b6e1486ac7ee53aa6d889d2c0b844e9" + } + ], + "purl": "pkg:npm/path-key@3.1.1", + "type": "library", + "bom-ref": "pkg:npm/path-key@3.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "path-parse", + "version": "1.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c32733d510410f47ecb8f33f7703411dd325dbf29001c865a8fe4e5861d620a58dbfd84b0eb24b09aeaee5387c6bcab54e9f57a31baa00a7c6a1bce2100fcb3" + } + ], + "purl": "pkg:npm/path-parse@1.0.7", + "type": "library", + "bom-ref": "pkg:npm/path-parse@1.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "path-type", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "80329bf1a64c0de0ffb595acf4febeab427d33091d97ac4c57c4e39c63f7a89549d3a6dd32091b0652d4f0875f3ac22c173d815b5acd553dd7b8d125f333c0bf" + } + ], + "purl": "pkg:npm/path-type@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/path-type@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "perfect-scrollbar", + "version": "1.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "32b488988367221dd39b585d3d3e9b8e2e9f988791a2b5447a042fc949e1aa4a368431931e19a33de7c75dfc46fc96fcc556df0b08265089486a31111978d55d" + } + ], + "purl": "pkg:npm/perfect-scrollbar@1.5.1", + "type": "library", + "bom-ref": "pkg:npm/perfect-scrollbar@1.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "picocolors", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d5fca0ae84cb947bbaeb38b6e95a130eff324609b415c71e72cb2da3e321b19d03fc3196dac9bc13c0235bb354e5555346de46c5b799e6a06e26bf87c8b6248d" + } + ], + "purl": "pkg:npm/picocolors@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/picocolors@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "picomatch", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "958d50fcf889182db33afff3dfdd563930fe674d9b0a0b057efc685d77fa87b92ff68f969ac9b362aac0c18eb7b0d80ec44e3111dab45b25275df29e06b4af63" + } + ], + "purl": "pkg:npm/picomatch@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/picomatch@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "picomatch", + "version": "2.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "254ded7874cd8e6136542185cee63c117cc20d5c04a81d9af1fb08bf0692b4784058911e55dd68d500fcd0253af997445d748b6d2b2e2f0263902056a9141454" + } + ], + "purl": "pkg:npm/picomatch@2.3.1", + "type": "library", + "bom-ref": "pkg:npm/picomatch@2.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pify", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "ed141a6ac043a849ea588498e7dca8b15330e90c" + } + ], + "purl": "pkg:npm/pify@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/pify@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pify", + "version": "4.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b81f3490115bfed7ddebc6d595e1bd4f9186b063e326b2c05294793d922b8419c86914d0463a9d252b082a438fe8e00815b8fb18eadcb9d739a4d8d9fa0795da" + } + ], + "purl": "pkg:npm/pify@4.0.1", + "type": "library", + "bom-ref": "pkg:npm/pify@4.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pinkie-promise", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "2135d6dfa7a358c069ac9b178776288228450ffa" + } + ], + "purl": "pkg:npm/pinkie-promise@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/pinkie-promise@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pinkie", + "version": "2.0.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "72556b80cfa0d48a974e80e77248e80ed4f7f870" + } + ], + "purl": "pkg:npm/pinkie@2.0.4", + "type": "library", + "bom-ref": "pkg:npm/pinkie@2.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pirates", + "version": "4.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5ae36a2d36cc237b667de7f64cac654260222c72ad16196c0999cf229bafd8ec3444354ef257f2d4ea5fe0d53394c5cb8cf97e31e9fb02e55d5fa4c0facfae18" + } + ], + "purl": "pkg:npm/pirates@4.0.1", + "type": "library", + "bom-ref": "pkg:npm/pirates@4.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pirates", + "version": "4.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "f15f7e1d03eea67697300db773986f97af735ef4f04f3c8061ab2791bd13b6ce17bcee02962a8e34c3a7be5ab6eab9212c2de758314125fef72d4d5ed5564b69" + } + ], + "purl": "pkg:npm/pirates@4.0.5", + "type": "library", + "bom-ref": "pkg:npm/pirates@4.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pkg-dir", + "version": "4.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1d10f36da2a30be00e5955f1014ff1e7808e19e22ff5e6fee82903490a0d4ede17c96a0826fb8fb178b3c6efc5af6dc489e91bb59c2687521c206fe5fdad7419" + } + ], + "purl": "pkg:npm/pkg-dir@4.2.0", + "type": "library", + "bom-ref": "pkg:npm/pkg-dir@4.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pluralize", + "version": "8.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "35cdc84f9c87cdf9537db8e0a967023e9a3b0da2b2e059e907497fcc2016d1373b8f1022baa4b11dab27b41dc3efcf3b2d2ac0f7790327d217a2fc49631c8b08" + } + ], + "purl": "pkg:npm/pluralize@8.0.0", + "type": "library", + "bom-ref": "pkg:npm/pluralize@8.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "polished", + "version": "4.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "a1c3c07150543abc8910a7b4cf628b77597d1016b5af9992c252a91319ab2f3b27233268e1ac6ca14f4ed818ce4e40c60d3e266745851395ca4e54779cb9d938" + } + ], + "purl": "pkg:npm/polished@4.1.3", + "type": "library", + "bom-ref": "pkg:npm/polished@4.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "popmotion", + "version": "11.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "639e452dd8f7531911ed5977b3b42be1ef66d289d29cff16eddff140bb2824ce34bece9428715dca0b3a496af26ac4d962aba03239b705ea421780965c388780" + } + ], + "purl": "pkg:npm/popmotion@11.0.3", + "type": "library", + "bom-ref": "pkg:npm/popmotion@11.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-calc", + "version": "8.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "4a658c489981f0c4679d42e5771d25408ca148dbee0e5f477eb6646aaa84fd61c0853a18b00bc3abec80b00fe423220d0ecccea77461d0616836e1f9629b26dd" + } + ], + "purl": "pkg:npm/postcss-calc@8.2.4", + "type": "library", + "bom-ref": "pkg:npm/postcss-calc@8.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-colormin", + "version": "5.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "59d0cee203851b667c9f83fc4d6069b219cbdc9a663662707677cfda06e4daa040f0f5b03987268e623fb770a631e2fbd9aec791dfb1fcc83d3b6ff4ac3e783e" + } + ], + "purl": "pkg:npm/postcss-colormin@5.3.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-colormin@5.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-convert-values", + "version": "5.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "73a1f3738180bfde41eecbb2e2e76ccd7f59cb8113c8c0a014f503b568dd153287d5213d78563f8c4a474b04c7d503eec311e95ac96172451059b351338868e6" + } + ], + "purl": "pkg:npm/postcss-convert-values@5.1.2", + "type": "library", + "bom-ref": "pkg:npm/postcss-convert-values@5.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-discard-comments", + "version": "5.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8bf36d3c3956c7545d9441fd620e645c6dd8c992e045e884b6f720434a2594233a5868086d365e89627626d7616791e0b042a1792de9253aeeab02a81f059a9" + } + ], + "purl": "pkg:npm/postcss-discard-comments@5.1.2", + "type": "library", + "bom-ref": "pkg:npm/postcss-discard-comments@5.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-discard-duplicates", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce65f7228488d9aa1e9f11d5e82ee9967807596854395dec3f54fccb689fcf1cdbb67ba193511d3f09b44b56c850d689d9e35b59e18b130cf0f21b8f0faeda43" + } + ], + "purl": "pkg:npm/postcss-discard-duplicates@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-discard-duplicates@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-discard-empty", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ccfcf85a58e24ae2d6b08d22af831c9ebe2a410e5ed5491cde2ed47c4d9772bc0a2b62c83c8a84e63c4c4713ba19b23772ffffced5c3b17c04593dc11ce1a1dc" + } + ], + "purl": "pkg:npm/postcss-discard-empty@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/postcss-discard-empty@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-discard-overridden", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "db59ce2fb46a591d646ac21574ab3c1cda902611712ecc917c09d40e6e057b8b7898258bf4e2621ef9473e371df33739332bbcf5bffbc190e73928c581e591b7" + } + ], + "purl": "pkg:npm/postcss-discard-overridden@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-discard-overridden@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-merge-longhand", + "version": "5.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "34e1b582bc3dc083beeb46ab29ad9862cadb82f3fab69fa3a9cefe643e7f31a948c36df8a281f60ba2a547a1449f8ca57bb1aa66807148ad662c113d28fbabeb" + } + ], + "purl": "pkg:npm/postcss-merge-longhand@5.1.5", + "type": "library", + "bom-ref": "pkg:npm/postcss-merge-longhand@5.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-merge-rules", + "version": "5.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "cca314967c3ecd8096a0f37aca13e3b5c11d94968c519d16c957314c09b0de592437f34331190e922b9cb501285803af1fbb706b151476f056974778fa189f45" + } + ], + "purl": "pkg:npm/postcss-merge-rules@5.1.2", + "type": "library", + "bom-ref": "pkg:npm/postcss-merge-rules@5.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-minify-font-values", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7a5de6613831d776403cf8ab495b07a85ce5f810410eb5ef6f24af3c616741c4c8e2236c96b3da16ae26b9390b6662a51a4e20c85018501307df4f87bab444c8" + } + ], + "purl": "pkg:npm/postcss-minify-font-values@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-minify-font-values@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-minify-gradients", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "546bd7313a42128e2a1d33526bd0346b70fe77118564263047a268924fbfde807a7e5bb6fcf9cf5c0876c7bc79d84918e719481cb9be2def2d2717bfed3361cf" + } + ], + "purl": "pkg:npm/postcss-minify-gradients@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/postcss-minify-gradients@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-minify-params", + "version": "5.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "6e4ce959c8f2924a88ba334bf845443ce94b622fde674e74a08995b4753b6f89454bcda33e7b026f8e20bc2ea9c5a36ddfc125b378d66031d38c729fd24a1382" + } + ], + "purl": "pkg:npm/postcss-minify-params@5.1.3", + "type": "library", + "bom-ref": "pkg:npm/postcss-minify-params@5.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-minify-selectors", + "version": "5.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9cf26eece8d9253b155263dd9b64dc6a2a21230c4ffaff216bd35e850db27bdb33bf8a2b8ab454dd20ddb5498a1fed749f39f46c0c8e5d9d1412becea6f2de86" + } + ], + "purl": "pkg:npm/postcss-minify-selectors@5.2.1", + "type": "library", + "bom-ref": "pkg:npm/postcss-minify-selectors@5.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-modules-extract-imports", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6dd1e57859cfde46783580e1b869552be08cad0fe9a949bc6f1fe818bf772ba815c22725bd7e71d27efa7d830ab8818ace50013b2d77cecbea8dbd1ff764c45f" + } + ], + "purl": "pkg:npm/postcss-modules-extract-imports@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-modules-extract-imports@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-modules-local-by-default", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b13ee286d986485f72866ea0822907755d219738834d7ee81685edb9559e0ddde11ce6cd91c1d1a3d577ca0eef08063b70e372c490bf5d70a69a21c772f5fb6d" + } + ], + "purl": "pkg:npm/postcss-modules-local-by-default@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-modules-local-by-default@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-modules-scope", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "867722870140db23dab61f28675e4f66abd61a459ff9751f4205066a64b82eaa0fd5a9d02ceb0e270d2fafb27b2302e9a18f5f6ad036aa21941a6b992f422a96" + } + ], + "purl": "pkg:npm/postcss-modules-scope@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-modules-scope@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-modules-values", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "443c47900884188efc812da87f2bc2b2eee2c9c46fee8ab0e713169fd88ca11d0dffb99ff43e7479c42a528e4167d661daf1f86c2511fe4b42a9b07d9bcbc98d" + } + ], + "purl": "pkg:npm/postcss-modules-values@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-modules-values@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-normalize-charset", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "99281427ea5dfe5751195c76ea9db0cfd74d67b8e2e8f9fc55605a8cc5c57fc8e4eef5284ab67696dff0651ec3b6565829eb26648ebcd2a8ebd827851767db52" + } + ], + "purl": "pkg:npm/postcss-normalize-charset@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-charset@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-normalize-display-values", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "58fe0a20ce28d9d6b34175a615aa8c99cbec2a685d20d15b96049e4609fc049eafc5a332689930033a4fa6ebd22281bfae65f733e22b459133d87d2096b40d10" + } + ], + "purl": "pkg:npm/postcss-normalize-display-values@5.1.0", + "type": "framework", + "bom-ref": "pkg:npm/postcss-normalize-display-values@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-normalize-positions", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f20988b600381f9c6253180dff74d5bd746827190058b5ba7ff28a85db07d376ad834701f229579eb0793e94ac87056efdd0f666c44541c47538499204302071" + } + ], + "purl": "pkg:npm/postcss-normalize-positions@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-positions@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-normalize-repeat-style", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "211dee06373eee671618be82b6788a350e11af97d3c7091a0c7c0c043186b35c7d2154646084ff33835e9595a400e05d57abf767d4b8eb3a9a286972cc749c87" + } + ], + "purl": "pkg:npm/postcss-normalize-repeat-style@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-repeat-style@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-normalize-string", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a1888824e7f84fd4f53788be69b78873b5609bfc4f0868a1e1b673e4d9b4fc045527b2bac6b0e52f0bf0a8ec9dbf22f744735ff2a664eafa3769ab62c3f828df" + } + ], + "purl": "pkg:npm/postcss-normalize-string@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-string@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-normalize-timing-functions", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0ce124cc9e12017bf9c641e5d166bd7192c5dd6081845de8d52295c4a4006bed2960a96e793a4282f9050077e4f98eb87b35fdfa72131ab0d97951a02132578e" + } + ], + "purl": "pkg:npm/postcss-normalize-timing-functions@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-timing-functions@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-normalize-unicode", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "27a337322cc0019d9d39d4a3cb671a6b224b413f04f0af578cb71ef005103303ab0af8c21efdb868b0bf2e9b35475ca539fa25e5520331a33f2e8f4d1a593549" + } + ], + "purl": "pkg:npm/postcss-normalize-unicode@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-unicode@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-normalize-url", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e6ea467833be3d5b613b14a676ce3765e31e65f287fbf0ca806443ed3125924c92e3a25701484ccc82a209aec169b3de232dc041c4e45f055537b0dbaac8827b" + } + ], + "purl": "pkg:npm/postcss-normalize-url@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-url@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-normalize-whitespace", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f37649e2ddcd5031132074dadee120e9ab168d20582f911d915074b039dcc7d111cce2815492147833bd47203d670b6283c125d5defd1c1a742448bcc2f1909c" + } + ], + "purl": "pkg:npm/postcss-normalize-whitespace@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-whitespace@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-ordered-values", + "version": "5.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "c2bd9abd16d6e074b65c4d990aaa5fa7837fb430ba199299f9254ff140533954bc416adce130fc318ade6c9aef5559463cab339a2482cee7b8dcd0e256d8039a" + } + ], + "purl": "pkg:npm/postcss-ordered-values@5.1.2", + "type": "library", + "bom-ref": "pkg:npm/postcss-ordered-values@5.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-reduce-initial", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4e81352f8b3d1a787e8cb418c77dbaf9eed9a5d773ee79d2bf11c83cb33cdde1744c6d8c47e39ef62451b4ebbcfe16a0487fa669fddfb4e7cd60964bef58c17" + } + ], + "purl": "pkg:npm/postcss-reduce-initial@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-reduce-initial@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-reduce-transforms", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d9f6dd6e6822af902fa56f512ed74e371d50a181b6fc4b6aa4d41b140483962c416c062e4dc2747440b096a36a1fb55b6949c49e1f12af139edac4489f6e17c9" + } + ], + "purl": "pkg:npm/postcss-reduce-transforms@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-reduce-transforms@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-resolve-nested-selector", + "version": "0.1.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "29ccbc7c37dedfac304e9fff0bf1596b3f6a0e4e" + } + ], + "purl": "pkg:npm/postcss-resolve-nested-selector@0.1.1", + "type": "library", + "bom-ref": "pkg:npm/postcss-resolve-nested-selector@0.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-safe-parser", + "version": "6.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "14044737ca701fe5a24b638f0b1248f05b912694d59e7e993458aa00cd9a796d8bc131d65a65a0232282e9c528d0bf1a78a885ff5e0c36f9e996ce91d8f05e31" + } + ], + "purl": "pkg:npm/postcss-safe-parser@6.0.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-safe-parser@6.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-selector-parser", + "version": "6.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "11a5751a5e2650457875d8439efff1b63eecc70af0c5d7ad1dd5941a74f854941ffb8774e6fea51d866bf0de7bde4e59d01562b2cec10e17d6b4a4b7fac7c0a9" + } + ], + "purl": "pkg:npm/postcss-selector-parser@6.0.13", + "type": "library", + "bom-ref": "pkg:npm/postcss-selector-parser@6.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-svgo", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0fbe4ab07d739b966b1f2c4f6a4031256b64c977b0e6ac12ef4bf9e9ec70bf0e78d9df4246d4e8efc2b459e171641e06ec95ca28c6c466d65ac9319d224cbf78" + } + ], + "purl": "pkg:npm/postcss-svgo@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-svgo@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-unique-selectors", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4988e0e510baf3f0bd87c317cf9e1396658583c551d62fcdee7cebfce0dadc822a48ed369e46c6ad0212b84ebdbf6626257692bfc01bf0e410f7a9f68af7a18" + } + ], + "purl": "pkg:npm/postcss-unique-selectors@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/postcss-unique-selectors@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-value-parser", + "version": "4.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d4d342b3abaeadf9156de5c6e12f09153f6dd7d9b8e480a789ff3358b779a0f499e74427c0c7caf87de3bf8d3c7788f0ffb06db6fe5ac52e48887a0b69534779" + } + ], + "purl": "pkg:npm/postcss-value-parser@4.2.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-value-parser@4.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss", + "version": "8.4.31", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d2d3c21ba226bd9adb3fdb2815dde2e96398219d471f2d5fc45d3396d44daa63124a186054b4d8cdefa1581e732cdfa4660119f8d5b0b40199a7fab474395a5" + } + ], + "purl": "pkg:npm/postcss@8.4.31", + "type": "library", + "bom-ref": "pkg:npm/postcss@8.4.31", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "prelude-ls", + "version": "1.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "be47033eb459a354192db9f944b18fa60fd698843ae6aa165a170629ffdbe5ea659246ab5f49bdcfca6909ab789a53aa52c5a9c8db9880edd5472ad81d2cd7e6" + } + ], + "purl": "pkg:npm/prelude-ls@1.2.1", + "type": "library", + "bom-ref": "pkg:npm/prelude-ls@1.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "prelude-ls", + "version": "1.1.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "21932a549f5e52ffd9a827f570e04be62a97da54" + } + ], + "purl": "pkg:npm/prelude-ls@1.1.2", + "type": "library", + "bom-ref": "pkg:npm/prelude-ls@1.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "prettier", + "version": "2.7.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ba3a693be32474faa854836e0c50d12c2966ec3efca9b0edd3f351fb0a7916a1193a84cd0233c75a3d7b41186eee07881c97dc361464d57550985f01a77c9efa" + } + ], + "purl": "pkg:npm/prettier@2.7.1", + "type": "library", + "bom-ref": "pkg:npm/prettier@2.7.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "prettier", + "version": "2.8.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc84b846573614d8740724a4dd691deb19b0c41d05a4e9dd5b97e2b0ce47f21b194b1536556541e425889088d6beb1e3221c64da0ddb7cc28cf3bccd4eb65d77" + } + ], + "purl": "pkg:npm/prettier@2.8.4", + "type": "library", + "bom-ref": "pkg:npm/prettier@2.8.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pretty-format", + "version": "27.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d1fdcfa9bc5739da72e298b44e6239d73eda256b09beb960f1af8163b8b0cb527fa4b569d237ce752a81f01f3ceaabaadf08e8e4ccdf052e00eb4ae6fa503b8" + } + ], + "purl": "pkg:npm/pretty-format@27.3.1", + "type": "library", + "bom-ref": "pkg:npm/pretty-format@27.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pretty-format", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "41bd60cb93ab3f9fb30dfd81be7cdd9778ec4dfd6a5d531acdbbc2a0a86d2aa56ce3f60ae28cd7e2029024957235ef9c6a334f9f42a80b4302dc552668758499" + } + ], + "purl": "pkg:npm/pretty-format@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/pretty-format@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "prismjs", + "version": "1.28.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f1a697758be5d45ee20bb5e6d6ca6a49a63f389069616deff8a27e175ee2631bdd73cb1f8d6d7de0238ae705613195f8e6d1ad7a205081dbc3fe7871711c3297" + } + ], + "purl": "pkg:npm/prismjs@1.28.0", + "type": "library", + "bom-ref": "pkg:npm/prismjs@1.28.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "prismjs", + "version": "1.27.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b75dc118f52514347bc110799100c6e238e5ed77ae1fa8db246b75d491cf2fdeaac2c107357dbeebcb455ea735fe4fbf8c02ec6d2589294393fe1718019e4b90" + } + ], + "purl": "pkg:npm/prismjs@1.27.0", + "type": "library", + "bom-ref": "pkg:npm/prismjs@1.27.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "promise-inflight", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "98472870bf228132fcbdd868129bad12c3c029e3" + } + ], + "purl": "pkg:npm/promise-inflight@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/promise-inflight@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "promise", + "version": "7.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9e89505d9ff82fe6cffd41a591f688ba35fd04ac46c2643d393e263ade72bf2f222b5877c2a4c42428a3cc600d4c20a5f675a3638d63bb2027d8add0d612cb4e" + } + ], + "purl": "pkg:npm/promise@7.3.1", + "type": "library", + "bom-ref": "pkg:npm/promise@7.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "prompts", + "version": "2.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "37136ffe42e0b8203ba778c4f282f668406cac95a001a901a609a02ba9693d657e5ae3a663aaf6ff36c05673fe4fc6d0940d27cc75d2252256d07abbca5683d9" + } + ], + "purl": "pkg:npm/prompts@2.4.2", + "type": "library", + "bom-ref": "pkg:npm/prompts@2.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "prop-types", + "version": "15.8.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a23f3b0a064809dba5528868815011ec08e50b4df6ed4e1e9782fa780bcea827ae74c0d553435384d695f9bf437f87578123f58173139cf7617deff6a831f972" + } + ], + "purl": "pkg:npm/prop-types@15.8.1", + "type": "library", + "bom-ref": "pkg:npm/prop-types@15.8.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "prop-types", + "version": "15.7.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "f1042291d1fbfff476beeac8252bad675b261d84dc2e945610e9479f37161e6058ace194cac2b04acac2f3d0428858f709badf27f9d715d25ea4e56b6351821d" + } + ], + "purl": "pkg:npm/prop-types@15.7.2", + "type": "library", + "bom-ref": "pkg:npm/prop-types@15.7.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "propagate", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc6ae139abcf493cf841536e04d75c35778f35d34c68ed718fdc81787d527103e393fae183db129425cf84c905b9a34d5bfb324ef62ab276c82713017d16db6a" + } + ], + "purl": "pkg:npm/propagate@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/propagate@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "property-information", + "version": "5.6.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6141d23e4f80df460fbfed107fc8bd31b7defc2d2174f5e4d6cd633d54e857ca64f0142da70d7472df3d128ece5a4badaf0aaf4f47a2700c653a0ddd380bbc24" + } + ], + "purl": "pkg:npm/property-information@5.6.0", + "type": "library", + "bom-ref": "pkg:npm/property-information@5.6.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "property-information", + "version": "6.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9266b853b005093c29aaae6dc330b56152035d2aa0eaa40ae89374b263b0f1f811cb53a4322d02612cc59accba767a927a76a602d8f40b25cc509d4c7faa113a" + } + ], + "purl": "pkg:npm/property-information@6.2.0", + "type": "library", + "bom-ref": "pkg:npm/property-information@6.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "proxy-from-env", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0fece439109b03d7f5b5d5912b445a091dc63efe7470cc5caf3e17f24e4b4d2503d43930e3b98a24465036e9c8b514e45b082d6944a8d515454481bd65788562" + } + ], + "purl": "pkg:npm/proxy-from-env@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/proxy-from-env@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "psl", + "version": "1.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "44874ecf2a1abcafa1035f0e186583a944ec08b86d03b21c67fe8d0ace1f14968704369bfa90c3983201c96151409ab609deebd4ea10c4118a39acedabe86321" + } + ], + "purl": "pkg:npm/psl@1.8.0", + "type": "library", + "bom-ref": "pkg:npm/psl@1.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "punycode", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5d1b118dd7fe8f99a5fb2ffa18a1cf65bac5ffca766206b424fb5da93218d977b9a2124f0fdb1a0c924b3efa7df8d481a6b56f7af7576726e78f672ff0e11dd0" + } + ], + "purl": "pkg:npm/punycode@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/punycode@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pure-color", + "version": "1.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "405003627b15a01330d6cad6ece54a1188c6f8c6c86b8f6ce78c35300d440d8eabdabfec4dc28a62a457d5fe0662f9d73fb78dfcf7bd1c5717fa1c339ab5d11c" + } + ], + "purl": "pkg:npm/pure-color@1.3.0", + "type": "library", + "bom-ref": "pkg:npm/pure-color@1.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "querystringify", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "148aa08f6114bd36bb479d2ed2b1acc937edce3626bff6b784edf8e5b64daea69b36a8ed8220cc826a389a452377e9f3539a05ddd0a52aa1483d42b26d4caaa1" + } + ], + "purl": "pkg:npm/querystringify@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/querystringify@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "queue-microtask", + "version": "1.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "36e68d49ae9f94a4f925a498433268934e09cd32f5080e9a1a1bf9adf2d6dcf82a03e3360a1a59427002f21f22e19164052f17e51aa40c11c0eebe217a3dcaf4" + } + ], + "purl": "pkg:npm/queue-microtask@1.2.3", + "type": "library", + "bom-ref": "pkg:npm/queue-microtask@1.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "quick-lru", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5aec802d18d63c31adb7fc3326269d3b901763ef2167cd215697ba3328af82b691116ef9d57dd26e146f1b778b28e60dfbc544bea2dc7f7c1d9ede386784b848" + } + ], + "purl": "pkg:npm/quick-lru@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/quick-lru@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "randombytes", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "bd897788e5fee022945aec468bd5248627ba7eca97a92f4513665a89ce2d3450f637641069738c15bb8a2b84260c70b424ee81d59a78d49d0ba53d2847af1a99" + } + ], + "purl": "pkg:npm/randombytes@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/randombytes@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-base16-styling", + "version": "0.6.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "caf87fec202b71e47f8cd0135ce28396f4e73ca3e6199cfbcec7a74378d4c0bcc790d511d02bd8df219825b589fe79f1b0bf12826b7970edff4882d5b8f3ba4d" + } + ], + "purl": "pkg:npm/react-base16-styling@0.6.0", + "type": "framework", + "bom-ref": "pkg:npm/react-base16-styling@0.6.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-clientside-effect", + "version": "1.2.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "5c618645000a63eab6e4bcfd6bfe043eaa26ed6463cf7cfd4769388e154a03fa6e4051ffe4db76eef15962a9789b835535d52f5fc3d2dceeebfd9ce6edc8d496" + } + ], + "purl": "pkg:npm/react-clientside-effect@1.2.6", + "type": "framework", + "bom-ref": "pkg:npm/react-clientside-effect@1.2.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-dom", + "version": "18.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7d4d53c73ec1b9d9af6a6a7b6ec85ee198b7d9dd2597b79cb7e71cc4dbbd16539b4fad3918e101f017cee2d991277f51e598fcdf5542a6f434e503c15b9c9bfb" + } + ], + "purl": "pkg:npm/react-dom@18.1.0", + "type": "framework", + "bom-ref": "pkg:npm/react-dom@18.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-fast-compare", + "version": "3.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "aed18898f6746322ebb1c288f714e957ca6c77a23c540b63282cd00e5cf20efa8903c5ce5bbf135d843035135df20f096670eef2af45bbfd6fe073c057055d1c" + } + ], + "purl": "pkg:npm/react-fast-compare@3.2.0", + "type": "framework", + "bom-ref": "pkg:npm/react-fast-compare@3.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-focus-lock", + "version": "2.9.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "ee911d5f232c7aa9b79158e17551f5f2ca2fa5aac0ccb83987a5af231eff0a4dde92386bac33047a01d26b7b30c02f3081f75dec321d5154467a21d3f7fed282" + } + ], + "purl": "pkg:npm/react-focus-lock@2.9.4", + "type": "framework", + "bom-ref": "pkg:npm/react-focus-lock@2.9.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-icons", + "version": "4.9.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8a352716bfffc9c79b3aaba3b6ab55f4f152ec98e15a0d1053aca4511547b8be1c6e87ef4427f77fa18c9fdf9f064b441503885599ee0182d9762c9a75141116" + } + ], + "purl": "pkg:npm/react-icons@4.9.0", + "type": "framework", + "bom-ref": "pkg:npm/react-icons@4.9.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-is", + "version": "16.13.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "db87baca71361fe38ab7892ab0ebcd77c901a55eb9ce8c5b038055b04381dc0455590922fc31f3694a02e4ab8e37f06271c0da0824d906e39c7d9b3bd2447c6d" + } + ], + "purl": "pkg:npm/react-is@16.13.1", + "type": "framework", + "bom-ref": "pkg:npm/react-is@16.13.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-is", + "version": "17.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "c361accae90beb62099e569f7ff9d17a03d047de02fd75da9af3169921d1278cbb4ecff8a1c1919931ef3acf0f484ea90777563ab0ff9ee7ae539b1db81b10e3" + } + ], + "purl": "pkg:npm/react-is@17.0.2", + "type": "framework", + "bom-ref": "pkg:npm/react-is@17.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-is", + "version": "18.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c56183216eb1f76d71b733e486250bb6d8491e826f05b177ab6e9fce5a0f08ad21b2fc6d3d57a5bdfb70df38db1d64a4476926f59fb8bb16c30caffa670f41f3" + } + ], + "purl": "pkg:npm/react-is@18.2.0", + "type": "framework", + "bom-ref": "pkg:npm/react-is@18.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-json-view", + "version": "1.21.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "d77a7c211123f7fc7f61ee1623f2698e1a08c2ecc481402d80964d0497247f326dd6aca1db805d4e6e9440d1a7c93abd75aa5076baafaae653a37773d57e828f" + } + ], + "purl": "pkg:npm/react-json-view@1.21.3", + "type": "framework", + "bom-ref": "pkg:npm/react-json-view@1.21.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-lifecycles-compat", + "version": "3.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "7c10126c0e8b9ce53d74e536796eda43cc666014975085abf94985f5bd5e7d905acc634efab7174ff89c74a9d89b6a53c1c472955518c16ec7d4f1df2de915cc" + } + ], + "purl": "pkg:npm/react-lifecycles-compat@3.0.4", + "type": "framework", + "bom-ref": "pkg:npm/react-lifecycles-compat@3.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-markdown", + "version": "8.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "da8c476baa03c5cd5aa60fc69dcd46a21d3ab7707ad7bc5ecb0a88ffddb098357d1442c8e9ac9193081eef0ec3a04a8cd204696464cd53ac501be6292484a756" + } + ], + "purl": "pkg:npm/react-markdown@8.0.4", + "type": "framework", + "bom-ref": "pkg:npm/react-markdown@8.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-query", + "version": "3.39.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a98293d5b6af74389065b9e0599c8fa2d9415737018c3604260e5140b05afbee48c798e37db1182661d2651643f944951d44af97f7b2f47bbe41f1754002bcd0" + } + ], + "purl": "pkg:npm/react-query@3.39.1", + "type": "framework", + "bom-ref": "pkg:npm/react-query@3.39.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-remove-scroll-bar", + "version": "2.3.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "8bd18c356c29cfc5e952943a4257af52d1631c6aa73c6e07c6cfb0948267b6eff172c65512925c215ef52b7664a8dcb6ab719f82f903ef2eadfd2bfca1f6126f" + } + ], + "purl": "pkg:npm/react-remove-scroll-bar@2.3.3", + "type": "framework", + "bom-ref": "pkg:npm/react-remove-scroll-bar@2.3.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-remove-scroll", + "version": "2.5.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "2262a1af3249b325c97c16786f3bbc070a646b5e1cfdf42dd24f9cc85a7f3c18537f20e75398633ad338006ff400ccb2f282b339347494380920cee961723493" + } + ], + "purl": "pkg:npm/react-remove-scroll@2.5.5", + "type": "framework", + "bom-ref": "pkg:npm/react-remove-scroll@2.5.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-router-dom", + "version": "6.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b9a263ecb2b2b51c5935057cf916f32569c9f0ada73ec38e12e5fb690b2d94c64a413d35eb80be5f6c3a6e792a537b23b4bbe9779a23adecc0c9f675fb4b12b7" + } + ], + "purl": "pkg:npm/react-router-dom@6.3.0", + "type": "framework", + "bom-ref": "pkg:npm/react-router-dom@6.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-router", + "version": "6.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed68750f3550fad9458e47a8fae8ef8d2a9226692dd7ef093be4f9c6494f960ae1ef4cbba20c7be4e0d15b44e15a163b4beeb210392cf1362bb507bf6a86e805" + } + ], + "purl": "pkg:npm/react-router@6.3.0", + "type": "framework", + "bom-ref": "pkg:npm/react-router@6.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-select", + "version": "5.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "5ba22b87b53a1daee9e6e410d999de9a8090f2671f80eb477f0df0b8ccc6e8502ed0ff82622720a1f48b3aaf7b0618ccc7c8d2fa1fb0c1674205e55567d56a95" + } + ], + "purl": "pkg:npm/react-select@5.3.2", + "type": "framework", + "bom-ref": "pkg:npm/react-select@5.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-style-singleton", + "version": "2.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6568f47c710cc96907cca614af606cff8cd4e972e6abd1ec8015119bb839a4055fca7e3d0e052236063677895746561288289ff58046a5095e7b091ca9d75cee" + } + ], + "purl": "pkg:npm/react-style-singleton@2.2.1", + "type": "framework", + "bom-ref": "pkg:npm/react-style-singleton@2.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-syntax-highlighter", + "version": "15.5.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fb3ab69b2a6b1274261f9cb0e86a9cf250f9e501e7a4a694f1339c15e0bf2e0fcc412b3c5249c4034242e274d91850170b62761f28ff8a327b36569bc8f8b682" + } + ], + "purl": "pkg:npm/react-syntax-highlighter@15.5.0", + "type": "framework", + "bom-ref": "pkg:npm/react-syntax-highlighter@15.5.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-table", + "version": "7.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "84d6b3e3282464ee1b1127857e77ce7edef7881523f0ae682a2d447121cf0226c4c9d7ec5f633253a67c282af79afdc2f4aaaa87bd54f83859905be26db9cf6c" + } + ], + "purl": "pkg:npm/react-table@7.8.0", + "type": "framework", + "bom-ref": "pkg:npm/react-table@7.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-tabs", + "version": "3.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe8e767862b114745afacb2e4c481233ca8e467578fa4ee26d6f9a350cca7bee6089f795cfc9cbc42aec23dc5d4617dbd3008b76021a99b2296f5a82c5a30df8" + } + ], + "purl": "pkg:npm/react-tabs@3.2.2", + "type": "framework", + "bom-ref": "pkg:npm/react-tabs@3.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-textarea-autosize", + "version": "8.3.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "09db663fc0dcd7dc4bf3f47ab16bed9270ff7825e442bdf476dbc2e15986227851b1f17c5ff8a15c2abafbd97da9bc662918aae34effef3e5fc44edc55640d81" + } + ], + "purl": "pkg:npm/react-textarea-autosize@8.3.4", + "type": "framework", + "bom-ref": "pkg:npm/react-textarea-autosize@8.3.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-transition-group", + "version": "4.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd13587d100c959c034abeb3e3334a57ac6ee77fded81b9a05b1a16f26085d3ae682efdb187ce6a8eb3b989489047cbd51df80a47c77423ae4292a75a71be516" + } + ], + "purl": "pkg:npm/react-transition-group@4.4.2", + "type": "framework", + "bom-ref": "pkg:npm/react-transition-group@4.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react", + "version": "18.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e282fc8af0b3e5910fc9c94541768d92c2b769dbad552f25db1cd953472a105ac4f526fb7c2d0414ae6e124ef8c08ade2f50c44728efb14f75e63d69713dae11" + } + ], + "purl": "pkg:npm/react@18.1.0", + "type": "framework", + "bom-ref": "pkg:npm/react@18.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "reactflow", + "version": "11.7.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "408ebea1cd45b7aa0578b49d1e5a7e4a683299b2394e6e3dc23e49c84f383b8039e3237f2267d868184b8adf4299fcf19fd4f3ead0ea9863066e4e1b76d07cff" + } + ], + "purl": "pkg:npm/reactflow@11.7.4", + "type": "framework", + "bom-ref": "pkg:npm/reactflow@11.7.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "read-pkg-up", + "version": "8.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b27542a8f73392c4f41d2d840be4b152776f4b39fa2d10b0a5f4af2eb21f47904a0d041931a23a8cf442f5d62f6050d102e144027930c30f24041344ff756fcd" + } + ], + "purl": "pkg:npm/read-pkg-up@8.0.0", + "type": "library", + "bom-ref": "pkg:npm/read-pkg-up@8.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "read-pkg", + "version": "6.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f516eddd3ee93ff192ec321123e5fe301401740d6a0aeea84626f81a8a3a1c5f1066493a0a7db16da9bc4c3bb6d58cd03576613986e0338d78ff7b2f3a8b0f5" + } + ], + "purl": "pkg:npm/read-pkg@6.0.0", + "type": "library", + "bom-ref": "pkg:npm/read-pkg@6.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "readable-stream", + "version": "1.1.13", + "hashes": [ + { + "alg": "SHA-1", + "content": "f6eef764f514c89e2b9e23146a75ba106756d23e" + } + ], + "purl": "pkg:npm/readable-stream@1.1.13", + "type": "library", + "bom-ref": "pkg:npm/readable-stream@1.1.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "rechoir", + "version": "0.7.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe78e667cb35c15791ea98d367ed270a7bfc4a964d44c4f60f544b3894044a56050c1bf0a5303829626967eb01278faf86320b45c2bb24815d182771100022b6" + } + ], + "purl": "pkg:npm/rechoir@0.7.1", + "type": "framework", + "bom-ref": "pkg:npm/rechoir@0.7.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "redent", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ead0c0f20f7c59ed337741af55e313f5aac43a74f0f6a334dcbf5c2576828eb8a9d4e3bbeb844304b05fac1e1cc333460e3e4e0398a8ca60bd1a48b381624352" + } + ], + "purl": "pkg:npm/redent@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/redent@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "redent", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b5890391556d62449586e438cc181fbdc8b298769eb9e97ecc52974a17c39c53f94b25443fbaa8ef445fd634ce4c2c77bc63406e7122ff116471f4153080566a" + } + ], + "purl": "pkg:npm/redent@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/redent@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "redoc", + "version": "2.0.0-rc.72", + "hashes": [ + { + "alg": "SHA-512", + "content": "217fd6bd5878377cf0a38b008e7405cfa7df21477a1b8ee171f9713edae9c5b94969e3b2d0c052cf363c7f5efd5a3b2c58f61c4a69a774fe6fd218045c58a29a" + } + ], + "purl": "pkg:npm/redoc@2.0.0-rc.72", + "type": "library", + "bom-ref": "pkg:npm/redoc@2.0.0-rc.72", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "refractor", + "version": "3.6.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "318f56e3520e5b1c64df5a3e62f14237237376473d336d0da192b9beaea392fe08fee876ce459c7ee763d10d5fa2f8d4409acd7b04bd34ccde4eda8f7fe9f910" + } + ], + "purl": "pkg:npm/refractor@3.6.0", + "type": "library", + "bom-ref": "pkg:npm/refractor@3.6.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "reftools", + "version": "1.1.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "62fcfd347f2e147cc3fc05d7f362e2d467403fa1730c1c44670fa78deacd04142ffd71e286ab1602335f5ed6aae100f69784c46559e9e146e4b5d6127a000cde" + } + ], + "purl": "pkg:npm/reftools@1.1.8", + "type": "library", + "bom-ref": "pkg:npm/reftools@1.1.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regenerate-unicode-properties", + "version": "9.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "dc4d7651e3523df8eb8308e447cd66e49ec0c3f4f9e53bbb9d4c995506022843acfb6764c4463e0e93ed6733b862bbae88f6fb36460b55cc890b8fb309b939a4" + } + ], + "purl": "pkg:npm/regenerate-unicode-properties@9.0.0", + "type": "library", + "bom-ref": "pkg:npm/regenerate-unicode-properties@9.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regenerate", + "version": "1.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "ceb71e47f5e119853f77fa29af610a3bb6911d47a2048f2a8ed7c7a800d3c1977a4b37f2d7a95aea4a83d0c214b39cf9871e8068a6be3e2c693eb476f3df88d0" + } + ], + "purl": "pkg:npm/regenerate@1.4.2", + "type": "library", + "bom-ref": "pkg:npm/regenerate@1.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regenerator-runtime", + "version": "0.13.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "918d40655af645afadfa9895689e20c5a15a45e6551f8d0028da3b5025fa5be744c01a3fda8649cea7ee375a8bab5a0be39a39e9c3da4d710bc2b4e1f05a6082" + } + ], + "purl": "pkg:npm/regenerator-runtime@0.13.11", + "type": "library", + "bom-ref": "pkg:npm/regenerator-runtime@0.13.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regenerator-runtime", + "version": "0.13.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "a77553f9c38483116c45103d5f896423513e936fc2b672ad53881cc7268252b7a294bfefa88e82759df0c55531dd439483e82750e41071123b066488eb9e8c60" + } + ], + "purl": "pkg:npm/regenerator-runtime@0.13.9", + "type": "library", + "bom-ref": "pkg:npm/regenerator-runtime@0.13.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regenerator-transform", + "version": "0.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "78e7fabe46b920ed79d497ecc3634ef56a465f9f16eb05a679f2b7235cc41abd25383d2ef2bc0f68da902f5691c546b12de28edc0acd87755883529b683f8517" + } + ], + "purl": "pkg:npm/regenerator-transform@0.14.5", + "type": "library", + "bom-ref": "pkg:npm/regenerator-transform@0.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regexp.prototype.flags", + "version": "1.4.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "7e382010e3b7b2523a5af823c1f9647383454424d902ee429cd7c1779a8e318856767ebb9c9041bb7e3f4e40fef9e78599df02f6bf637d7276efe9d289191250" + } + ], + "purl": "pkg:npm/regexp.prototype.flags@1.4.3", + "type": "library", + "bom-ref": "pkg:npm/regexp.prototype.flags@1.4.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regexpp", + "version": "3.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a6ad9b5a8f66543e379dbb6cdb01afd7b5cb88d2f26be1a4959f246832d5d99d3c8030ac1a99ca9fd04531ea6f5ae1c26f256f63b279a39f8156fa106e69492e" + } + ], + "purl": "pkg:npm/regexpp@3.2.0", + "type": "library", + "bom-ref": "pkg:npm/regexpp@3.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regexpu-core", + "version": "4.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d45e9b62ca188b3ea2b3ea33ef4356babd95961f4a5adb30b91bb324e7de614adf3d7da8f27ef802751568e1836d4a9518ef5f347bb8f3fa6324ee2c355c2c3a" + } + ], + "purl": "pkg:npm/regexpu-core@4.8.0", + "type": "library", + "bom-ref": "pkg:npm/regexpu-core@4.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regjsgen", + "version": "0.5.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "385153dcc7eb1fdd31216f0e392c94ae4e901c3e44f49393786a1d8897814b727a230960cc930d13fd5b664956cf9a1383ef5d08cc847ad725bc255738fa0ddc" + } + ], + "purl": "pkg:npm/regjsgen@0.5.2", + "type": "library", + "bom-ref": "pkg:npm/regjsgen@0.5.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regjsparser", + "version": "0.7.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "038a5c68e46a98d3035705235a84f3ba1c0c1a93fe3729297ea02c1202351521ff1330bb96b3794cc77e90df180a8bd7fa3329bbc79aa978173c26b483c15035" + } + ], + "purl": "pkg:npm/regjsparser@0.7.0", + "type": "library", + "bom-ref": "pkg:npm/regjsparser@0.7.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "remark-gfm", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "944143a22d8f20227236b00214e7c30f72652e4b926ce6b959df043edd3a1d4769b6ff069f46f161375b53f5d7437b3000f904686c713cdf5c6e7307bd5bb522" + } + ], + "purl": "pkg:npm/remark-gfm@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/remark-gfm@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "remark-parse", + "version": "10.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "d5f5321ebda32ec54e9216ef3d1049e734ca659c83eb267361a5824ba04f05d43cbc4301087fbdccd08303ab444ffcc70a2fe32ea8c25ad9496543e4f836e717" + } + ], + "purl": "pkg:npm/remark-parse@10.0.1", + "type": "library", + "bom-ref": "pkg:npm/remark-parse@10.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "remark-rehype", + "version": "10.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "105991e73a69741a74590783559fdbeba096262a41daad952cd14c69bcc348647ae99d9f4228bcdc6e604c16e01849c4100d1046eb2cbeb147c64d4758626c93" + } + ], + "purl": "pkg:npm/remark-rehype@10.1.0", + "type": "library", + "bom-ref": "pkg:npm/remark-rehype@10.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "remove-accents", + "version": "0.4.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a43d3aaae1e80db919e07ae254b285d9e1c7bb5" + } + ], + "purl": "pkg:npm/remove-accents@0.4.2", + "type": "library", + "bom-ref": "pkg:npm/remove-accents@0.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "require-directory", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + } + ], + "purl": "pkg:npm/require-directory@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/require-directory@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "require-from-string", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "5dfd2759ee91b1ece214cbbe029f5b8a251b9a996ae92f7fa7eef0ed85cffc904786b5030d48706bebc0372b9bbaa7d9593bde53ffc36151ac0c6ed128bfef13" + } + ], + "purl": "pkg:npm/require-from-string@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/require-from-string@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "requires-port", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a280e087728714dd7383271b2ef22fe3f13f6dcd3e1a74789e730391450d19645729eda8705ee454d66fb2b8ef740b9654c867867e87070c8d783372f7c8301" + } + ], + "purl": "pkg:npm/requires-port@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/requires-port@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "resolve-cwd", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ab65a5f631bfab242a47ffa0a94aab7dc4556937efb1d355e737689ef60e8fe7fdf17a52c0917595003a5dcf52070ff2857c45f213a574534d4e43750edab12" + } + ], + "purl": "pkg:npm/resolve-cwd@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/resolve-cwd@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "resolve-from", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a5bfcc6265ecb40932b11171f2988d235b4614d408140def904dc6ab812e035745ea01e9ffebe066ab021896a9bf2f0ddd0fb8a3b170beab8f25c9d9ed1632e2" + } + ], + "purl": "pkg:npm/resolve-from@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/resolve-from@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "resolve-from", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a9883d28fdb8743e6a91af49e3b774695932d0df9be1f4d4f3d2cdf620e78c1e706a4b220b8f6bbcc0743eb509406a13987e745cf8aa3af0230df6a28c6c5867" + } + ], + "purl": "pkg:npm/resolve-from@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/resolve-from@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "resolve.exports", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "27597e671c69e172b72d40d9f66eb42d1245fe601ee33e9ae31c9a6cf1e4ee9bcae6ddf9740095df68888c90c57966457d994edbdc3a499ebb927474b47cc9b5" + } + ], + "purl": "pkg:npm/resolve.exports@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/resolve.exports@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "resolve", + "version": "1.20.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c043413ede324b3838c9b1505b64d3d73310b9c3caf791d287f9ead82153655386baddbea50bd2b20b5d6b8776e98ad872bd3aef08db9b3386f1bc833c15fadc" + } + ], + "purl": "pkg:npm/resolve@1.20.0", + "type": "library", + "bom-ref": "pkg:npm/resolve@1.20.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "resolve", + "version": "1.22.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "49bfa68cd1ce50bb01bfcd7c4f8d2a48f7918ae58bc9a18c6b97b0c9d44b1629a77a2c66572db3762bd197e005ea36983c2f044711839854a2aae8ba49f3ddfa" + } + ], + "purl": "pkg:npm/resolve@1.22.2", + "type": "library", + "bom-ref": "pkg:npm/resolve@1.22.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "resolve", + "version": "1.22.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e1b6bc349cb792ac543ba613e9e0e39c5632cf21e327465af999c9d5b8c7bb33fede067f7c0378661512e8168dc32d9922bd26308515094f23f2580939e962f" + } + ], + "purl": "pkg:npm/resolve@1.22.0", + "type": "library", + "bom-ref": "pkg:npm/resolve@1.22.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "resolve", + "version": "2.0.0-next.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "5bc2ee712ca7294203bbdca5ada6bbb9e559ee1734b8080907156c41228e5ceca57bc6bddea5e1733f9701767c6c8ab677a8b812175d9fa12fb7ed3f5302a4e9" + } + ], + "purl": "pkg:npm/resolve@2.0.0-next.3", + "type": "library", + "bom-ref": "pkg:npm/resolve@2.0.0-next.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "reusify", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "53d9c7f3c6b77dcfde902175974fd43f5228b22b888f24e1ee106f5d530762055c7c6bedf3ded782e8f650e2c3788e411b69bbfeec3268b553e9f6ed0b04f2cf" + } + ], + "purl": "pkg:npm/reusify@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/reusify@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "rimraf", + "version": "3.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "25990931990018514f3f662a5d95cf6cc94c060b31cc4f082ece253085ffda8d0bf54070f4efd8de8eb0170fe2f582daa5c5095b0a9b8b791dc483dd0bad9320" + } + ], + "purl": "pkg:npm/rimraf@3.0.2", + "type": "library", + "bom-ref": "pkg:npm/rimraf@3.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "rimraf", + "version": "2.7.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b968db68a20add3d4e495a6dcd7ecd97a3ef437a801ad284b5546346e6b38df2f7071e5e238d3d5594aa80d0fee143679b32d574f8fd16a14934fa81645bdee3" + } + ], + "purl": "pkg:npm/rimraf@2.7.1", + "type": "library", + "bom-ref": "pkg:npm/rimraf@2.7.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "run-parallel", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e65e15c9947ce8b67f943c594d1ea3a8bf00144d92d0814b30fdba01b8ec2d5003c4776107f734194b07fb2dfd51f0a2dddcf3f0e950b8f9a768938ca031d004" + } + ], + "purl": "pkg:npm/run-parallel@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/run-parallel@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "rw", + "version": "1.3.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "3dd85d5b2f3d4a26688012dac38db375eaad449fffcc57763e041abdc2020d48094f9a16d7440244a6c9e9b838af4fd463633a056779b64c6e18546f0a481f1d" + } + ], + "purl": "pkg:npm/rw@1.3.3", + "type": "library", + "bom-ref": "pkg:npm/rw@1.3.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "sade", + "version": "1.8.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5a9770995f55e5a3f938029c0216b1d50028bd7c1a89ed5fa6c2106cb9fff520e29b072d3df057b1f966bfe5032e6f0d3da5267fbbc118f0f5a07af26c5e9d4" + } + ], + "purl": "pkg:npm/sade@1.8.1", + "type": "library", + "bom-ref": "pkg:npm/sade@1.8.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "safe-buffer", + "version": "5.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae9dd2a34eca71d9a629b1af81a37141226bedb1954959394bd12ad45fa9a5b468ef4f9879a0f1930e4377c34f37e183e9b8e7626d95b8fb825e6a6e62f9825d" + } + ], + "purl": "pkg:npm/safe-buffer@5.2.1", + "type": "library", + "bom-ref": "pkg:npm/safe-buffer@5.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "safe-buffer", + "version": "5.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "19dd94641243917958ec66c9c5fb04f3f9ef2a45045351b7f1cd6c88de903fa6bd3d3f4c98707c1a7a6c71298c252a05f0b388aedf2e77fc0fb688f2b381bafa" + } + ], + "purl": "pkg:npm/safe-buffer@5.1.2", + "type": "library", + "bom-ref": "pkg:npm/safe-buffer@5.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "safe-regex-test", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "241514cf23a01305d063536e3edbdc8ffa9c0436c3984bd6b9f8659d76489bbe43107a7e69f335af5ba326926c57f812338b79f6da43c8f8b5b1de9968f15fb0" + } + ], + "purl": "pkg:npm/safe-regex-test@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/safe-regex-test@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "safer-buffer", + "version": "2.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "619a372bcd920fb462ca2d04d4440fa232f3ee4a5ea6749023d2323db1c78355d75debdbe5d248eeda72376003c467106c71bbbdcc911e4d1c6f0a9c42b894b6" + } + ], + "purl": "pkg:npm/safer-buffer@2.1.2", + "type": "library", + "bom-ref": "pkg:npm/safer-buffer@2.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "sax", + "version": "1.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "36a543bfd4e900d523166d0df2e3391b12f7e9480a8bdfdab59c3ec7b6059d0f1c9301462ab978c57e325adadecb75099b99cfd6451b9d880ba29a963524615b" + } + ], + "purl": "pkg:npm/sax@1.2.4", + "type": "framework", + "bom-ref": "pkg:npm/sax@1.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "saxes", + "version": "5.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4b061d5396cf1cf718068f0dd0accc044e64cc564d28160beb152bd6c7ada5951da1704227aca359d866420aebb2da5bd6add9798e16e97aa73985160a14e73" + } + ], + "purl": "pkg:npm/saxes@5.0.1", + "type": "framework", + "bom-ref": "pkg:npm/saxes@5.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "scheduler", + "version": "0.22.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e90026d4181023cf0d3d8ca680640b09982f7a9e05c9e3c3585a5754afb33525201f096aa49cbc54487c12dd0ac530024b8556c0ca2eb01125019387f67924a1" + } + ], + "purl": "pkg:npm/scheduler@0.22.0", + "type": "library", + "bom-ref": "pkg:npm/scheduler@0.22.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "schema-utils", + "version": "2.7.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "48788db4c394196050270cc84a25582aef361a257841819e3e9de8765635b6e28eee03eda61013e51fe9cb47c0eb1b5b80b2ff46fb4966753d6fcb34175ab45e" + } + ], + "purl": "pkg:npm/schema-utils@2.7.1", + "type": "library", + "bom-ref": "pkg:npm/schema-utils@2.7.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "schema-utils", + "version": "3.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6393d0c52e084e50be11a84bb97698f3a4d77d1ec3739970dbde1a9573aaf3a2401c28a100865faaff273425af68426f682e75b8df616cb19e57470505d1fe17" + } + ], + "purl": "pkg:npm/schema-utils@3.1.1", + "type": "library", + "bom-ref": "pkg:npm/schema-utils@3.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "schema-utils", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d5e7725ca821e979c9b09490f262965e737f0556886c530ba68b9152b5e056aed66277b9930dcc5bb50f84ee38b915d0488a53497a096e6ad1d97d30f64513ca" + } + ], + "purl": "pkg:npm/schema-utils@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/schema-utils@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "semver", + "version": "7.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8607acd503d2d687ace8bd840b00b1f0bf9adbd8f1c69498b795f8aa207c51d2ebb00a079f70e25ce7dbfd7efd70f066d2b70c6ebaaa808c8f4d30038e82ad4" + } + ], + "purl": "pkg:npm/semver@7.0.0", + "type": "library", + "bom-ref": "pkg:npm/semver@7.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "semver", + "version": "6.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "051ed5bc30951cefaadb10445ac9314ba0c9135a919dbec3c7352ba206fbd425a849f89c07162c88019df8a9749a6abf329ac6f7202b464cab4314cee978cccc" + } + ], + "purl": "pkg:npm/semver@6.3.1", + "type": "library", + "bom-ref": "pkg:npm/semver@6.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "semver", + "version": "7.5.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "d5b09211257a3effa2db51efa71a770f1fa9483f2520fb7cb958d1af1014b7f9dbb3061cfad2ba6366ed8942e3778f9f9ead793d7fa7a900c2ece7eded693070" + } + ], + "purl": "pkg:npm/semver@7.5.4", + "type": "library", + "bom-ref": "pkg:npm/semver@7.5.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "serialize-javascript", + "version": "5.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "49a68d6a5f629843bbdfb1f6734e4e834ffc2d45c6ec49ec67231af0cce49ae1e810b7d3eadc6e8f470ca918facdf3ca9e6435c9ab11e0f08973cc7e3382523c" + } + ], + "purl": "pkg:npm/serialize-javascript@5.0.1", + "type": "library", + "bom-ref": "pkg:npm/serialize-javascript@5.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "serialize-javascript", + "version": "6.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "42bdd3a2cbe0b85b7c78f5aab2f45facac905c8896fa719b629cbc5cadb83501c4f3771ac56b7e988ca64d3d7d0c615b35634b7c4c2cae44a637ae2555607d6a" + } + ], + "purl": "pkg:npm/serialize-javascript@6.0.0", + "type": "library", + "bom-ref": "pkg:npm/serialize-javascript@6.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "setimmediate", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "3004c9759a7cb0ba8397febc2df4266cff3328f2d0355e81219a0882bb1c14343e46cbcafc1c5e0d03a0cb128aa21d32ffc87706a5459c2a90fe077eade8885c" + } + ], + "purl": "pkg:npm/setimmediate@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/setimmediate@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "shallow-clone", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ffa2aa5fe19551da8fb8f3ddd8bc430f1cd7e8201b8c97a100038a94da6aa94a40a8f33a1de2fc7fea376be26cc868e7da5bf4598f14b1381426353d3a4e7934" + } + ], + "purl": "pkg:npm/shallow-clone@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/shallow-clone@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "shebang-command", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "907c6bdb366962d766acdd6a0e3aeb5ff675ad1d641bc0f1fa09292b51b87979af5ecc26704d614d6056614ce5ada630d7fc99a7a62e0d8efb62dbdb3747660c" + } + ], + "purl": "pkg:npm/shebang-command@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/shebang-command@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "shebang-regex", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "efef9d161b5cc77df9dee05aabc0c347836ec417ad0730bb6503a19934089c711de9b4ab5dd884cb30af1b4ed9e3851874b4a1594c97b7933fca1cfc7a471bd4" + } + ], + "purl": "pkg:npm/shebang-regex@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/shebang-regex@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "should-equal", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "64fdfa4ccacaf5eb84b9641806283d5b9e563c2eeea37eeacc01266e31f3e207f2b97ac452017c714bd054efb0f9ddce31f3ef491409db69529bc310278dcb4c" + } + ], + "purl": "pkg:npm/should-equal@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/should-equal@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "should-format", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "9bfc8f74fa39205c53d38c34d717303e277124f1" + } + ], + "purl": "pkg:npm/should-format@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/should-format@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "should-type-adaptors", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "240e217682e737e91e6c4a7656cf1e05ef60eeecb4cdb468f9131c53412c372f91fa4d38f4a8be379b53e496a0b2dda0ec40236be7ae16ea171426bcbc89257c" + } + ], + "purl": "pkg:npm/should-type-adaptors@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/should-type-adaptors@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "should-type", + "version": "1.4.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "0756d8ce846dfd09843a6947719dfa0d4cff5cf3" + } + ], + "purl": "pkg:npm/should-type@1.4.0", + "type": "library", + "bom-ref": "pkg:npm/should-type@1.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "should-util", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a1717cb5fc71e5c0e4f2bda462a964509cd9a4306a558fc82365a1bd4d27f58dd762f01846679a7f53efbc8bd380f9efe0a27e112e4cd0fc83ab9269f98832da" + } + ], + "purl": "pkg:npm/should-util@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/should-util@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "should", + "version": "13.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "8202deb0bb6edb1a7e67123ecac25398d8e1d94d13b02fab43fa5f103f5b5196780ca79f3f6ec3fbb6095554ef2ac9a32e9222f6301aee2b700c69030e6b7519" + } + ], + "purl": "pkg:npm/should@13.2.3", + "type": "library", + "bom-ref": "pkg:npm/should@13.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "side-channel", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "ab95cfcada85108287906762308ad8d749af2d1be7421e36ffe1a8065156ddbd8b5cb136c71269645766f78c1ed016a85774702721aa839c12edea714efd19bf" + } + ], + "purl": "pkg:npm/side-channel@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/side-channel@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "signal-exit", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "554278f450bc5353b1c192f121b4d3ac3bcb9dfffa4c383165c2bcc3147ccecd77c69c7bc5b1bad2774196136b162d8432e151a1e0e824eef0b6148bab8d848c" + } + ], + "purl": "pkg:npm/signal-exit@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/signal-exit@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "signal-exit", + "version": "3.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "29670e88a7908fa6725f1ef3ab863148c807465a1de1ccde05066b3dbf0e29ca2172a0174a19bb136d2410c95ef5606ddba8457007f4a8b39ca79ce663b90ea9" + } + ], + "purl": "pkg:npm/signal-exit@3.0.5", + "type": "library", + "bom-ref": "pkg:npm/signal-exit@3.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "signal-exit", + "version": "4.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "318dbfa86c787a7ca3a6b42715a66c1e26f761a761dc85f25760b7db5198d298c67d506ee2e9f4b83264c20771a8ef91771f09313f087c9211c1b615cf739bdd" + } + ], + "purl": "pkg:npm/signal-exit@4.0.2", + "type": "library", + "bom-ref": "pkg:npm/signal-exit@4.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "simple-swizzle", + "version": "0.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "240fff910819b5bb98f379bec53fad5c9926267706313153f82fa0da1d91f6ec64608ac4db2cbdb2099c2e10a7c39eff5920fe121dc9f7b14f1031676d79c352" + } + ], + "purl": "pkg:npm/simple-swizzle@0.2.2", + "type": "library", + "bom-ref": "pkg:npm/simple-swizzle@0.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "sisteransi", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "6cb186951d50c417329e7d9de589835f83068e566fcb631104344d1cb27c548ea5ebef45522c9314d27422f78e48fd1b7178150cf45c7c6a80d298daa94a5f56" + } + ], + "purl": "pkg:npm/sisteransi@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/sisteransi@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "slash", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "83d43585a79bcb7e8e492b706f89ed08618668ab1a5528d0ebc7c1c6841cbad9797d2d6fb98d7c1f7c12b778c5c85b6b931f8acf45751bce40e0cc80743322d9" + } + ], + "purl": "pkg:npm/slash@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/slash@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "slice-ansi", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8c08c7e1634e347151d3e372bd045ca0a986d43c564a1ce83b2bbde6b5358945bf29c8fddfcdfe08c5de52cdd10943a311520fd606738bc60859b4a2aeac435" + } + ], + "purl": "pkg:npm/slice-ansi@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/slice-ansi@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "slugify", + "version": "1.4.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "b5ffa1e56d48ae3366ffdaca2a3d0953630332bba2a29c748e3540e7309d06d7068dfa74f9ce6b1f0ff30032c2dc878a9461ed55b1eda5fcef600d0e613f872a" + } + ], + "purl": "pkg:npm/slugify@1.4.7", + "type": "library", + "bom-ref": "pkg:npm/slugify@1.4.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "source-list-map", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa743b81533118dc6c88be2512e2707bf4e8f149caedf02799b184107f11a4ba2eb8a6de126d2585b415148acd4ae07e1bbb55ac0955b198044d3e679637fe23" + } + ], + "purl": "pkg:npm/source-list-map@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/source-list-map@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "source-map-js", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "4745ef549f56bac2e2a930848860a620208ca65702908c30475d663920fd091e6ef885d8762b1e784b970950234b9e33ab090b70f367994e0e789ead52b5a10f" + } + ], + "purl": "pkg:npm/source-map-js@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/source-map-js@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "source-map-resolve", + "version": "0.6.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "29706bf5dfdf3bf6d6a3decd5ec3c8016d5b15204eb829e36cd4c130eecde7d86cbf98bdcb34437dc630c2dd25d38f95aa7282f84c33bc96483ffaa4b8c811ff" + } + ], + "purl": "pkg:npm/source-map-resolve@0.6.0", + "type": "library", + "bom-ref": "pkg:npm/source-map-resolve@0.6.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "source-map-support", + "version": "0.5.21", + "hashes": [ + { + "alg": "SHA-512", + "content": "b811d4dcbddccec232617297f3c7ddac6a2fc5d482a13183459e92617b524712d95331e0e4fffae87b7aba85251eef4466877e8a75e12a8dea420c17513ff2d7" + } + ], + "purl": "pkg:npm/source-map-support@0.5.21", + "type": "library", + "bom-ref": "pkg:npm/source-map-support@0.5.21", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "source-map", + "version": "0.5.7", + "hashes": [ + { + "alg": "SHA-1", + "content": "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + } + ], + "purl": "pkg:npm/source-map@0.5.7", + "type": "library", + "bom-ref": "pkg:npm/source-map@0.5.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "source-map", + "version": "0.6.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "52381aa6e99695b3219018334fb624739617513e3a17488abbc4865ead1b7303f9773fe1d0f963e9e9c9aa3cf565bab697959aa989eb55bc16396332177178ee" + } + ], + "purl": "pkg:npm/source-map@0.6.1", + "type": "library", + "bom-ref": "pkg:npm/source-map@0.6.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "source-map", + "version": "0.7.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "0a40a3ea088ddd2fa7f6aad88814d7e60cacb6510d9d15b98d978d2c7a5ee9ab9ef92ac7706e55630ba3856f6ce1d637d66106b31043ac747aa08ebd7d35ec69" + } + ], + "purl": "pkg:npm/source-map@0.7.3", + "type": "library", + "bom-ref": "pkg:npm/source-map@0.7.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "space-separated-tokens", + "version": "1.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "abf25255dd4ba6dce17f96e4626e286f88963e3c742a245edec44504dad5a9b26415a066e6f6dba30cb59b29a83cd2d16b9dbea1a74e849f8ae3dc2c49e4a34c" + } + ], + "purl": "pkg:npm/space-separated-tokens@1.1.5", + "type": "library", + "bom-ref": "pkg:npm/space-separated-tokens@1.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "space-separated-tokens", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c41a5030ac6f325c65d18d6df67c66e0eba24094e0306ce6eea95a09a6ffe6460a160d07e01f5c033efb735b25123405c119293c87be796036db704cb7487d9" + } + ], + "purl": "pkg:npm/space-separated-tokens@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/space-separated-tokens@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "spdx-correct", + "version": "3.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "70e61c516c210ae1c25e2e3d4611510b22442b788f8f5662cfd0e9562577b5b64ec170f8f50cc837732938b24dc61daac2ada524965a28c570f6a362e234c2d3" + } + ], + "purl": "pkg:npm/spdx-correct@3.1.1", + "type": "library", + "bom-ref": "pkg:npm/spdx-correct@3.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "spdx-exceptions", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fed4eb60e0bb3cf2359d4020c77e21529a97bb2246f834c72539c850b1b8ac3ca08b8c6efed7e09aad5ed5c211c11cf0660a3834bc928beae270b919930e22e4" + } + ], + "purl": "pkg:npm/spdx-exceptions@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/spdx-exceptions@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "spdx-expression-parse", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "71ba87ba7b105a724d13a2a155232c31e1f91ff2fd129ca66f3a93437b8bc0d08b675438f35a166a87ea1fb9cee95d3bc655f063a3e141d43621e756c7f64ae1" + } + ], + "purl": "pkg:npm/spdx-expression-parse@3.0.1", + "type": "framework", + "bom-ref": "pkg:npm/spdx-expression-parse@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "spdx-expression-validate", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6f7c327592ccf9373a085bda44304e17d77bea81881cd08b6057876dfb455d45a39df65681a9e60e6bed339b26d5c47025cfd50c130bc861abb0b15dd6f3b16e" + } + ], + "purl": "pkg:npm/spdx-expression-validate@2.0.0", + "type": "framework", + "bom-ref": "pkg:npm/spdx-expression-validate@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "spdx-license-ids", + "version": "3.0.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a2db5d9d28ae28817fb10e8e02b4e641548c21b0a0447ec1047309897cb4338ab81cda3216773838d149f1cff1f3114a8cd56173565412305f64659d876e82d" + } + ], + "purl": "pkg:npm/spdx-license-ids@3.0.9", + "type": "library", + "bom-ref": "pkg:npm/spdx-license-ids@3.0.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "sprintf-js", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "04e6926f662895354f3dd015203633b857297e2c" + } + ], + "purl": "pkg:npm/sprintf-js@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/sprintf-js@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ssri", + "version": "8.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f7ba92873cb5022cb1bcf34890b5a81ae6bbc68433ccf8d0d07007e01d2b58aa3b499e944ae3dcad488016bc2cd141fc46b6d69a0ab72cc4ce6e13c81db6c179" + } + ], + "purl": "pkg:npm/ssri@8.0.1", + "type": "library", + "bom-ref": "pkg:npm/ssri@8.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stable", + "version": "0.1.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e2f6ac519ce55f72e2c3c928fdab3846484155a1bcadd6420e4a48f5a99cd82f3abb4e8b3fa14516be8b543d02e5aec89daac2bab411fcf4173d90be731c0eb" + } + ], + "purl": "pkg:npm/stable@0.1.8", + "type": "library", + "bom-ref": "pkg:npm/stable@0.1.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stack-utils", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "c6b41c99884eb27ff5917f95adaabeee3e281368ffe8116c719d1eb66620f35c6e33c1aad34db63f16fcf88aa03855086b11ecd0a6926fb4f5f8e7a088dacd14" + } + ], + "purl": "pkg:npm/stack-utils@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/stack-utils@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stickyfill", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "39413fee9d025c74a7e59ceecb23784cc0f17f02" + } + ], + "purl": "pkg:npm/stickyfill@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/stickyfill@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string-length", + "version": "4.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "fa5eab34de5f607361659cb8d515ec629b428c0d88826ab8106ee4640605408d44d554d76abafa64f5c183a7aaed8e9e2b8144858e80265cae1486ffbff4b455" + } + ], + "purl": "pkg:npm/string-length@4.0.2", + "type": "library", + "bom-ref": "pkg:npm/string-length@4.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string-width", + "version": "4.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "c0ac90450a63274b08a7ad84ad265d1ac8cc256b1aa79a1136284786ee86ec954effd8c807a5327af2feb57b8eaab9e0f23fdcc4a4d6c96530bd24eb8a2673fe" + } + ], + "purl": "pkg:npm/string-width@4.2.3", + "type": "library", + "bom-ref": "pkg:npm/string-width@4.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string.prototype.matchall", + "version": "4.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f8f289025fb262c158b535709559c1676600030c2fe7daf78f950fca50236a0a290b2e2950bf08cc3bcf811d52af8331f4241d09f4b10f8313864f4d91a044e" + } + ], + "purl": "pkg:npm/string.prototype.matchall@4.0.7", + "type": "library", + "bom-ref": "pkg:npm/string.prototype.matchall@4.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string.prototype.trim", + "version": "1.2.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "a7a4e6793d53df8d7533c0a083dc014cc46d636abdf8f372f445758b69485d437f6edb7beb7a087f1c0ddd147c554eb01d7f23ff5085cb42fe62e4e19ba6e03a" + } + ], + "purl": "pkg:npm/string.prototype.trim@1.2.7", + "type": "library", + "bom-ref": "pkg:npm/string.prototype.trim@1.2.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string.prototype.trimend", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbdc428f0d4fdb703093c12f4e97322f6348af58fbc09dfd7fe93a96f46748ccfe9b3f421b3f4d60f7a50e4e3690ecfafaa97cc637caf28633cb78c03f9414e4" + } + ], + "purl": "pkg:npm/string.prototype.trimend@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/string.prototype.trimend@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string.prototype.trimend", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "23b446be68d5e2927b3b791d7fe2d716955f74d3b1b425bfd82f1fea33625b8f8f41c870c64083ce5935ffba7e5a5e1ba85219785e3ba801d72ee1c758a031a2" + } + ], + "purl": "pkg:npm/string.prototype.trimend@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/string.prototype.trimend@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string.prototype.trimend", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "2724aafb89ab3dff44b030440d830e6ff94ced740bba5c20e51fe6d6bd0f5c416aad5d2a1ef979f2c7538a5497b4a39f942b0ad84f23c5ff86282d13d3b456c1" + } + ], + "purl": "pkg:npm/string.prototype.trimend@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/string.prototype.trimend@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string.prototype.trimstart", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e1e9ef7ce0e05fbf14b9d2d758da74599e80b9fe62c528e44441fc3cb79cb2b64a14b0944dc6f23f137f6abb5b03d0eb56237382d1780a4a6716c338b062e67" + } + ], + "purl": "pkg:npm/string.prototype.trimstart@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/string.prototype.trimstart@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string.prototype.trimstart", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c7c75e932421a5b0dd28e9d976a3a9dc594b1d8272d1480db7ad1139a72181c3f98baf7123fd1d8b6aa0ad80ff1534c199b2f3169dff68a193f26366c7bd416" + } + ], + "purl": "pkg:npm/string.prototype.trimstart@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/string.prototype.trimstart@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string.prototype.trimstart", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "a26aa3303698f76a5b9f91ce5fb7fd21c70b03e535b40f46bed53826ba1d89715f601ee33f3cc7a51ce98252c08ed515e9b079e7bcf00a525ecd3aa702262740" + } + ], + "purl": "pkg:npm/string.prototype.trimstart@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/string.prototype.trimstart@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string_decoder", + "version": "0.10.31", + "hashes": [ + { + "alg": "SHA-1", + "content": "62e203bc41766c6c28c9fc84301dab1c5310fa94" + } + ], + "purl": "pkg:npm/string_decoder@0.10.31", + "type": "library", + "bom-ref": "pkg:npm/string_decoder@0.10.31", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "strip-ansi", + "version": "6.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "637f153d21dcaa416b0a916743dbee4979aabaebf9a1738aa46793e9a1abaf7a3719cf409556ba2417d448e0a76f1186645fbfd28a08ecaacfb944b3b54754e4" + } + ], + "purl": "pkg:npm/strip-ansi@6.0.1", + "type": "library", + "bom-ref": "pkg:npm/strip-ansi@6.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "strip-bom", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + } + ], + "purl": "pkg:npm/strip-bom@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/strip-bom@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "strip-bom", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "df1bab16fe6d1208a2df7662f09b69e79c042082d1f5e877e05016d343d97fe2674ac4e657f8a87b04a0425f7b247be08e8446c0f4a1b169be21daf1077e5dd3" + } + ], + "purl": "pkg:npm/strip-bom@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/strip-bom@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "strip-comments", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "669acac7e6c12d7bf4ebb5930802eff124b3e65dbe5e1a580ac56d4aa94c9e40173160eafbf7a455b975821a8ff6b5074f3bfab26fc3c023a262eb54ff2a757f" + } + ], + "purl": "pkg:npm/strip-comments@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/strip-comments@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "strip-final-newline", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "06ba6f7cd004ddd72fabb965df156e9b38ca8d9439b48d6c11420aaf752892cd17525e394addc595ab55a9e7fda6b9388d10f3856e96660fb76e4f77cbaa4b8c" + } + ], + "purl": "pkg:npm/strip-final-newline@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/strip-final-newline@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "strip-indent", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "95a2536b725bf95429682e83b1e1e117b75756a1d37c93c24436846e277f76b3a1822b60624bbf95eb4c52a397168595d3320851b8e9747dadfad623e1b40c45" + } + ], + "purl": "pkg:npm/strip-indent@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/strip-indent@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "strip-indent", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9a755257697e66fe812e9483ffc57cec25bfcbd12699b63318221abec9ec23afe7c27dba0f07df33fcb3b66df467f2360d8f70752def5d508c9c70e065a54da0" + } + ], + "purl": "pkg:npm/strip-indent@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/strip-indent@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "strip-json-comments", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" + } + ], + "purl": "pkg:npm/strip-json-comments@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/strip-json-comments@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "strip-json-comments", + "version": "3.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e9f3dcf91e22870a8fe8dfda22fd9fd60307f25395b56407a2a0b8c8aea8483555a1cba602c7c2aa39179ea89832198cc12fe61072e9ed57a196ddea97a9448a" + } + ], + "purl": "pkg:npm/strip-json-comments@3.1.1", + "type": "library", + "bom-ref": "pkg:npm/strip-json-comments@3.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "style-loader", + "version": "1.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "57b4c2391928f2bb3dac8aa44ab94c7e4a80eb70dfa060412662b590a1827128be0566f872acf4491b27a7897aad4e62c0e11dd3fd9e3efebc495db6557a27e1" + } + ], + "purl": "pkg:npm/style-loader@1.3.0", + "type": "library", + "bom-ref": "pkg:npm/style-loader@1.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "style-loader", + "version": "3.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "18f710f8b0c96eb7311ce45345eb3a272dac7ef2b6912ea1a527c8fdf5e13edfaca55cf117a2c9d5d1cb37dcc81a655a68fd38e1829a21ab456ae7c4351883a1" + } + ], + "purl": "pkg:npm/style-loader@3.3.1", + "type": "library", + "bom-ref": "pkg:npm/style-loader@3.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "style-search", + "version": "0.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "7958c793e47e32e07d2b5cafe5c0bf8e12e77902" + } + ], + "purl": "pkg:npm/style-search@0.1.0", + "type": "library", + "bom-ref": "pkg:npm/style-search@0.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "style-to-object", + "version": "0.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0b31674515e1cd621d22d4f73a617c4907d6c9a847863ab71f070c34234b9fe37b92538ea8f8cc786ff8252bbbec3ef2a59746bd2cef92b6f2793322cf3d95ac" + } + ], + "purl": "pkg:npm/style-to-object@0.3.0", + "type": "library", + "bom-ref": "pkg:npm/style-to-object@0.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "style-value-types", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d3ccaadfa2249f8931e1853a443ee3584bf6eefe15f8f52c3866b89ff6acf04b770ae383309434d0435e0155c07b2757e19da3d571d91752b6b17e261a5d7c7c" + } + ], + "purl": "pkg:npm/style-value-types@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/style-value-types@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stylehacks", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b32e6bc7413ac859f4a09639100b0dbef82f7e35ef7577fe92a7dd88f1ce6e1d3732fcf81e1da9b021321b056f709c54d8ff765f49747d1c82fa224aa672ee9" + } + ], + "purl": "pkg:npm/stylehacks@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/stylehacks@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stylelint-config-prettier", + "version": "9.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "538e2510b80b6616c00ffc72fef9dc6763eaf2c8764e7a623efa37f087e0f7ecde8a847e2c0907bb48ba60e4483b115a7d9a15834c6a4307b1e9ee85db94b95c" + } + ], + "purl": "pkg:npm/stylelint-config-prettier@9.0.5", + "type": "library", + "bom-ref": "pkg:npm/stylelint-config-prettier@9.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stylelint-config-recommended", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "17ac9346e734eb1af5879430ff291bd8bb85ca727623190a7c231ffb5c6a3df7e4c61d12d3d65cf74d9709f7dcb30fd7305abf3b3435c39e1f2c80ed9913479d" + } + ], + "purl": "pkg:npm/stylelint-config-recommended@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/stylelint-config-recommended@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stylelint-config-standard", + "version": "20.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "201da215dcce4c0ff34b88d255abfacfec06b629f4f2a7e3f98c84c470772c5f659e8b9086dfff632074299abd806cf91cd3e475d1cecdc63c1ec51ecba65494" + } + ], + "purl": "pkg:npm/stylelint-config-standard@20.0.0", + "type": "library", + "bom-ref": "pkg:npm/stylelint-config-standard@20.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stylelint", + "version": "15.10.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "09893362b0857c0fe09ce47ebbd909d4fa73c06d7458b567a311c3b8103f262c06a9d33dfb2c7dfa8bba484ff2f581ed7efd6670ba34e9f75a7474cec7880165" + } + ], + "purl": "pkg:npm/stylelint@15.10.1", + "type": "library", + "bom-ref": "pkg:npm/stylelint@15.10.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stylis", + "version": "4.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "c463d7885565e18103f4987b12ebf6576db49ab886f6ee01d9303a61b8dcd5c6adaecb4a0f63e921d53753444aa645410b612198bfc5d2c3c2afdbeb1533516a" + } + ], + "purl": "pkg:npm/stylis@4.0.13", + "type": "library", + "bom-ref": "pkg:npm/stylis@4.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stylis", + "version": "4.0.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "9b793e764ed0789c3aeb4788291467df13c5eaebaf1ecfc51738d7dc7439a2f7b4a98b22ca0a008709f96b721829a64fa392eb603d2b7d59adbf580d635b98c2" + } + ], + "purl": "pkg:npm/stylis@4.0.10", + "type": "library", + "bom-ref": "pkg:npm/stylis@4.0.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "supports-color", + "version": "5.5.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "423563c1d5c8b78d3c308880a825f8a142ac814d84a801b3b363e9926e1a4186e39be644584716e127c5353af8b8c35999ad1ecb87f99602eb901d1a5f440ca3" + } + ], + "purl": "pkg:npm/supports-color@5.5.0", + "type": "library", + "bom-ref": "pkg:npm/supports-color@5.5.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "supports-color", + "version": "7.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa9080bd197db2db8e1ef78ab27ec79dc251befe74d6a21a70acd094effe2f0c5cf7ed2adb02f2bf80dfbedf34fc33e7da9a8e06c25d0e2a205c647df8ebf047" + } + ], + "purl": "pkg:npm/supports-color@7.2.0", + "type": "library", + "bom-ref": "pkg:npm/supports-color@7.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "supports-color", + "version": "8.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "3295043763a876d533c6f29097bd9c505ed14391221ec1af4ac546d226bd73945b5862f6088e02ec4a4f4bc513048a659e5cd988db95e7ac3e16e371cb7b72d9" + } + ], + "purl": "pkg:npm/supports-color@8.1.1", + "type": "library", + "bom-ref": "pkg:npm/supports-color@8.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "supports-hyperlinks", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "eac5c4cd5e7e2398fc066abdfef52984644cfd124d4fd48251124b8f07ce839d61791b60b86583cdc6819600332a141ad0454da4f10acd0b81c19f12f1668279" + } + ], + "purl": "pkg:npm/supports-hyperlinks@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/supports-hyperlinks@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "supports-hyperlinks", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4010cf1f23d00d14f2f64bb85113466392da87c3c0697b3ab40030a79e6c2f9582b125bb1887dd7fa5b98b17f3896fadef0877195bc7c871f2435112b2846f68" + } + ], + "purl": "pkg:npm/supports-hyperlinks@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/supports-hyperlinks@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "supports-preserve-symlinks-flag", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a2dd169d74bd7e076480871e3dee911cd935580f3e9ae3dae9c4a3791dd5f0adbbabd041d6b4c4dd1d69ec7bf4cf567201cf2ce95beff0323259febcd4c02dd3" + } + ], + "purl": "pkg:npm/supports-preserve-symlinks-flag@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/supports-preserve-symlinks-flag@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "svg-tags", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "58f71cee3bd519b59d4b2a843b6c7de64ac04764" + } + ], + "purl": "pkg:npm/svg-tags@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/svg-tags@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "svgo", + "version": "2.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8dfd0f64575f85f947966284a250b628e316120d095381bf9ac8ca1b0173f03272efa29ee8c4a328f4ecc8ad7e71dde4b82f87f650785cf5ac57c18f03a4286" + } + ], + "purl": "pkg:npm/svgo@2.8.0", + "type": "library", + "bom-ref": "pkg:npm/svgo@2.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "swagger-ui-dist", + "version": "4.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "5af7cf49f00032513fb0a4ba6245b8ee75ff840ed2b668589c01dceb05825cd2f4a1c9702e3e945efd2140290b9c382f79b8b4304578d12249a558ca5201f521" + } + ], + "purl": "pkg:npm/swagger-ui-dist@4.1.3", + "type": "library", + "bom-ref": "pkg:npm/swagger-ui-dist@4.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "swagger2openapi", + "version": "7.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "5484f8d789287b4789aab7b42ab84d31407b40451f3e318029eb0f659a2c20aaf6af167abe95287abb0750534eb0dfce679bb6cec9e20ac9413b055c99067096" + } + ], + "purl": "pkg:npm/swagger2openapi@7.0.6", + "type": "library", + "bom-ref": "pkg:npm/swagger2openapi@7.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "symbol-tree", + "version": "3.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "f50364e4ac0317e06fcfe3f239b9264988c8e64b15518b635bb014db6af634a71f2c9717a7dea1903594dfe5e774eb146fe010f5085fcdf093d8ef823564f94f" + } + ], + "purl": "pkg:npm/symbol-tree@3.2.4", + "type": "library", + "bom-ref": "pkg:npm/symbol-tree@3.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "table", + "version": "6.8.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6385fdceaac27ed52131e1f6129b5248445d54ab7f9c47628d339a7060fff7b10a8e143f42cf114e510600148934d37c95a73d921787f9a7fbc809045a582778" + } + ], + "purl": "pkg:npm/table@6.8.1", + "type": "library", + "bom-ref": "pkg:npm/table@6.8.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tapable", + "version": "2.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "18dcd0bd04ce20fe91c937c4d90c5bf19565366c349fcf2fa75b33c1646298fd369a74ecc775ad9f9a9176a63dc365ddb8535482f3b084d9d0b23c02a7e92a69" + } + ], + "purl": "pkg:npm/tapable@2.2.1", + "type": "library", + "bom-ref": "pkg:npm/tapable@2.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tar", + "version": "6.1.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a7fca650cd052464292ea0003ae2133dd97d14adbe95a51840165943cf3e3853699c0f9b1c993df305ce15815a64ba0179f34f83427f1e0054b2a10b74b739c" + } + ], + "purl": "pkg:npm/tar@6.1.11", + "type": "library", + "bom-ref": "pkg:npm/tar@6.1.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "terminal-link", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ba7d059a245440daf93c9ab2f643fb738d05e4139fa469584ebc689c30a111907ba7367144da7f6edfb29a2cbdfe7a705f26bd287f7d9c9fc65c522252460615" + } + ], + "purl": "pkg:npm/terminal-link@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/terminal-link@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "terser-webpack-plugin", + "version": "4.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d3817878d119ef3ab2d0360224c042a743cae61e31cae2efba501122f96f853e6bdbfaea3e7212579ed29eeffde55b998dcac812583eb42b27ac9e15bc0fa31" + } + ], + "purl": "pkg:npm/terser-webpack-plugin@4.2.3", + "type": "library", + "bom-ref": "pkg:npm/terser-webpack-plugin@4.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "terser-webpack-plugin", + "version": "5.3.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "171eb41b91cd6249cd4cd427cd0d5578f46ebbcf5955859f8d101e4f9ac84ee098ff56f4f2ce3d7b99124301c38ab2995aea0a3814454bdf04514a19f642c4c1" + } + ], + "purl": "pkg:npm/terser-webpack-plugin@5.3.3", + "type": "library", + "bom-ref": "pkg:npm/terser-webpack-plugin@5.3.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "terser", + "version": "5.14.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "a0bd2b19e33f58540251dd32d90ad6c589eaeed7d2b8a062a938d13d6ad1801e3a583fe48b01f017c4f6df3efc1fa43a9060aeb8770f07e2942c745dc6f54640" + } + ], + "purl": "pkg:npm/terser@5.14.2", + "type": "library", + "bom-ref": "pkg:npm/terser@5.14.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "test-exclude", + "version": "6.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7001963c8c8e1d4eb396683cf23c26ed54725e730dee257af0e1806d80e4fcc87fc42fe9cd53e542d63a9e0a081ffe7fb5c8ae8467ef11253c1ab1eb7310f9eb" + } + ], + "purl": "pkg:npm/test-exclude@6.0.0", + "type": "library", + "bom-ref": "pkg:npm/test-exclude@6.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "text-table", + "version": "0.2.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + } + ], + "purl": "pkg:npm/text-table@0.2.0", + "type": "library", + "bom-ref": "pkg:npm/text-table@0.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "throat", + "version": "6.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f219a218824c0e5c2383b765278c8a18b2bc12c62a2a03d66c6ddbe308c975d28dc1cecdec3a67d3c0dfe2ccebfec65d31578eb2dadd612b2acd7e8161b701fb" + } + ], + "purl": "pkg:npm/throat@6.0.1", + "type": "library", + "bom-ref": "pkg:npm/throat@6.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tiny-glob", + "version": "0.2.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "83fe79b2c44f5234a187ec647f1f543c35ea85c90712c1ebe1577dcd7e79a1274665cfcc0f49b7b1f7ab3a4c16b69f7c6effa47157c41ed449801549cde96bce" + } + ], + "purl": "pkg:npm/tiny-glob@0.2.9", + "type": "library", + "bom-ref": "pkg:npm/tiny-glob@0.2.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tiny-invariant", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d54867fdaab0e42e9123829e8d579383a9884bb22ac672c9f0cbf6b55e6b4dcd2a5a86dacbba43533e968b7f760a773c6a4d47d05d9c8e84736f6fc05b8f85be" + } + ], + "purl": "pkg:npm/tiny-invariant@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/tiny-invariant@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tmpl", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "ddfd2e384010c08a86b965b6315cd883c7d5fd036773f229b89346f37eeb2ee73301a2d51ec9561d9423e081a2125e47b379246e1c0bf406fb1ebb26ba3f929b" + } + ], + "purl": "pkg:npm/tmpl@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/tmpl@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "to-fast-properties", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc5e698cbd079265bc73e0377681a4e4e83f616e" + } + ], + "purl": "pkg:npm/to-fast-properties@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/to-fast-properties@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "to-regex-range", + "version": "5.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "eb93fb8b3e97e7212bd5cc1c82f4316db230ed493780ecb974876d678ac3bde2ea86b7493fe2e2fc7c7ab722b43446fed860b29de08c2621aaac00c248d93cb1" + } + ], + "purl": "pkg:npm/to-regex-range@5.0.1", + "type": "library", + "bom-ref": "pkg:npm/to-regex-range@5.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "toggle-selection", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e45b1263f2017fa0acc7d89d78b15b8bf77da32" + } + ], + "purl": "pkg:npm/toggle-selection@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/toggle-selection@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tough-cookie", + "version": "4.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "697ff2e6955191f4677e6b97f8e75b49d5ef3deea278a5ff1b6b3b7bdf1fe29a091e7a87df6f358033e6fe67ad9ba13f5916a67f1ed60b81d4aa45877d01e9af" + } + ], + "purl": "pkg:npm/tough-cookie@4.1.3", + "type": "library", + "bom-ref": "pkg:npm/tough-cookie@4.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tr46", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d79221ee985f71d3f9631aa207e883b4ba1a4f3e0d777e7e22202fd2443914d287cd781d5aa3e84c8a840c32665dc790b7825993a9553d3f259c394fa460e9a7" + } + ], + "purl": "pkg:npm/tr46@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/tr46@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tr46", + "version": "0.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "37758cb2ea95eba953df40ab5cd6c48f1e06130968c37bfaaebe2609cbfaa6b9dfc214b4d6b920c857633cd05877d6ebecba57575f849a1d357c79ead86760af" + } + ], + "purl": "pkg:npm/tr46@0.0.3", + "type": "library", + "bom-ref": "pkg:npm/tr46@0.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "trim-lines", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9118fc07e60764273d91061d59f241dbfa1497dac0f7da9ba3061806daf8ba2e26672010d89a6f54177fe94d989680137ea06105348c853a60047b54d0c7f746" + } + ], + "purl": "pkg:npm/trim-lines@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/trim-lines@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "trim-newlines", + "version": "4.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d12a3d27d235d6a3a921eb69c0e53121dfee2280a0d72efcc125c3e98a2ccfee83a8954ad8231995046f533ad1d8147a1d75493a62f02419e1a84954d77d05d" + } + ], + "purl": "pkg:npm/trim-newlines@4.1.1", + "type": "library", + "bom-ref": "pkg:npm/trim-newlines@4.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "trough", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "02a4e200e2dc8fce714bbbd0f10900578d613c3209ef55c907844252bce8ff518cd8243086424669ff4782bec13ae80c46980652ba9183f0eb0439781f8d3ef2" + } + ], + "purl": "pkg:npm/trough@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/trough@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tsconfig-paths", + "version": "3.14.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "a3ff625e00987392ff2710873dedc7be1f10ff6c66e59fa9d7c3c448153a15fdf7ebde509c21c1123732b58daad7db9aecc6e5fc36afb4138babea06d1108bfa" + } + ], + "purl": "pkg:npm/tsconfig-paths@3.14.2", + "type": "library", + "bom-ref": "pkg:npm/tsconfig-paths@3.14.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tslib", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "37cda8a32c55366ea1d6b88b0a8c92f5eddfb89dc0306db3219b3619dd404dc4858d2036dd0d1fce38d97a1d236c9bd65436747094fcc9a34d69a5c7cee78d8e" + } + ], + "purl": "pkg:npm/tslib@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/tslib@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tslib", + "version": "1.14.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e78b7e4d2b38e032bc1ebf2b074c202bb4b0e93efc9ef3357fd04e04c989f8dcfeffeeabd0c0f87d0469077b06ccba5567b5b8a099c4fbadd5f704da3dc1126" + } + ], + "purl": "pkg:npm/tslib@1.14.1", + "type": "library", + "bom-ref": "pkg:npm/tslib@1.14.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tslib", + "version": "2.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "77ac4ea440dfb22d8265594f43319ebb1f173302d3f61b2c02c68f604c5a40cb98b24c1bfb1d71ec9dfbd6d5a56c17561eba32f7d2a7541eaa22451bb395f751" + } + ], + "purl": "pkg:npm/tslib@2.4.0", + "type": "library", + "bom-ref": "pkg:npm/tslib@2.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tslib", + "version": "2.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "efb11bc8f3e9333f8544546e00595632d9a051619ef54386d99db936a0b08888d184e7f988a1aecd27b93f6c3595aabe164472e29f8f0ae5642521a4cd310a57" + } + ], + "purl": "pkg:npm/tslib@2.3.1", + "type": "library", + "bom-ref": "pkg:npm/tslib@2.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tsutils", + "version": "3.21.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "98728ade25172fedd417ac4be64d0f12129150128f042bfff919043a98d15b1c71dbb28a4419a603ad00f6980e52f322f062a144c3c49a30513f3b365bb3b538" + } + ], + "purl": "pkg:npm/tsutils@3.21.0", + "type": "library", + "bom-ref": "pkg:npm/tsutils@3.21.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "type-check", + "version": "0.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e5794a1cf6ec065ea8d6c176944d9026ccc705679f39f10036befc7552be7121c8b15c83fef0b9c50e0469954df4bacead7aa765b2415fbbe69ee0aefd3a87b" + } + ], + "purl": "pkg:npm/type-check@0.4.0", + "type": "library", + "bom-ref": "pkg:npm/type-check@0.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "type-check", + "version": "0.3.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "5884cab512cf1d355e3fb784f30804b2b520db72" + } + ], + "purl": "pkg:npm/type-check@0.3.2", + "type": "library", + "bom-ref": "pkg:npm/type-check@0.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "type-detect", + "version": "4.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1faff9881f57653bec7b4e570ccbe6c80ea28fb30ffbd2d5727875bbf3b828423866a9a65ed74bb02ee8ee6caf6af4b83a162868d4a50a0d8cf467b93b839fe" + } + ], + "purl": "pkg:npm/type-detect@4.0.8", + "type": "library", + "bom-ref": "pkg:npm/type-detect@4.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "type-fest", + "version": "0.20.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "35ef9e138af4fe25a7a40c43f39db3dc0f8dd01b7944dfff36327045dd95147126af2c317f9bec66587847a962c65e81fb0cfff1dfa669348090dd452242372d" + } + ], + "purl": "pkg:npm/type-fest@0.20.2", + "type": "library", + "bom-ref": "pkg:npm/type-fest@0.20.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "type-fest", + "version": "0.21.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "b74af306af3b9b77d571db870d41612a6cb25fef5ea3a5908d9bdfe7511afccd10efe4f7ef8269d5a522c9497418ac69f0cfce113547483be69323e0bd7f97db" + } + ], + "purl": "pkg:npm/type-fest@0.21.3", + "type": "library", + "bom-ref": "pkg:npm/type-fest@0.21.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "type-fest", + "version": "1.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c864b36bbe31934506f24fa92e1e687a8622aef2225a8e6dd3fa37cc71c03b6b510e265cc563fb7f2c0d95786a6fafebeac5afc22f91b3240c5a154b7b8055b8" + } + ], + "purl": "pkg:npm/type-fest@1.4.0", + "type": "library", + "bom-ref": "pkg:npm/type-fest@1.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "type-fest", + "version": "2.17.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "53e837fc95579ce922d642d273ec5918f465977021f6ed95206e929fd887f585fa5243c4466b7a3bfd1f2324e0b1ddbfc21574fa001a1c083c7f3eac1b543330" + } + ], + "purl": "pkg:npm/type-fest@2.17.0", + "type": "library", + "bom-ref": "pkg:npm/type-fest@2.17.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "typed-array-length", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a3672a46abe23f1fb1c8e4794ea061e4594506abe4344cf850bab2dbcab56bbe7293060ccb84827b8fa27f5d340e8b4775463c99d3075ab3c6cab36a74c7736" + } + ], + "purl": "pkg:npm/typed-array-length@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/typed-array-length@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "typedarray-to-buffer", + "version": "3.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "cddbbc5cc3440dea4a291f9760e5c054fb56ba2d25cb436da2152c730f9499a1e20164fc86b575aebfff1fa57ed03bc9dce435f52f7bf4cd2568b7d7f2b9bcd9" + } + ], + "purl": "pkg:npm/typedarray-to-buffer@3.1.5", + "type": "library", + "bom-ref": "pkg:npm/typedarray-to-buffer@3.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "typescript", + "version": "4.7.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "58e913dd762fae95f1e2f30caa50fef11f11dfb7d9923c8b1a5c5abcc738881f25ae5f0bd037937076d8830fefd0dff3f70005b2006172c174aeea32492db698" + } + ], + "purl": "pkg:npm/typescript@4.7.3", + "type": "library", + "bom-ref": "pkg:npm/typescript@4.7.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ua-parser-js", + "version": "0.7.33", + "hashes": [ + { + "alg": "SHA-512", + "content": "b3c6b1fc279974af51ff9e92ba2d1633acbd38544425aacc447a8b076130928bde981c4d43e06abbc180b149d57172a0a616fefa086bfc1d81671e266a1ba33f" + } + ], + "purl": "pkg:npm/ua-parser-js@0.7.33", + "type": "library", + "bom-ref": "pkg:npm/ua-parser-js@0.7.33", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unbox-primitive", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b5953fdcda8addd0398291352adca2254ac40749719c690c147a6d27baba7b0759f2cd7642b383c0d6e12094ad98991dd500d76b535103c685d80d7393f629cb" + } + ], + "purl": "pkg:npm/unbox-primitive@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/unbox-primitive@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unbox-primitive", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "eb5a4f9420fd879d55a2b7b22740517a275e33730328c2a787af95f4bd3cdf7d62a6ae90f0e1576588aa3fa9ffb5b1f1e2ce48f6e4617327ba06b6e48b39010f" + } + ], + "purl": "pkg:npm/unbox-primitive@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/unbox-primitive@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "undici", + "version": "5.26.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "1fb9f6ce62845a03a594a9085242ef166b09423d3ada54a6dee0381180291bc80bba238cd3f828f5b2280b71d56929df838c6e9e8c031368bda7c76b917baf0f" + } + ], + "purl": "pkg:npm/undici@5.26.3", + "type": "library", + "bom-ref": "pkg:npm/undici@5.26.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unicode-canonical-property-names-ecmascript", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c98e4fa4395f548539fb2fc1482c402510484b565cd9d0c6dd48eafac47453e26351ebd6d8986870e17eb2844e60349a01eccecce2aecb28b1843ea60649d299" + } + ], + "purl": "pkg:npm/unicode-canonical-property-names-ecmascript@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/unicode-canonical-property-names-ecmascript@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unicode-match-property-ecmascript", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e646990ab6e9e6699bcf9ba50640e46d8d12b0f3a32aa552df95692fdba530f7d29742745ec9bef44be986ff42a08645c2b7bb689a1af78018eac78c28654de5" + } + ], + "purl": "pkg:npm/unicode-match-property-ecmascript@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/unicode-match-property-ecmascript@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unicode-match-property-value-ecmascript", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed886473461efade0f358cce18a79d0e15db60805ed57110610c4e3f285c5cd309d1608006aaa3e9c93275dea95916531d5e06b823ca74101488c73ad2db0a57" + } + ], + "purl": "pkg:npm/unicode-match-property-value-ecmascript@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/unicode-match-property-value-ecmascript@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unicode-property-aliases-ecmascript", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e597eecbdabf0c5af8b5f3bb64f7955dbd5a3e879049d78530ba58b8579b7a10c085bb9ebcbb39cb149998814dd6d3f917d5a5e08a49ad8a2383ce7fce0c991d" + } + ], + "purl": "pkg:npm/unicode-property-aliases-ecmascript@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/unicode-property-aliases-ecmascript@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unified", + "version": "10.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "a54496022fd1027572d4f89fda40287963416b7255af1d0c21dd8b0128fc1beec08875a8299353a26aba2c6df6e93ebc53bfdedbadd7e9f4dd717232ed79c5ed" + } + ], + "purl": "pkg:npm/unified@10.1.2", + "type": "library", + "bom-ref": "pkg:npm/unified@10.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unique-filename", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "566a748c8a76967df95135eeaf2be3ce48c6751c9ff5bda54d7b9261488f9b345c977143b58a80c0e9d3264027803f525a19e82730db4cac1a3ab67e493b7135" + } + ], + "purl": "pkg:npm/unique-filename@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/unique-filename@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unique-slug", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce85abf4e6dac402c3dc338f7e33d2ab1b787e766259b9711c881e5aa5bcc7b52a0f312d1c440bce38b672e258405094e8a9a826290e600665ad31c779b8f1db" + } + ], + "purl": "pkg:npm/unique-slug@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/unique-slug@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unist-builder", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "185c667c401ad2f8bd8b9b1dd11da472b23d92cd2bf3635ab11ab9407876cac1a782b73a1a2a83e420dfd458cf7a7638bc0a66140481208964fe38f927961b99" + } + ], + "purl": "pkg:npm/unist-builder@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/unist-builder@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unist-util-generated", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4e2584e8356d55eed87b64313955bd92ac9bb3a7197b13704f048c56091f8c445eab2ff1c06a405dbf7d3b192da16c262fe67e1296f40e7f3f18d0d83f5c2753" + } + ], + "purl": "pkg:npm/unist-util-generated@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/unist-util-generated@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unist-util-is", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "179099ebc798cee4af2631a108b3cbddc631e3923192a5d27ad09c460517b5b726e745f62fda0e59095f51f0dd01ffba3dddbb6036e505f76d9ac4e15e6c296d" + } + ], + "purl": "pkg:npm/unist-util-is@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/unist-util-is@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unist-util-position", + "version": "4.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "a7fe4430621ad6ac1b5e303e4207015da3d68d29d97d0d92737c811047e03f0b0498977c421f834a4dcb1a798e3384b56d8d82d008e632707c46e118c693f05d" + } + ], + "purl": "pkg:npm/unist-util-position@4.0.3", + "type": "library", + "bom-ref": "pkg:npm/unist-util-position@4.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unist-util-stringify-position", + "version": "3.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec0e9e8830acf54b6373064e702a4ce1a3c82376c0006bf5dc4f7a2246b090e016d0e847fb2471b58d25ce8f0a887a7310c7c7ed0f858b3526c29f08ab2e445a" + } + ], + "purl": "pkg:npm/unist-util-stringify-position@3.0.2", + "type": "library", + "bom-ref": "pkg:npm/unist-util-stringify-position@3.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unist-util-visit-parents", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "824b386da6a94ff90d45a5b1b86925e41221a1a9d9a3bb02fdc513fc94e849134bd5d6285d1165ef977ef8d923624e1302edaebf63f1fa5f20b8c6a3a207ae8b" + } + ], + "purl": "pkg:npm/unist-util-visit-parents@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/unist-util-visit-parents@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unist-util-visit", + "version": "4.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9fd28ddd657d9388750f1611d4ba1a8e037ddf0a448bfed9a6555ed36228078807e5cb48d40685dbaef404b1d061bc23fa963cde016dc9ec92162c8c1c9925ae" + } + ], + "purl": "pkg:npm/unist-util-visit@4.1.1", + "type": "library", + "bom-ref": "pkg:npm/unist-util-visit@4.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "universalify", + "version": "0.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "089d5080a98d8370b0bc0bff90e166b6710dd397f40ff727f509ed80d39095017d760bd54c78f7b7ef093dd8ea6b008793b57f280f9f6d4ab367d5d685ca8f52" + } + ], + "purl": "pkg:npm/universalify@0.2.0", + "type": "library", + "bom-ref": "pkg:npm/universalify@0.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unload", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "07ad2e0794cd04bb4debf2ec8007f7b9d1fdb1a079a7b82a2707057db38467c05c0479c6c027fa1bf4c6884aa4440c57ef3005214b7376b5d049d2f743fc2a34" + } + ], + "purl": "pkg:npm/unload@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/unload@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "uri-js", + "version": "4.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "eeb294cb2df7435c9cf7ca50d430262edc17d74f45ed321f5a55b561da3c5a5d628b549e1e279e8741c77cf78bd9f3172bacf4b3c79c2acf5fac2b8b26f9dd06" + } + ], + "purl": "pkg:npm/uri-js@4.4.1", + "type": "library", + "bom-ref": "pkg:npm/uri-js@4.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "url-loader", + "version": "4.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2338000080bcc11ae0e8d624148258d3dbed92d41cb2f53c57a1e1b508fd3d379f6d8226ccb07586e7eaa389be47233937798bc7906a24a71c831252f96de4ab" + } + ], + "purl": "pkg:npm/url-loader@4.1.0", + "type": "library", + "bom-ref": "pkg:npm/url-loader@4.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "url-parse", + "version": "1.5.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "5b2a5c7e24617de50ff6fbc5d23eabc3427786b5abc3a899bf7fb6da1ea244c27ff33d538fa5df2cfe03b148b1e4c84c3e75e98870e82b2a19fdb74293004289" + } + ], + "purl": "pkg:npm/url-parse@1.5.10", + "type": "library", + "bom-ref": "pkg:npm/url-parse@1.5.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "url-search-params-polyfill", + "version": "8.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a6902b3a4a313ab788a1adf5bd25e9403d02082056c9c1e69a48b4e1ff800ef9ce7c2650dc6fe19b74fb7ccabe6545c160e2b3ecc11151461046a56c21d0afd" + } + ], + "purl": "pkg:npm/url-search-params-polyfill@8.1.1", + "type": "library", + "bom-ref": "pkg:npm/url-search-params-polyfill@8.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "url-template", + "version": "2.0.8", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc565a3cccbff7730c775f5641f9555791439f21" + } + ], + "purl": "pkg:npm/url-template@2.0.8", + "type": "library", + "bom-ref": "pkg:npm/url-template@2.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "use-callback-ref", + "version": "1.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "dc54fd3d1b9175b07d1df5e112adf9bb8a1992fa49e64b986e9aa109f9a267245eb918299e10e56ebd991279ee4b446b2403e7ea5db7c63160f64a4333e32cef" + } + ], + "purl": "pkg:npm/use-callback-ref@1.3.0", + "type": "library", + "bom-ref": "pkg:npm/use-callback-ref@1.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "use-composed-ref", + "version": "1.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "18b306d0973f8e22a8bffdd4962775c1bbf7af9e0af4794c5b6f4859c0c53c4a859123b69d2d0cb9e7d680c26978743d6097970cbdd9505f8fde37579595ff71" + } + ], + "purl": "pkg:npm/use-composed-ref@1.3.0", + "type": "library", + "bom-ref": "pkg:npm/use-composed-ref@1.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "use-isomorphic-layout-effect", + "version": "1.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "e3d2fcc823b78864ff645f50b6d8f02c5fd90fd230b68e4b9c7e4b984764ffa70599775daa2dae945d1e7714f08e3fbb9aabe95551905af6d765d9f7db04521c" + } + ], + "purl": "pkg:npm/use-isomorphic-layout-effect@1.1.2", + "type": "library", + "bom-ref": "pkg:npm/use-isomorphic-layout-effect@1.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "use-latest", + "version": "1.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c40f80566fd6960dded8ffc9888b53ce2c12ec52bdd8b5ab0c1d29fa181796820cb9509e249f2fe9fd1e787c8f65a26b33ebac33516415f6cd0ab246b3c03fcf" + } + ], + "purl": "pkg:npm/use-latest@1.2.1", + "type": "library", + "bom-ref": "pkg:npm/use-latest@1.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "use-sidecar", + "version": "1.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "7a94dbb0bbb367b94f0a5a73d93cabc817f3b66ee6fb6f03944bf6642437303af9b2c8b0c8ec061ff7b917d0a47d68c9d6de1c96f239f3217cdb6fc65248e387" + } + ], + "purl": "pkg:npm/use-sidecar@1.1.2", + "type": "library", + "bom-ref": "pkg:npm/use-sidecar@1.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "use-sync-external-store", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "784827171190d487def5bcd8b3a54b8bcff85fa08e6c7330f50afdb4f638de22b0b0fc3cc44f3e105b1fff67056794b77ac5e0a5682d482b4b352e3517eb0a3c" + } + ], + "purl": "pkg:npm/use-sync-external-store@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/use-sync-external-store@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "util-deprecate", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "450d4dc9fa70de732762fbd2d4a28981419a0ccf" + } + ], + "purl": "pkg:npm/util-deprecate@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/util-deprecate@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "uvu", + "version": "0.5.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "fa0f043517b2afc62c39ce9fbff35526cdaf15d1c19c135d7c4e3daec86b4f30d63a5531e06abb28e4b6183f1eaa1cb68fe123ab6f7e49b287f328e402a5eaa0" + } + ], + "purl": "pkg:npm/uvu@0.5.6", + "type": "library", + "bom-ref": "pkg:npm/uvu@0.5.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "v8-compile-cache", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "97c9421262dc2d8661e276ee9cd66f40225ce69bfbf910b06bcabf2dd531f2eee5b16bcf0ca9a9a1d24024dc24021242fff745638f0ab881268ed778455883ac" + } + ], + "purl": "pkg:npm/v8-compile-cache@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/v8-compile-cache@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "v8-to-istanbul", + "version": "8.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fcf4617ddf1a4cda7d1a0afad873f35e0d976ac3451b2e4f06dd11a74e1dbbbffc18d35283114be9605392030a48bf5b1631fef242841b77f7ec59b1893a9450" + } + ], + "purl": "pkg:npm/v8-to-istanbul@8.1.0", + "type": "library", + "bom-ref": "pkg:npm/v8-to-istanbul@8.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "validate-npm-package-license", + "version": "3.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e92a6d948bfc4deff1d0282b69671a11581859f59d24aadca01bc5c280d43c6650e7c6e4265a18f9eba8fc7cde02bb7fc999b86c0e8edf70026ae2cf61dbb13" + } + ], + "purl": "pkg:npm/validate-npm-package-license@3.0.4", + "type": "library", + "bom-ref": "pkg:npm/validate-npm-package-license@3.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "validator", + "version": "13.9.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "07e7461bc5377ddb4cd3f68d2b8fd7f025eafc473153658facf124246b256f8eeac87b3199b8204d62b4c84038aa7615345fa7c4d94df3ca35e2121c3e648810" + } + ], + "purl": "pkg:npm/validator@13.9.0", + "type": "library", + "bom-ref": "pkg:npm/validator@13.9.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "vfile-message", + "version": "3.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "d32694fab8f680a032124d767df7526c17e39e78fe6f5cea4c1bf73900939fcc84074d9bb0f8b3c1d04facb2631e72be714f4430c7149cdbfddfc5dc64892674" + } + ], + "purl": "pkg:npm/vfile-message@3.1.3", + "type": "library", + "bom-ref": "pkg:npm/vfile-message@3.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "vfile", + "version": "5.3.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "00306c99eadd181b36598724acb0449ae11348fc930f84ee2f14ebc340ef8e2af15b5adae19c246f31bc9ddb2fdd0e7bb26bc7c68ebbecc1da42b63dcb11fc70" + } + ], + "purl": "pkg:npm/vfile@5.3.6", + "type": "library", + "bom-ref": "pkg:npm/vfile@5.3.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "w3c-hr-time", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "cfc3f90ef0cd8ca0e81481caeeaf2bf2569c913ea5fa3a3f61edc73a57bb97d9c808ff657f50a2db97f2f6f1ddd093967b09081735c81228374dd293ec94397d" + } + ], + "purl": "pkg:npm/w3c-hr-time@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/w3c-hr-time@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "w3c-xmlserializer", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e2dcc3d2617c89288c88db37d0188b3b71297c62d9513d8c497fc6fa8ed9cb00f3962590dce3ed4d9d0f4c2dc1ddc6b55007f870930707ed817f9e84ae226e44" + } + ], + "purl": "pkg:npm/w3c-xmlserializer@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/w3c-xmlserializer@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "walker", + "version": "1.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6cffc13c9796fb918d2f9562dec0e9035cc98f74b7155781a63902f2c6e4acc0826cc1e78566d02c305ee4d4db33cfe4d8050ae56119b33a7af7f7ccb525e99" + } + ], + "purl": "pkg:npm/walker@1.0.8", + "type": "library", + "bom-ref": "pkg:npm/walker@1.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "watchpack", + "version": "2.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2dcbe6ecc1924ffe1fba9fa27f22a2da18f2200c1c748e07460b6f4e9214c4146107e445b5487c5ed0cec547dcb550a78558be4108f8f62f753b2bf390997a72" + } + ], + "purl": "pkg:npm/watchpack@2.4.0", + "type": "library", + "bom-ref": "pkg:npm/watchpack@2.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "web-worker", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3e0177e356afceacb1eb49de13d0c3f974b6e8c30d328510473f4d399c16df69cf42b17aa7bedfd61b5c9e3052115f0118c299d7a721a2a506e21c88d07c7b98" + } + ], + "purl": "pkg:npm/web-worker@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/web-worker@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webidl-conversions", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "d89027df3f0047aae32bc4a6f28ad10b487f6dc97f0ea2fbb513dd199e08d428dd17e11a30b998c411f25ee28bf38f5eb9c3c586f068c4cb1f95f39bf24c5a79" + } + ], + "purl": "pkg:npm/webidl-conversions@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/webidl-conversions@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webidl-conversions", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "56567028f0a460ac5081e49b1f91329e03a6469ed6c3b23dad02c44444ed7f9a1f77da467acc1688eb6882910ef39d23ce23d16abade1b19f9408893aa96f6c0" + } + ], + "purl": "pkg:npm/webidl-conversions@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/webidl-conversions@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webidl-conversions", + "version": "6.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8122f14b1a20692e37f099801a1cf5ec9fe868e716671afc86bec6abcb018d73c57240950c1c9f0e04a186acf111d2890178c0da6a7e263419600513b1b88f3" + } + ], + "purl": "pkg:npm/webidl-conversions@6.1.0", + "type": "library", + "bom-ref": "pkg:npm/webidl-conversions@6.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webpack-cli", + "version": "4.10.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "34b8437c7fe1e0ee943b2fb42d2b28e36c6f632a4294836e30d0555735f8bd7f7c4e64da4d4c7045b5dd86e71b14c776a8b6824dc2eafcf758aef8bca27c3dd3" + } + ], + "purl": "pkg:npm/webpack-cli@4.10.0", + "type": "library", + "bom-ref": "pkg:npm/webpack-cli@4.10.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webpack-license-plugin", + "version": "4.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "39f21d9bae7d20abab1089ca94137a49fceb87e30d2885a40a128a83e6830a83dfdce9353925c10ddd912926ee500b718e6756da3e8b5156569d16119d574ec4" + } + ], + "purl": "pkg:npm/webpack-license-plugin@4.2.2", + "type": "library", + "bom-ref": "pkg:npm/webpack-license-plugin@4.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webpack-manifest-plugin", + "version": "4.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "617500c31b5f2882482a4860d3730aba21400fbd8f96ba828b07703b85445dd44ee55d0e44237068ec0065ac0f65a9426e61fd9010e65e735e40ec3e048122a3" + } + ], + "purl": "pkg:npm/webpack-manifest-plugin@4.1.1", + "type": "library", + "bom-ref": "pkg:npm/webpack-manifest-plugin@4.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webpack-merge", + "version": "5.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd2688ef1634f37d57c0fea4ceec2129654a0cff6dd5063587ae650052db66a30f22e61c0fd4005b8bbd49321b53d91a25b3c107f81e53f80baf5c038ce850f9" + } + ], + "purl": "pkg:npm/webpack-merge@5.8.0", + "type": "library", + "bom-ref": "pkg:npm/webpack-merge@5.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webpack-sources", + "version": "1.4.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "9604d2dd786fd6508e2a8ed20394e3297323a52338b018cd579faad9ba9eb1b48fb391631a653a8e3b414a45fd6f8a96f3bbc322c0889543ce1216d9acc76379" + } + ], + "purl": "pkg:npm/webpack-sources@1.4.3", + "type": "library", + "bom-ref": "pkg:npm/webpack-sources@1.4.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webpack-sources", + "version": "2.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbd108f403b8d898c472b4c914e626572c1565d29551f3af0d43ec25e6b9188af524e106155ab0958d8ad3df1f1682233a40f31e7d808d1bccf1db0166efa008" + } + ], + "purl": "pkg:npm/webpack-sources@2.3.1", + "type": "library", + "bom-ref": "pkg:npm/webpack-sources@2.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webpack-sources", + "version": "3.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "fc3c8c10eac380b28a206d1f9afb73fb87545ffdc6868cf0826ea23e9f0a461be7f9e41ff7e43b196c5534c937fae08f59f757602e04c4605c9085dd1447c7d7" + } + ], + "purl": "pkg:npm/webpack-sources@3.2.3", + "type": "library", + "bom-ref": "pkg:npm/webpack-sources@3.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webpack", + "version": "5.76.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "979b0e758043ba7c9fef61d6f1d176deb16d5aaffb660bedffd7ed3287fbd44ff251bd582ce0664e00362b8bd0b61077928b4cad28fad3db71544d1d9ebd9f8c" + } + ], + "purl": "pkg:npm/webpack@5.76.0", + "type": "library", + "bom-ref": "pkg:npm/webpack@5.76.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "whatwg-encoding", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "6f99629b9e0938f37d1edcef2bd1c55ef0666bfae77c57aab22734852a63b436d5c51ddd24a2dcf8a07857a1a08863af97b098fca361f2bc52a3d0ca42b9d413" + } + ], + "purl": "pkg:npm/whatwg-encoding@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/whatwg-encoding@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "whatwg-mimetype", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "338c8cc2bea6027433efa4db266f75e3e80fa41fe70b0bd96c9536f1c503e9d474d38480c432ce39251a07524346a2ed68e57fbe2d080b9944006160ae31affe" + } + ], + "purl": "pkg:npm/whatwg-mimetype@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/whatwg-mimetype@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "whatwg-url", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1a139ee7ba9c64eafdc7637e7e8f307061ad2b292cb45d1f094b164fc202ebef2b34201ce11af880d7f4d41892e6495aacf296fd027bc809712e3872e9ad84f" + } + ], + "purl": "pkg:npm/whatwg-url@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/whatwg-url@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "whatwg-url", + "version": "8.7.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "800a23a9bfe6f50f1ae4857de84ddf1c933bd00cc2920b78b97617d8eec49aec8e9cbad5882425b0406617d51022edff69e008a76535eebb5ba5958d9ed42a76" + } + ], + "purl": "pkg:npm/whatwg-url@8.7.0", + "type": "library", + "bom-ref": "pkg:npm/whatwg-url@8.7.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "which-boxed-primitive", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "6f065dbf400a2e9a65158d8a6515fa4efcae37ba238ebee5c2483a9a5d2ba08cbd61eb92afb252dfbdaa94d5b5f14418ce060af7388671ead6a993a6127f5536" + } + ], + "purl": "pkg:npm/which-boxed-primitive@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/which-boxed-primitive@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "which-typed-array", + "version": "1.1.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "c3d738c64c7a98f89dc29ef5f347246167cc9afc698e566e22e74db437f837fb5301407c5496d7db9a99a00b2bb46b983671b0de96b401781b18a441f3f11c78" + } + ], + "purl": "pkg:npm/which-typed-array@1.1.9", + "type": "library", + "bom-ref": "pkg:npm/which-typed-array@1.1.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "which", + "version": "1.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "1f125d616ab53132106c9de7c3472ab2c1e84cd536ebb2a5ac3b866755989710d2b54b4a52139a266875d76fd36661f1c547ee26a3d748e9bbb43c9ab3439221" + } + ], + "purl": "pkg:npm/which@1.3.1", + "type": "library", + "bom-ref": "pkg:npm/which@1.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "which", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "04b2374e5d535b73ef97bd25df2ab763ae22f9ac29c17aac181616924a8cb676d782b303fb28fbae15b492e103c7325a6171a3116e6881aa4a34c10a34c8e26c" + } + ], + "purl": "pkg:npm/which@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/which@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "wildcard", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "25c2aa0072cfc5c75bf4a338f5db9f1979f6c77b2c9df8db71a41d2e57d9b0bf6b1fdc200d08d4b43c5ba3c344d05e9216fc9d7aed558597bb859b87b01dbfa7" + } + ], + "purl": "pkg:npm/wildcard@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/wildcard@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "word-wrap", + "version": "1.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "d95f35380e2e815a39a51a38ea10280f68af509c7c8d79965df524638285370d21129b6f37441f1f72b89c78b0cc678a979ac529e755e3c415a2a61abf2e18a4" + } + ], + "purl": "pkg:npm/word-wrap@1.2.4", + "type": "library", + "bom-ref": "pkg:npm/word-wrap@1.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "wrap-ansi", + "version": "7.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6151888f691a98b493c70e8db198e80717d2c2c9f4c9c75eb26738a7e436d5ce733ee675a65f8d7f155dc4fb5d1ef98d54e43a5d2606e0052dcadfc58bb0f5e9" + } + ], + "purl": "pkg:npm/wrap-ansi@7.0.0", + "type": "library", + "bom-ref": "pkg:npm/wrap-ansi@7.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "wrappy", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + } + ], + "purl": "pkg:npm/wrappy@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/wrappy@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "write-file-atomic", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "02f1dcc99e499d27eade2a12ca3ac1907f725b89bb03293cffd332fc30fda2729ebbff787f0acca1c7a63b64002450259e70cdf990d2f998c0479b9ad7f3d5fd" + } + ], + "purl": "pkg:npm/write-file-atomic@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/write-file-atomic@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "write-file-atomic", + "version": "5.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f90536cdde8e4c3f175882426df7da890787f54ef7a88a9a7e8d71e95d6c9c25981897fa7151347034780fcc51cdc1277c8db5205ad43f33c6b5c3dff000be47" + } + ], + "purl": "pkg:npm/write-file-atomic@5.0.1", + "type": "library", + "bom-ref": "pkg:npm/write-file-atomic@5.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ws", + "version": "7.5.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "04090c15c03397c6acd46fe102b9313b1ab71bba6352a43783361b2cbd3fe73364a61ef47be942a310469e6e805b5fbf6a235e5787e72aa67c9b81997b0987db" + } + ], + "purl": "pkg:npm/ws@7.5.5", + "type": "library", + "bom-ref": "pkg:npm/ws@7.5.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "xml-name-validator", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "039094a6dc43b2fc4a244537c8ee83b96052273fea8b3ab324a38c21f5091c44db070fec15a0f181de9fc66d5ec1468cd23678e3815ce6f0b944e62eae0ff83f" + } + ], + "purl": "pkg:npm/xml-name-validator@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/xml-name-validator@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "xmlchars", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2599c328af01d11083c3ce0535d0c022964af89b89c3eb3b2f3f2792c23b488b94dd45c926c954b61b22fae5815183b03c5c16ed6ecf44b45f50aa718ed8c50b" + } + ], + "purl": "pkg:npm/xmlchars@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/xmlchars@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "xtend", + "version": "4.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "2ca614d620172575200179fd5118e2bbe3168725171ecbdfa7b99cb989bd75250a2b4fc28edad4c050310fcdbf98259bb4bb068c521a774c08b28778ceb4c011" + } + ], + "purl": "pkg:npm/xtend@4.0.2", + "type": "library", + "bom-ref": "pkg:npm/xtend@4.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "y18n", + "version": "5.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "d297c5cde81e0d62472480264cb44fd83c078dd179b3b8e8f6dbb3b5d43102120d09dbd2fb79c620da8f774d00a61a8947fd0b8403544baffeed209bf7c60e7c" + } + ], + "purl": "pkg:npm/y18n@5.0.8", + "type": "library", + "bom-ref": "pkg:npm/y18n@5.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "yallist", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "df074689d672ab93c1d3ce172c44b94e9392440df08d7025216321ba6da445cbffe354a7d9e990d1dc9c416e2e6572de8f02af83a12cbdb76554bf8560472dec" + } + ], + "purl": "pkg:npm/yallist@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/yallist@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "yaml-ast-parser", + "version": "0.0.43", + "hashes": [ + { + "alg": "SHA-512", + "content": "d8f4c8354c2c46a49dfacf17c4a689590954b84307250c84ba1d9e7416d6f0a349cf44893f05120f6cd15aa7b314474dec8cc081eb981c550217ba3ccd1759d0" + } + ], + "purl": "pkg:npm/yaml-ast-parser@0.0.43", + "type": "library", + "bom-ref": "pkg:npm/yaml-ast-parser@0.0.43", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "yaml", + "version": "1.10.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "af7bd7c84ad109827bc20dbccaf058e554a8005f19be5716f7f07053312d52c8ef5ff0cab36e1d224bb08edba9af02491ec6f251b2c0a5ea584d1d41378b87ae" + } + ], + "purl": "pkg:npm/yaml@1.10.2", + "type": "library", + "bom-ref": "pkg:npm/yaml@1.10.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "yargs-parser", + "version": "20.2.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "162364bdb787cc1fecc8e8c85311430a78527f300bf11e6fb38d0c80b141a2b5c008238011a5aed20459975e2f1bc311f403892196e692386eb2a0586771d31f" + } + ], + "purl": "pkg:npm/yargs-parser@20.2.7", + "type": "library", + "bom-ref": "pkg:npm/yargs-parser@20.2.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "yargs-parser", + "version": "20.2.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "cb5d67184953215f824f766ff6ded52a5f90de14d0a13f5ad50cdece1865e91a76d6027f2154d6ed9df2f4459786e5010b64a19dff835f46a7b5e72903048ff3" + } + ], + "purl": "pkg:npm/yargs-parser@20.2.9", + "type": "library", + "bom-ref": "pkg:npm/yargs-parser@20.2.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "yargs-parser", + "version": "21.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f412b58c5a4bcc944e088e53cf064bfd353882a8cae7188757f45f58b39a86b8c0928fdee032644436505dfbea02c899cf3621800cdb833ea5838f23726e062e" + } + ], + "purl": "pkg:npm/yargs-parser@21.0.1", + "type": "library", + "bom-ref": "pkg:npm/yargs-parser@21.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "yargs", + "version": "16.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f59afbed0c6d0be5fb7f8c65a42e91b5fa6d1e43139f681bd33442eb6968f6db049550c5b1654bd880961c2a1ea3186224245847e0864f4214784caa5cf2607" + } + ], + "purl": "pkg:npm/yargs@16.2.0", + "type": "library", + "bom-ref": "pkg:npm/yargs@16.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "yargs", + "version": "17.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c4106e95f09cf18ea02c572b3efb6a2b3f61cfc48ed25d4d8bc1a00de92f057daba341d14089831a78a47dcdf7720cdc6144a771aa6735c6438d51481f77fa29" + } + ], + "purl": "pkg:npm/yargs@17.0.1", + "type": "library", + "bom-ref": "pkg:npm/yargs@17.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "yocto-queue", + "version": "0.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ad592cbec9cd09d27fa2119ceb180fc3237c7a1782c6c88b33c9b1b84fedfe6395a897b03ee3b59a22e94c74224604ca08b7b12f831e00555a82db3b1e6359d9" + } + ], + "purl": "pkg:npm/yocto-queue@0.1.0", + "type": "library", + "bom-ref": "pkg:npm/yocto-queue@0.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "zrender", + "version": "5.4.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d150ce192e7a1a4f43c156f1810cef685880c128574056278d5b15b02b49e263324233019c851936d7f86c13e44a908bde1f75c70b2bd77090e480b56f7e2cd" + } + ], + "purl": "pkg:npm/zrender@5.4.3", + "type": "library", + "bom-ref": "pkg:npm/zrender@5.4.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "zustand", + "version": "4.3.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "4dab79afc8ce306d5572c8fcba574ccaa60a0b9219bd089ff337ad98b1ecf56a19967b531e622834cf13a4b458df51319dcb94bd43977a177492f6a192e1e30f" + } + ], + "purl": "pkg:npm/zustand@4.3.9", + "type": "library", + "bom-ref": "pkg:npm/zustand@4.3.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "zwitch", + "version": "2.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d7138711fe455984a657fd18cf11f94768a56151597ce67a14defe9bf1aa5f404735c7803ecc1c6367894df0ba8677a599ddd97df29638a3bd7b5459a83e9f8" + } + ], + "purl": "pkg:npm/zwitch@2.0.4", + "type": "library", + "bom-ref": "pkg:npm/zwitch@2.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "author": "Hsiaoming Yang ", + "group": "", + "name": "Authlib", + "version": "1.2.1", + "description": "The ultimate Python library in building OAuth and OpenID Connect servers and clients.", + "hashes": [ + { + "alg": "SHA-256", + "content": "c88984ea00149a90e3537c964327da930779afa4564e354edfd98410bea01911" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/authlib@1.2.1", + "type": "library", + "bom-ref": "pkg:pypi/authlib@1.2.1", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "1.3.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "Authlib" + } + ] + }, + { + "author": "Armin Ronacher ", + "group": "", + "name": "Babel", + "version": "2.14.0", + "description": "Internationalization utilities", + "hashes": [ + { + "alg": "SHA-256", + "content": "efb1a25b7118e67ce3a259bed20545c29cb68be8ad2c784c83689981b7a57287" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/babel@2.14.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babel.pocoo.org/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/babel@2.14.0" + }, + { + "author": "Florian Wilhelm ", + "group": "", + "name": "ConfigUpdater", + "version": "3.2", + "description": "Parser like ConfigParser but for updating configuration files", + "hashes": [ + { + "alg": "SHA-256", + "content": "0f65a041627d7693840b4dd743581db4c441c97195298a29d075f91b79539df2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/configupdater@3.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pyscaffold/configupdater" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/configupdater@3.2" + }, + { + "author": "Laurent LAPORTE ", + "group": "", + "name": "Deprecated", + "version": "1.2.14", + "description": "Python @deprecated decorator to deprecate old python classes, functions or methods.", + "hashes": [ + { + "alg": "SHA-256", + "content": "6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/deprecated@1.2.14", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/tantale/deprecated" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/deprecated@1.2.14" + }, + { + "author": "Daniel Vaz Gaspar ", + "group": "", + "name": "Flask-AppBuilder", + "version": "4.3.10", + "description": "Simple and rapid application development framework, built on top of Flask. includes detailed security, auto CRUD generation for your models, google charts and much more.", + "hashes": [ + { + "alg": "SHA-256", + "content": "c0af506e1a68e7ee14f26a16fda829f1a14f8343654c30bdbb1351d23c545df9" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/flask-appbuilder@4.3.10", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/dpgaspar/flask-appbuilder/" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/flask-appbuilder@4.3.10" + }, + { + "author": "Armin Ronacher", + "group": "", + "name": "Flask-Babel", + "version": "2.0.0", + "description": "Adds i18n/l10n support for Flask applications.", + "hashes": [ + { + "alg": "SHA-256", + "content": "e6820a052a8d344e178cdd36dd4bb8aea09b4bda3d5f9fa9f008df2c7f2f5468" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/flask-babel@2.0.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/python-babel/flask-babel" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/flask-babel@2.0.0", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "4.0.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "Flask-Babel" + } + ] + }, + { + "author": "Max Countryman ", + "group": "", + "name": "Flask-Bcrypt", + "version": "1.0.1", + "description": "Brcrypt hashing for Flask.", + "hashes": [ + { + "alg": "SHA-256", + "content": "062fd991dc9118d05ac0583675507b9fe4670e44416c97e0e6819d03d01f808a" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/flask-bcrypt@1.0.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/maxcountryman/flask-bcrypt" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/flask-bcrypt@1.0.1" + }, + { + "author": "Peter Justin ", + "group": "", + "name": "Flask-Caching", + "version": "2.1.0", + "description": "Adds caching support to Flask applications.", + "hashes": [ + { + "alg": "SHA-256", + "content": "f02645a629a8c89800d96dc8f690a574a0d49dcd66c7536badc6d362ba46b716" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/flask-caching@2.1.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pallets-eco/flask-caching" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/flask-caching@2.1.0" + }, + { + "author": "Lily Acadia Gilbert ", + "group": "", + "name": "Flask-JWT-Extended", + "version": "4.6.0", + "description": "Extended JWT integration with Flask", + "hashes": [ + { + "alg": "SHA-256", + "content": "63a28fc9731bcc6c4b8815b6f954b5904caa534fc2ae9b93b1d3ef12930dca95" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/flask-jwt-extended@4.6.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/vimalloc/flask-jwt-extended" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/flask-jwt-extended@4.6.0" + }, + { + "author": "Ali-Akber Saifee ", + "group": "", + "name": "Flask-Limiter", + "version": "3.5.0", + "description": "Rate limiting for flask applications", + "hashes": [ + { + "alg": "SHA-256", + "content": "dbda4174f44e6cb858c6eb75e7488186f2977dd5d33d7028ba1aabf179de1bee" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/flask-limiter@3.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://flask-limiter.readthedocs.org" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/flask-limiter@3.5.0" + }, + { + "author": "Matthew Frazier ", + "group": "", + "name": "Flask-Login", + "version": "0.6.3", + "description": "User authentication and session management for Flask.", + "hashes": [ + { + "alg": "SHA-256", + "content": "849b25b82a436bf830a054e74214074af59097171562ab10bfa999e6b78aae5d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/flask-login@0.6.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/maxcountryman/flask-login" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/flask-login@0.6.3" + }, + { + "group": "", + "name": "Flask-SQLAlchemy", + "version": "2.5.1", + "description": "Add SQLAlchemy support to your Flask application.", + "hashes": [ + { + "alg": "SHA-256", + "content": "f12c3d4cc5cc7fdcc148b9527ea05671718c3ea45d50c7e732cceb33f574b390" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/flask-sqlalchemy@2.5.1", + "type": "framework", + "bom-ref": "pkg:pypi/flask-sqlalchemy@2.5.1", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "3.1.1" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "Flask-SQLAlchemy" + } + ] + }, + { + "author": "Shipeng Feng ", + "group": "", + "name": "Flask-Session", + "version": "0.5.0", + "description": "Server-side session support for Flask", + "hashes": [ + { + "alg": "SHA-256", + "content": "1619bcbc16f04f64e90f8e0b17145ba5c9700090bb1294e889956c1282d58631" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/flask-session@0.5.0", + "type": "framework", + "bom-ref": "pkg:pypi/flask-session@0.5.0" + }, + { + "group": "", + "name": "Flask-WTF", + "version": "1.2.1", + "description": "Form rendering, validation, and CSRF protection for Flask with WTForms.", + "hashes": [ + { + "alg": "SHA-256", + "content": "fa6793f2fb7e812e0fe9743b282118e581fb1b6c45d414b8af05e659bd653287" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/flask-wtf@1.2.1", + "type": "framework", + "bom-ref": "pkg:pypi/flask-wtf@1.2.1" + }, + { + "group": "", + "name": "Flask", + "version": "2.2.5", + "description": "A simple framework for building complex web applications.", + "hashes": [ + { + "alg": "SHA-256", + "content": "58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/flask@2.2.5", + "type": "framework", + "bom-ref": "pkg:pypi/flask@2.2.5", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "3.0.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "Flask" + } + ] + }, + { + "author": "Armin Ronacher ", + "group": "", + "name": "Jinja2", + "version": "3.1.2", + "description": "A very fast and expressive template engine.", + "hashes": [ + { + "alg": "SHA-256", + "content": "6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/jinja2@3.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://palletsprojects.com/p/jinja/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/jinja2@3.1.2" + }, + { + "author": "Mike Bayer ", + "group": "", + "name": "Mako", + "version": "1.3.0", + "description": "A super-fast templating language that borrows the best ideas from the existing templating languages.", + "hashes": [ + { + "alg": "SHA-256", + "content": "57d4e997349f1a92035aa25c17ace371a4213f2ca42f99bee9a602500cfd54d9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/mako@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://www.makotemplates.org/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/mako@1.3.0" + }, + { + "author": "Manfred Stienstra, Yuri Takhteyev >", + "group": "", + "name": "Markdown", + "version": "3.5.1", + "description": "Python implementation of John Gruber's Markdown.", + "hashes": [ + { + "alg": "SHA-256", + "content": "5874b47d4ee3f0b14d764324d2c94c03ea66bee56f2d929da9f2508d65e722dc" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/markdown@3.5.1", + "type": "library", + "bom-ref": "pkg:pypi/markdown@3.5.1" + }, + { + "group": "", + "name": "MarkupSafe", + "version": "2.1.3", + "description": "Safely add untrusted strings to HTML/XML markup.", + "hashes": [ + { + "alg": "SHA-256", + "content": "cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/markupsafe@2.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://palletsprojects.com/p/markupsafe/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/markupsafe@2.1.3" + }, + { + "author": "Jose Padilla ", + "group": "", + "name": "PyJWT", + "version": "2.8.0", + "description": "JSON Web Token implementation in Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pyjwt@2.8.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/jpadilla/pyjwt" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pyjwt@2.8.0" + }, + { + "author": "Kirill Simonov ", + "group": "", + "name": "PyYAML", + "version": "6.0.1", + "description": "YAML parser and emitter for Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pyyaml@6.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://pyyaml.org/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pyyaml@6.0.1" + }, + { + "author": "Georg Brandl ", + "group": "", + "name": "Pygments", + "version": "2.17.2", + "description": "Pygments is a syntax highlighting package written in Python.", + "hashes": [ + { + "alg": "SHA-256", + "content": "b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-2-Clause", + "url": "https://opensource.org/licenses/BSD-2-Clause" + } + } + ], + "purl": "pkg:pypi/pygments@2.17.2", + "type": "library", + "bom-ref": "pkg:pypi/pygments@2.17.2" + }, + { + "author": "Alexey Stepanov ", + "group": "", + "name": "SQLAlchemy-JSONField", + "version": "1.0.2", + "description": "SQLALchemy JSONField implementation for storing dicts at SQL", + "hashes": [ + { + "alg": "SHA-256", + "content": "b2945fa1e60b07d5764a7c73b18da427948b35dd4c07c0e94939001dc2dacf77" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/sqlalchemy-jsonfield@1.0.2", + "type": "library", + "bom-ref": "pkg:pypi/sqlalchemy-jsonfield@1.0.2" + }, + { + "author": "Konsta Vesterinen, Ryan Leckey, Janne Vanhala, Vesa Uimonen ", + "group": "", + "name": "SQLAlchemy-Utils", + "version": "0.41.1", + "description": "Various utility functions for SQLAlchemy.", + "hashes": [ + { + "alg": "SHA-256", + "content": "6c96b0768ea3f15c0dc56b363d386138c562752b84f647fb8d31a2223aaab801" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/sqlalchemy-utils@0.41.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/kvesteri/sqlalchemy-utils" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/sqlalchemy-utils@0.41.1" + }, + { + "author": "Mike Bayer ", + "group": "", + "name": "SQLAlchemy", + "version": "1.4.50", + "description": "Database Abstraction Library", + "hashes": [ + { + "alg": "SHA-256", + "content": "d00665725063692c42badfd521d0c4392e83c6c826795d38eb88fb108e5660e5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/sqlalchemy@1.4.50", + "externalReferences": [ + { + "type": "website", + "url": "https://www.sqlalchemy.org" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/sqlalchemy@1.4.50", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "2.0.23" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "SQLAlchemy" + } + ] + }, + { + "group": "", + "name": "WTForms", + "version": "3.1.1", + "description": "Form validation and rendering for Python web development.", + "hashes": [ + { + "alg": "SHA-256", + "content": "ae7c54b29806c70f7bce8eb9f24afceb10ca5c32af3d9f04f74d2f66ccc5c7e0" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/wtforms@3.1.1", + "type": "library", + "bom-ref": "pkg:pypi/wtforms@3.1.1" + }, + { + "group": "", + "name": "Werkzeug", + "version": "2.2.3", + "description": "The comprehensive WSGI web application library.", + "hashes": [ + { + "alg": "SHA-256", + "content": "56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/werkzeug@2.2.3", + "type": "library", + "bom-ref": "pkg:pypi/werkzeug@2.2.3", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "3.0.1" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "Werkzeug" + } + ] + }, + { + "author": "Nikolay Novik ", + "group": "", + "name": "aiobotocore", + "version": "2.9.0", + "description": "Async client for aws services using botocore and aiohttp", + "hashes": [ + { + "alg": "SHA-256", + "content": "acf5e49644e6e434b9ecc26284ae7e05d557effbdcdd8185e2eb08925f011853" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/aiobotocore@2.9.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/aio-libs/aiobotocore" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/aiobotocore@2.9.0" + }, + { + "author": "Tin Tvrtkovic ", + "group": "", + "name": "aiofiles", + "version": "23.2.1", + "description": "File support for asyncio.", + "hashes": [ + { + "alg": "SHA-256", + "content": "19297512c647d4b27a2cf7c34caa7e405c0d60b5560618a29a9fe027b18b0107" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/aiofiles@23.2.1", + "type": "library", + "bom-ref": "pkg:pypi/aiofiles@23.2.1" + }, + { + "group": "", + "name": "aiohttp", + "version": "3.9.1", + "description": "Async http client/server framework (asyncio)", + "hashes": [ + { + "alg": "SHA-256", + "content": "e1f80197f8b0b846a8d5cf7b7ec6084493950d0882cc5537fb7b96a69e3c8590" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/aiohttp@3.9.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/aio-libs/aiohttp" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/aiohttp@3.9.1" + }, + { + "author": "Amethyst Reese ", + "group": "", + "name": "aioitertools", + "version": "0.11.0", + "description": "itertools and builtins for AsyncIO and mixed iterables", + "hashes": [ + { + "alg": "SHA-256", + "content": "04b95e3dab25b449def24d7df809411c10e62aab0cbe31a50ca4e68748c43394" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/aioitertools@0.11.0", + "externalReferences": [ + { + "type": "website", + "url": "https://aioitertools.omnilib.dev" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/aioitertools@0.11.0" + }, + { + "group": "", + "name": "aiosignal", + "version": "1.3.1", + "description": "aiosignal: a list of registered asynchronous callbacks", + "hashes": [ + { + "alg": "SHA-256", + "content": "f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/aiosignal@1.3.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/aio-libs/aiosignal" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/aiosignal@1.3.1" + }, + { + "author": "Mike Bayer ", + "group": "", + "name": "alembic", + "version": "1.13.0", + "description": "A database migration tool for SQLAlchemy.", + "hashes": [ + { + "alg": "SHA-256", + "content": "a23974ea301c3ee52705db809c7413cecd165290c6679b9998dd6c74342ca23a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/alembic@1.13.0", + "externalReferences": [ + { + "type": "website", + "url": "https://alembic.sqlalchemy.org" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/alembic@1.13.0" + }, + { + "author": "Barry Pederson ", + "group": "", + "name": "amqp", + "version": "5.2.0", + "description": "Low-level AMQP client for Python (fork of amqplib).", + "hashes": [ + { + "alg": "SHA-256", + "content": "827cb12fb0baa892aad844fd95258143bce4027fdac4fccddbc43330fd281637" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/amqp@5.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "http://github.com/celery/py-amqp" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/amqp@5.2.0" + }, + { + "author": "Samuel Colvin , Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>, Zac Hatfield-Dodds ", + "group": "", + "name": "annotated-types", + "version": "0.6.0", + "description": "Reusable constraint types to use with typing.Annotated", + "hashes": [ + { + "alg": "SHA-256", + "content": "0641064de18ba7a25dee8f96403ebc39113d0cb953a01429249d5c7564666a43" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/annotated-types@0.6.0", + "type": "library", + "bom-ref": "pkg:pypi/annotated-types@0.6.0" + }, + { + "author": "Alex Grönholm ", + "group": "", + "name": "anyio", + "version": "4.1.0", + "description": "High level compatibility layer for multiple asynchronous event loop implementations", + "hashes": [ + { + "alg": "SHA-256", + "content": "56a415fbc462291813a94528a779597226619c8e78af7de0507333f700011e5f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/anyio@4.1.0", + "type": "library", + "bom-ref": "pkg:pypi/anyio@4.1.0", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "4.2.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "anyio" + } + ] + }, + { + "author": "Steven Loria ", + "group": "", + "name": "apispec", + "version": "6.3.0", + "description": "A pluggable API specification generator. Currently supports the OpenAPI Specification (f.k.a. the Swagger specification).", + "hashes": [ + { + "alg": "SHA-256", + "content": "95a0b9355785df998bb0e9b939237a30ee4c7428fd6ef97305eae3da06b9b339" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/apispec@6.3.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/marshmallow-code/apispec" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/apispec@6.3.0" + }, + { + "author": "Andrey Kislyuk ", + "group": "", + "name": "argcomplete", + "version": "3.2.1", + "description": "Bash tab completion for argparse", + "hashes": [ + { + "alg": "SHA-256", + "content": "30891d87f3c1abe091f2142613c9d33cac84a5e15404489f033b20399b691fec" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/argcomplete@3.2.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/kislyuk/argcomplete" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/argcomplete@3.2.1" + }, + { + "author": "Django Software Foundation ", + "group": "", + "name": "asgiref", + "version": "3.7.2", + "description": "ASGI specs, helper code, and adapters", + "hashes": [ + { + "alg": "SHA-256", + "content": "89b2ef2247e3b562a16eef663bc0e2e703ec6468e2fa8a5cd61cd449786d4f6e" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/asgiref@3.7.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/django/asgiref/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/asgiref@3.7.2" + }, + { + "author": "Andrew Svetlov ", + "group": "", + "name": "async-timeout", + "version": "4.0.3", + "description": "Timeout context manager for asyncio programs", + "hashes": [ + { + "alg": "SHA-256", + "content": "7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/async-timeout@4.0.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/aio-libs/async-timeout" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/async-timeout@4.0.3" + }, + { + "author": "Hynek Schlawack ", + "group": "", + "name": "attrs", + "version": "23.1.0", + "description": "Classes Without Boilerplate", + "hashes": [ + { + "alg": "SHA-256", + "content": "1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/attrs@23.1.0", + "type": "library", + "bom-ref": "pkg:pypi/attrs@23.1.0" + }, + { + "author": "Bob Green ", + "group": "", + "name": "backoff", + "version": "2.2.1", + "description": "Function decoration for backoff and retry", + "hashes": [ + { + "alg": "SHA-256", + "content": "63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/backoff@2.2.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/litl/backoff" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/backoff@2.2.1" + }, + { + "author": "The Python Cryptographic Authority developers ", + "group": "", + "name": "bcrypt", + "version": "4.1.2", + "description": "Modern password hashing for your software and your servers", + "hashes": [ + { + "alg": "SHA-256", + "content": "ac621c093edb28200728a9cca214d7e838529e557027ef0581685909acd28b5e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/bcrypt@4.1.2", + "type": "library", + "bom-ref": "pkg:pypi/bcrypt@4.1.2" + }, + { + "author": "R Oudkerk / Python Software Foundation ", + "group": "", + "name": "billiard", + "version": "4.2.0", + "description": "Python multiprocessing fork with improvements and bugfixes", + "hashes": [ + { + "alg": "SHA-256", + "content": "07aa978b308f334ff8282bd4a746e681b3513db5c9a514cbdd810cbbdc19714d" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/billiard@4.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/celery/billiard" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/billiard@4.2.0" + }, + { + "author": "Jason Kirtland ", + "group": "", + "name": "blinker", + "version": "1.7.0", + "description": "Fast, simple object-to-object and broadcast signaling", + "hashes": [ + { + "alg": "SHA-256", + "content": "c3f865d4d54db7abc53758a01601cf343fe55b84c1de4e3fa910e420b438d5b9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/blinker@1.7.0", + "type": "library", + "bom-ref": "pkg:pypi/blinker@1.7.0" + }, + { + "author": "Amazon Web Services", + "group": "", + "name": "botocore", + "version": "1.33.13", + "description": "Low-level, data-driven core of boto 3.", + "hashes": [ + { + "alg": "SHA-256", + "content": "aeadccf4b7c674c7d47e713ef34671b834bc3e89723ef96d994409c9f54666e6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/botocore@1.33.13", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/boto/botocore" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/botocore@1.33.13", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "1.34.2" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "botocore" + } + ] + }, + { + "group": "", + "name": "cachelib", + "version": "0.9.0", + "description": "A collection of cache libraries in the same API interface.", + "hashes": [ + { + "alg": "SHA-256", + "content": "811ceeb1209d2fe51cd2b62810bd1eccf70feba5c52641532498be5c675493b3" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/cachelib@0.9.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pallets-eco/cachelib/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/cachelib@0.9.0", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "0.10.2" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "cachelib" + } + ] + }, + { + "author": "Thomas Kemmer ", + "group": "", + "name": "cachetools", + "version": "5.3.2", + "description": "Extensible memoizing collections and decorators", + "hashes": [ + { + "alg": "SHA-256", + "content": "861f35a13a451f94e301ce2bec7cac63e881232ccce7ed67fab9b5df4d3beaa1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/cachetools@5.3.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/tkem/cachetools/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/cachetools@5.3.2" + }, + { + "author": "Ask Solem ", + "group": "", + "name": "celery", + "version": "5.3.6", + "description": "Distributed Task Queue.", + "hashes": [ + { + "alg": "SHA-256", + "content": "9da4ea0118d232ce97dff5ed4974587fb1c0ff5c10042eb15278487cdd27d1af" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/celery@5.3.6", + "externalReferences": [ + { + "type": "website", + "url": "https://docs.celeryq.dev/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/celery@5.3.6" + }, + { + "author": "Kenneth Reitz ", + "group": "", + "name": "certifi", + "version": "2023.11.17", + "description": "Python package for providing Mozilla's CA Bundle.", + "hashes": [ + { + "alg": "SHA-256", + "content": "e036ab49d5b79556f99cfc2d9320b34cfbe5be05c5871b51de9329f0603b0474" + } + ], + "licenses": [ + { + "license": { + "id": "MPL-2.0", + "url": "https://opensource.org/licenses/MPL-2.0" + } + } + ], + "purl": "pkg:pypi/certifi@2023.11.17", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/certifi/python-certifi" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/certifi@2023.11.17" + }, + { + "author": "Armin Rigo, Maciej Fijalkowski ", + "group": "", + "name": "cffi", + "version": "1.16.0", + "description": "Foreign Function Interface for Python calling C code.", + "hashes": [ + { + "alg": "SHA-256", + "content": "6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/cffi@1.16.0", + "externalReferences": [ + { + "type": "website", + "url": "http://cffi.readthedocs.org" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/cffi@1.16.0" + }, + { + "author": "CloudSigma AG ", + "group": "", + "name": "cgroupspy", + "version": "0.2.2", + "description": "Python library for managing cgroups", + "hashes": [ + { + "alg": "SHA-256", + "content": "d42b4666b852e65e20b8864747fe86e27c04d3b09d44c76f18cca9b12c957475" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "name": "New BSD" + } + } + ], + "purl": "pkg:pypi/cgroupspy@0.2.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/cloudsigma/cgroupspy" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/cgroupspy@0.2.2" + }, + { + "author": "Ahmed TAHRI ", + "group": "", + "name": "charset-normalizer", + "version": "3.3.2", + "description": "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet.", + "hashes": [ + { + "alg": "SHA-256", + "content": "25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/charset-normalizer@3.3.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/Ousret/charset_normalizer" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/charset-normalizer@3.3.2" + }, + { + "author": "Timo Furrer ", + "group": "", + "name": "click-didyoumean", + "version": "0.3.0", + "description": "Enables git-like *did-you-mean* feature in click", + "hashes": [ + { + "alg": "SHA-256", + "content": "a0713dc7a1de3f06bc0df5a9567ad19ead2d3d5689b434768a6145bff77c0667" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/click-didyoumean@0.3.0", + "type": "library", + "bom-ref": "pkg:pypi/click-didyoumean@0.3.0" + }, + { + "author": "Kevin Wurster, Sean Gillies ", + "group": "", + "name": "click-plugins", + "version": "1.1.1", + "description": "An extension module for click to enable registering CLI commands via setuptools entry-points.", + "hashes": [ + { + "alg": "SHA-256", + "content": "5d262006d3222f5057fd81e1623d4443e41dcda5dc815c06b442aa3c02889fc8" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "name": "New BSD" + } + } + ], + "purl": "pkg:pypi/click-plugins@1.1.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/click-contrib/click-plugins" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/click-plugins@1.1.1" + }, + { + "author": "Markus Unterwaditzer ", + "group": "", + "name": "click-repl", + "version": "0.3.0", + "description": "REPL plugin for Click", + "hashes": [ + { + "alg": "SHA-256", + "content": "fb7e06deb8da8de86180a33a9da97ac316751c094c6899382da7feeeeb51b812" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/click-repl@0.3.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/untitaker/click-repl" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/click-repl@0.3.0" + }, + { + "group": "", + "name": "click", + "version": "8.1.7", + "description": "Composable command line interface toolkit", + "hashes": [ + { + "alg": "SHA-256", + "content": "ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/click@8.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://palletsprojects.com/p/click/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/click@8.1.7" + }, + { + "author": "Henning Jacobs ", + "group": "", + "name": "clickclick", + "version": "20.10.2", + "description": "Click utility functions", + "hashes": [ + { + "alg": "SHA-256", + "content": "c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/clickclick@20.10.2", + "externalReferences": [ + { + "type": "website", + "url": "https://codeberg.org/hjacobs/python-clickclick" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/clickclick@20.10.2" + }, + { + "author": "Jonathan Hartley ", + "group": "", + "name": "colorama", + "version": "0.4.6", + "description": "Cross-platform colored terminal text.", + "hashes": [ + { + "alg": "SHA-256", + "content": "4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/colorama@0.4.6", + "type": "library", + "bom-ref": "pkg:pypi/colorama@0.4.6" + }, + { + "author": "Sam Clements ", + "group": "", + "name": "colorlog", + "version": "4.8.0", + "description": "Add colours to the output of Python's logging module.", + "hashes": [ + { + "alg": "SHA-256", + "content": "3dd15cb27e8119a24c1a7b5c93f9f3b455855e0f73993b1c25921b2f646f1dcd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/colorlog@4.8.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/borntyping/python-colorlog" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/colorlog@4.8.0", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "6.8.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "colorlog" + } + ] + }, + { + "author": "Robbe Sneyders ", + "group": "", + "name": "connexion", + "version": "2.14.2", + "description": "Connexion - API first applications with OpenAPI/Swagger", + "hashes": [ + { + "alg": "SHA-256", + "content": "a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/connexion@2.14.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/spec-first/connexion" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/connexion@2.14.2", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "3.0.5" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "connexion" + } + ] + }, + { + "author": "Adam Schubert ", + "group": "", + "name": "cron-descriptor", + "version": "1.4.0", + "description": "A Python library that converts cron expressions into human readable strings.", + "hashes": [ + { + "alg": "SHA-256", + "content": "b6ff4e3a988d7ca04a4ab150248e9f166fb7a5c828a85090e75bcc25aa93b4dd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/cron-descriptor@1.4.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/Salamek/cron-descriptor" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/cron-descriptor@1.4.0" + }, + { + "author": "Matsumoto Taichi, kiorky ", + "group": "", + "name": "croniter", + "version": "2.0.1", + "description": "croniter provides iteration for datetime object with cron like format", + "hashes": [ + { + "alg": "SHA-256", + "content": "4cb064ce2d8f695b3b078be36ff50115cf8ac306c10a7e8653ee2a5b534673d7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/croniter@2.0.1", + "externalReferences": [ + { + "type": "vcs", + "url": "http://github.com/kiorky/croniter" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/croniter@2.0.1" + }, + { + "author": "The Python Cryptographic Authority and individual contributors ", + "group": "", + "name": "cryptography", + "version": "41.0.7", + "description": "cryptography is a package which provides cryptographic recipes and primitives to Python developers.", + "hashes": [ + { + "alg": "SHA-256", + "content": "3c78451b78313fa81607fa1b3f1ae0a5ddd8014c38a02d9db0616133987b9cdf" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + }, + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "name": "Apache-2.0 OR BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/cryptography@41.0.7", + "type": "library", + "bom-ref": "pkg:pypi/cryptography@41.0.7" + }, + { + "author": "Michele Simionato ", + "group": "", + "name": "decorator", + "version": "5.1.1", + "description": "Decorators for Humans", + "hashes": [ + { + "alg": "SHA-256", + "content": "b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/decorator@5.1.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/micheles/decorator" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/decorator@5.1.1" + }, + { + "author": "Mike McKerns ", + "group": "", + "name": "dill", + "version": "0.3.7", + "description": "serialize all of Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "76b122c08ef4ce2eedcd4d1abd8e641114bfc6c2867f49f3c41facf65bf19f5e" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/dill@0.3.7", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/uqfoundation/dill" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/dill@0.3.7" + }, + { + "author": "Vinay Sajip ", + "group": "", + "name": "distlib", + "version": "0.3.8", + "description": "Distribution utilities", + "hashes": [ + { + "alg": "SHA-256", + "content": "034db59a0b96f8ca18035f36290806a9a6e6bd9d1ff91e45a7f172eb17e51784" + } + ], + "licenses": [ + { + "license": { + "id": "PSF-2.0", + "url": "https://opensource.org/licenses/PSF-2.0" + } + } + ], + "purl": "pkg:pypi/distlib@0.3.8", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pypa/distlib" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/distlib@0.3.8" + }, + { + "author": "Bob Halley ", + "group": "", + "name": "dnspython", + "version": "2.4.2", + "description": "DNS toolkit", + "hashes": [ + { + "alg": "SHA-256", + "content": "57c6fbaaeaaf39c891292012060beb141791735dbb4004798328fc2c467402d8" + } + ], + "licenses": [ + { + "license": { + "name": "OSI Approved" + } + }, + { + "license": { + "id": "ISC", + "url": "https://opensource.org/licenses/ISC" + } + } + ], + "purl": "pkg:pypi/dnspython@2.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://www.dnspython.org" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/dnspython@2.4.2" + }, + { + "author": "David Goodger ", + "group": "", + "name": "docutils", + "version": "0.20.1", + "description": "Docutils -- Python Documentation Utilities", + "hashes": [ + { + "alg": "SHA-256", + "content": "96f387a2c5562db4476f09f13bbab2192e764cac08ebbf3a34a95d9b1e4a59d6" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "name": "GNU General Public License (GPL)" + } + }, + { + "license": { + "id": "PSF-2.0", + "url": "https://opensource.org/licenses/PSF-2.0" + } + }, + { + "license": { + "name": "Public Domain" + } + }, + { + "license": { + "name": "public domain, Python, 2-Clause BSD, GPL 3 (see COPYING.txt)" + } + } + ], + "purl": "pkg:pypi/docutils@0.20.1", + "externalReferences": [ + { + "type": "website", + "url": "https://docutils.sourceforge.io/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/docutils@0.20.1" + }, + { + "author": "Joshua Tauberer ", + "group": "", + "name": "email-validator", + "version": "1.3.1", + "description": "A robust email address syntax and deliverability validation library.", + "hashes": [ + { + "alg": "SHA-256", + "content": "49a72f5fa6ed26be1c964f0567d931d10bf3fdeeacdf97bc26ef1cd2a44e0bda" + } + ], + "licenses": [ + { + "license": { + "name": "CC0 1.0 Universal (CC0 1.0) Public Domain Dedication" + } + }, + { + "license": { + "name": "CC0 (copyright waived)" + } + } + ], + "purl": "pkg:pypi/email-validator@1.3.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/JoshData/python-email-validator" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/email-validator@1.3.1", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "2.1.0.post1" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "email-validator" + } + ] + }, + { + "author": "Linden Lab ", + "group": "", + "name": "eventlet", + "version": "0.33.3", + "description": "Highly concurrent networking library", + "hashes": [ + { + "alg": "SHA-256", + "content": "e43b9ae05ba4bb477a10307699c9aff7ff86121b2640f9184d29059f5a687df8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/eventlet@0.33.3", + "externalReferences": [ + { + "type": "website", + "url": "http://eventlet.net" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/eventlet@0.33.3" + }, + { + "author": "Alex Grönholm ", + "group": "", + "name": "exceptiongroup", + "version": "1.2.0", + "description": "Backport of PEP 654 (exception groups)", + "hashes": [ + { + "alg": "SHA-256", + "content": "4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/exceptiongroup@1.2.0", + "type": "library", + "bom-ref": "pkg:pypi/exceptiongroup@1.2.0" + }, + { + "group": "", + "name": "filelock", + "version": "3.13.1", + "description": "A platform independent file lock.", + "hashes": [ + { + "alg": "SHA-256", + "content": "57dbda9b35157b05fb3e58ee91448612eb674172fab98ee235ccb0b5bee19a1c" + } + ], + "licenses": [ + { + "license": { + "name": "The Unlicense (Unlicense)" + } + } + ], + "purl": "pkg:pypi/filelock@3.13.1", + "type": "library", + "bom-ref": "pkg:pypi/filelock@3.13.1" + }, + { + "author": "Mher Movsisyan ", + "group": "", + "name": "flower", + "version": "2.0.1", + "description": "Celery Flower", + "hashes": [ + { + "alg": "SHA-256", + "content": "9db2c621eeefbc844c8dd88be64aef61e84e2deb29b271e02ab2b5b9f01068e2" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/flower@2.0.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/mher/flower" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/flower@2.0.1" + }, + { + "group": "", + "name": "frozenlist", + "version": "1.4.1", + "description": "A list-like structure which implements collections.abc.MutableSequence", + "hashes": [ + { + "alg": "SHA-256", + "content": "f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/frozenlist@1.4.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/aio-libs/frozenlist" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/frozenlist@1.4.1" + }, + { + "group": "", + "name": "fsspec", + "version": "2023.12.2", + "description": "File-system specification", + "hashes": [ + { + "alg": "SHA-256", + "content": "d800d87f72189a745fa3d6b033b9dc4a34ad069f60ca60b943a63599f5501960" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/fsspec@2023.12.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/fsspec/filesystem_spec" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/fsspec@2023.12.2" + }, + { + "author": "Denis Bilenko ", + "group": "", + "name": "gevent", + "version": "23.9.1", + "description": "Coroutine-based network library", + "hashes": [ + { + "alg": "SHA-256", + "content": "a3c5e9b1f766a7a64833334a18539a362fb563f6c4682f9634dea72cbe24f771" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/gevent@23.9.1", + "externalReferences": [ + { + "type": "website", + "url": "http://www.gevent.org/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/gevent@23.9.1" + }, + { + "author": "Google Cloud Platform ", + "group": "", + "name": "google-auth", + "version": "2.25.2", + "description": "Google Authentication Library", + "hashes": [ + { + "alg": "SHA-256", + "content": "473a8dfd0135f75bb79d878436e568f2695dce456764bf3a02b6f8c540b1d256" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/google-auth@2.25.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/googleapis/google-auth-library-python" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/google-auth@2.25.2" + }, + { + "author": "The RE2 Authors ", + "group": "", + "name": "google-re2", + "version": "1.1", + "description": "RE2 Python bindings", + "hashes": [ + { + "alg": "SHA-256", + "content": "874d2e36dfa506b03d4f9c4aef1701a65304f4004c96c7edac7d8aea08fe193e" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/google-re2@1.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/google/re2" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/google-re2@1.1" + }, + { + "author": "Google LLC ", + "group": "", + "name": "googleapis-common-protos", + "version": "1.62.0", + "description": "Common protobufs used in Google APIs", + "hashes": [ + { + "alg": "SHA-256", + "content": "4750113612205514f9f6aa4cb00d523a94f3e8c06c5ad2fee466387dc4875f07" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/googleapis-common-protos@1.62.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/googleapis/python-api-common-protos" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/googleapis-common-protos@1.62.0" + }, + { + "author": "Sebastian Bank ", + "group": "", + "name": "graphviz", + "version": "0.20.1", + "description": "Simple Python interface for Graphviz", + "hashes": [ + { + "alg": "SHA-256", + "content": "587c58a223b51611c0cf461132da386edd896a029524ca61a1462b880bf97977" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/graphviz@0.20.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/xflr6/graphviz" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/graphviz@0.20.1" + }, + { + "author": "Alexey Borzenkov ", + "group": "", + "name": "greenlet", + "version": "3.0.2", + "description": "Lightweight in-process concurrent programming", + "hashes": [ + { + "alg": "SHA-256", + "content": "9acd8fd67c248b8537953cb3af8787c18a87c33d4dcf6830e410ee1f95a63fd4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/greenlet@3.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://greenlet.readthedocs.io/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/greenlet@3.0.2" + }, + { + "author": "The gRPC Authors ", + "group": "", + "name": "grpcio-status", + "version": "1.60.0", + "description": "Status proto mapping for gRPC", + "hashes": [ + { + "alg": "SHA-256", + "content": "7d383fa36e59c1e61d380d91350badd4d12ac56e4de2c2b831b050362c3c572e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/grpcio-status@1.60.0", + "externalReferences": [ + { + "type": "website", + "url": "https://grpc.io" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/grpcio-status@1.60.0" + }, + { + "author": "The gRPC Authors ", + "group": "", + "name": "grpcio", + "version": "1.60.0", + "description": "HTTP/2-based RPC framework", + "hashes": [ + { + "alg": "SHA-256", + "content": "d020cfa595d1f8f5c6b343530cd3ca16ae5aefdd1e832b777f9f0eb105f5b139" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/grpcio@1.60.0", + "externalReferences": [ + { + "type": "website", + "url": "https://grpc.io" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/grpcio@1.60.0" + }, + { + "author": "The Python GSSAPI Team ", + "group": "", + "name": "gssapi", + "version": "1.8.3", + "description": "Python GSSAPI Wrapper", + "hashes": [ + { + "alg": "SHA-256", + "content": "4e4a83e9b275fe69b5d40be6d5479889866b80333a12c51a9243f2712d4f0554" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "url": "https://opensource.org/licenses/ISC" + } + }, + { + "license": { + "name": "LICENSE.txt" + } + } + ], + "purl": "pkg:pypi/gssapi@1.8.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pythongssapi/python-gssapi" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/gssapi@1.8.3" + }, + { + "author": "Benoit Chesneau ", + "group": "", + "name": "gunicorn", + "version": "21.2.0", + "description": "WSGI HTTP Server for UNIX", + "hashes": [ + { + "alg": "SHA-256", + "content": "3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/gunicorn@21.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://gunicorn.org" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/gunicorn@21.2.0" + }, + { + "author": "Nathaniel J. Smith ", + "group": "", + "name": "h11", + "version": "0.14.0", + "description": "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1", + "hashes": [ + { + "alg": "SHA-256", + "content": "e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/h11@0.14.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/python-hyper/h11" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/h11@0.14.0" + }, + { + "author": "Tom Christie ", + "group": "", + "name": "httpcore", + "version": "1.0.2", + "description": "A minimal low-level HTTP client.", + "hashes": [ + { + "alg": "SHA-256", + "content": "096cc05bca73b8e459a1fc3dcf585148f63e534eae4339559c9b8a8d6399acc7" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/httpcore@1.0.2", + "type": "library", + "bom-ref": "pkg:pypi/httpcore@1.0.2" + }, + { + "author": "Tom Christie ", + "group": "", + "name": "httpx", + "version": "0.25.2", + "description": "The next generation HTTP client.", + "hashes": [ + { + "alg": "SHA-256", + "content": "a05d3d052d9b2dfce0e3896636467f8a5342fb2b902c819428e1ac65413ca118" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/httpx@0.25.2", + "type": "library", + "bom-ref": "pkg:pypi/httpx@0.25.2" + }, + { + "author": "Jason Moiron ", + "group": "", + "name": "humanize", + "version": "4.9.0", + "description": "Python humanize utilities", + "hashes": [ + { + "alg": "SHA-256", + "content": "ce284a76d5b1377fd8836733b983bfb0b76f1aa1c090de2566fcf008d7f6ab16" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/humanize@4.9.0", + "type": "library", + "bom-ref": "pkg:pypi/humanize@4.9.0" + }, + { + "author": "Kim Davies ", + "group": "", + "name": "idna", + "version": "3.6", + "description": "Internationalized Domain Names in Applications (IDNA)", + "hashes": [ + { + "alg": "SHA-256", + "content": "c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/idna@3.6", + "type": "library", + "bom-ref": "pkg:pypi/idna@3.6" + }, + { + "author": "Jason R. Coombs ", + "group": "", + "name": "importlib-metadata", + "version": "6.11.0", + "description": "Read metadata from Python packages", + "hashes": [ + { + "alg": "SHA-256", + "content": "f0afba6205ad8f8947c7d338b5342d5db2afbfd82f9cbef7879a9539cc12eb9b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/importlib-metadata@6.11.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/python/importlib_metadata" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/importlib-metadata@6.11.0", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "7.0.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "importlib-metadata" + } + ] + }, + { + "author": "Barry Warsaw ", + "group": "", + "name": "importlib-resources", + "version": "6.1.1", + "description": "Read resources from Python packages", + "hashes": [ + { + "alg": "SHA-256", + "content": "e8bf90d8213b486f428c9c39714b920041cb02c184686a3dee24905aaa8105d6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/importlib-resources@6.1.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/python/importlib_resources" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/importlib-resources@6.1.1" + }, + { + "author": "Janne Vanhala ", + "group": "", + "name": "inflection", + "version": "0.5.1", + "description": "A port of Ruby on Rails inflector to Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/inflection@0.5.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/jpvanhal/inflection" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/inflection@0.5.1" + }, + { + "author": "Gerhard Weis ", + "group": "", + "name": "isodate", + "version": "0.6.1", + "description": "An ISO 8601 date/time/duration parser and formatter", + "hashes": [ + { + "alg": "SHA-256", + "content": "0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/isodate@0.6.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/gweis/isodate/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/isodate@0.6.1" + }, + { + "author": "Armin Ronacher ", + "group": "", + "name": "itsdangerous", + "version": "2.1.2", + "description": "Safely pass data to untrusted environments and back.", + "hashes": [ + { + "alg": "SHA-256", + "content": "2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/itsdangerous@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://palletsprojects.com/p/itsdangerous/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/itsdangerous@2.1.2" + }, + { + "author": "James Saryerwinnie ", + "group": "", + "name": "jmespath", + "version": "1.0.1", + "description": "JSON Matching Expressions", + "hashes": [ + { + "alg": "SHA-256", + "content": "02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/jmespath@1.0.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/jmespath/jmespath.py" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/jmespath@1.0.1" + }, + { + "author": "Julian Berman ", + "group": "", + "name": "jsonschema-specifications", + "version": "2023.11.2", + "description": "The JSON Schema meta-schemas and vocabularies, exposed as a Registry", + "hashes": [ + { + "alg": "SHA-256", + "content": "e74ba7c0a65e8cb49dc26837d6cfe576557084a8b423ed16a420984228104f93" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/jsonschema-specifications@2023.11.2", + "type": "library", + "bom-ref": "pkg:pypi/jsonschema-specifications@2023.11.2" + }, + { + "author": "Julian Berman ", + "group": "", + "name": "jsonschema", + "version": "4.20.0", + "description": "An implementation of JSON Schema validation for Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "ed6231f0429ecf966f5bc8dfef245998220549cbbcf140f913b7464c52c3b6b3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/jsonschema@4.20.0", + "type": "library", + "bom-ref": "pkg:pypi/jsonschema@4.20.0" + }, + { + "author": "Ask Solem ", + "group": "", + "name": "kombu", + "version": "5.3.4", + "description": "Messaging library for Python.", + "hashes": [ + { + "alg": "SHA-256", + "content": "63bb093fc9bb80cfb3a0972336a5cec1fa7ac5f9ef7e8237c6bf8dda9469313e" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/kombu@5.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://kombu.readthedocs.io" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/kombu@5.3.4" + }, + { + "author": "Jordan Borean ", + "group": "", + "name": "krb5", + "version": "0.5.1", + "description": "Kerberos API bindings for Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "e51c700cf148e63fef60bc4b2c453018218a3170dedbfe2840f122aee5a453e7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/krb5@0.5.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/jborean93/pykrb5" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/krb5@0.5.1" + }, + { + "author": "Kubernetes", + "group": "", + "name": "kubernetes-asyncio", + "version": "24.2.3", + "description": "Kubernetes asynchronous python client", + "hashes": [ + { + "alg": "SHA-256", + "content": "48f3bd583eeb16fbeb0767b0e190039013c1a4a7f4af5178ca3a6a904a7b6aba" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/kubernetes-asyncio@24.2.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/tomplus/kubernetes_asyncio" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/kubernetes-asyncio@24.2.3", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "28.2.1" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "kubernetes-asyncio" + } + ] + }, + { + "author": "Kubernetes", + "group": "", + "name": "kubernetes", + "version": "23.6.0", + "description": "Kubernetes python client", + "hashes": [ + { + "alg": "SHA-256", + "content": "dd58e286a53071bc8e32041f07f3c2236b3ed8ca5b9f57794a5077358f7ccb06" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/kubernetes@23.6.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/kubernetes-client/python" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/kubernetes@23.6.0", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "28.1.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "kubernetes" + } + ] + }, + { + "author": "Ionel Cristian Mărieș ", + "group": "", + "name": "lazy-object-proxy", + "version": "1.10.0", + "description": "A fast and thorough lazy object proxy.", + "hashes": [ + { + "alg": "SHA-256", + "content": "855e068b0358ab916454464a884779c7ffa312b8925c6f7401e952dcf3b89977" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-2-Clause", + "url": "https://opensource.org/licenses/BSD-2-Clause" + } + } + ], + "purl": "pkg:pypi/lazy-object-proxy@1.10.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/ionelmc/python-lazy-object-proxy" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/lazy-object-proxy@1.10.0" + }, + { + "author": "Giovanni Cannata ", + "group": "", + "name": "ldap3", + "version": "2.9.1", + "description": "A strictly RFC 4510 conforming LDAP V3 pure Python client library", + "hashes": [ + { + "alg": "SHA-256", + "content": "5ab7febc00689181375de40c396dcad4f2659cd260fc5e94c508b6d77c17e9d5" + } + ], + "licenses": [ + { + "license": { + "name": "GNU Lesser General Public License v3 (LGPLv3)" + } + }, + { + "license": { + "name": "LGPL v3" + } + } + ], + "purl": "pkg:pypi/ldap3@2.9.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/cannatag/ldap3" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/ldap3@2.9.1" + }, + { + "author": "Ali-Akber Saifee ", + "group": "", + "name": "limits", + "version": "3.7.0", + "description": "Rate limiting utilities", + "hashes": [ + { + "alg": "SHA-256", + "content": "c528817b7fc15f3e86ad091ba3e40231f6430a91b753db864767684cda8a7f2e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/limits@3.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://limits.readthedocs.org" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/limits@3.7.0" + }, + { + "author": "tsutsu3", + "group": "", + "name": "linkify-it-py", + "version": "2.0.2", + "description": "Links recognition library with FULL unicode support.", + "hashes": [ + { + "alg": "SHA-256", + "content": "a3a24428f6c96f27370d7fe61d2ac0be09017be5190d68d8658233171f1b6541" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/linkify-it-py@2.0.2", + "type": "library", + "bom-ref": "pkg:pypi/linkify-it-py@2.0.2" + }, + { + "author": "OpenStack ", + "group": "", + "name": "lockfile", + "version": "0.12.2", + "description": "Platform-independent file locking module", + "hashes": [ + { + "alg": "SHA-256", + "content": "6c3cb24f344923d30b2785d5ad75182c8ea7ac1b6171b08657258ec7429d50fa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/lockfile@0.12.2", + "externalReferences": [ + { + "type": "website", + "url": "http://launchpad.net/pylockfile" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/lockfile@0.12.2" + }, + { + "author": "lxml dev team ", + "group": "", + "name": "lxml", + "version": "4.9.3", + "description": "Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.", + "hashes": [ + { + "alg": "SHA-256", + "content": "b0a545b46b526d418eb91754565ba5b63b1c0b12f9bd2f808c852d9b4b2f9b5c" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/lxml@4.9.3", + "externalReferences": [ + { + "type": "website", + "url": "https://lxml.de/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/lxml@4.9.3" + }, + { + "author": "Chris Sewell ", + "group": "", + "name": "markdown-it-py", + "version": "3.0.0", + "description": "Python port of markdown-it. Markdown parsing, done right!", + "hashes": [ + { + "alg": "SHA-256", + "content": "355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/markdown-it-py@3.0.0", + "type": "library", + "bom-ref": "pkg:pypi/markdown-it-py@3.0.0" + }, + { + "author": "Maxim Kulkin ", + "group": "", + "name": "marshmallow-oneofschema", + "version": "3.0.1", + "description": "marshmallow multiplexing schema", + "hashes": [ + { + "alg": "SHA-256", + "content": "bd29410a9f2f7457a2b428286e2a80ef76b8ddc3701527dc1f935a88914b02f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/marshmallow-oneofschema@3.0.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/marshmallow-code/marshmallow-oneofschema" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/marshmallow-oneofschema@3.0.1" + }, + { + "author": "Steven Loria ", + "group": "", + "name": "marshmallow-sqlalchemy", + "version": "0.26.1", + "description": "SQLAlchemy integration with the marshmallow (de)serialization library", + "hashes": [ + { + "alg": "SHA-256", + "content": "ba7493eeb8669a3bf00d8f906b657feaa87a740ae9e4ecf829cfd6ddf763d276" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/marshmallow-sqlalchemy@0.26.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/marshmallow-code/marshmallow-sqlalchemy" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/marshmallow-sqlalchemy@0.26.1", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "0.29.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "marshmallow-sqlalchemy" + } + ] + }, + { + "author": "Steven Loria ", + "group": "", + "name": "marshmallow", + "version": "3.20.1", + "description": "A lightweight library for converting complex datatypes to and from native Python datatypes.", + "hashes": [ + { + "alg": "SHA-256", + "content": "684939db93e80ad3561392f47be0230743131560a41c5110684c16e21ade0a5c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/marshmallow@3.20.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/marshmallow-code/marshmallow" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/marshmallow@3.20.1" + }, + { + "author": "Chris Sewell ", + "group": "", + "name": "mdit-py-plugins", + "version": "0.4.0", + "description": "Collection of plugins for markdown-it-py", + "hashes": [ + { + "alg": "SHA-256", + "content": "b51b3bb70691f57f974e257e367107857a93b36f322a9e6d44ca5bf28ec2def9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/mdit-py-plugins@0.4.0", + "type": "library", + "bom-ref": "pkg:pypi/mdit-py-plugins@0.4.0" + }, + { + "author": "Taneli Hukkinen ", + "group": "", + "name": "mdurl", + "version": "0.1.2", + "description": "Markdown URL utilities", + "hashes": [ + { + "alg": "SHA-256", + "content": "84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/mdurl@0.1.2", + "type": "library", + "bom-ref": "pkg:pypi/mdurl@0.1.2" + }, + { + "author": "Andrew Svetlov ", + "group": "", + "name": "multidict", + "version": "6.0.4", + "description": "multidict implementation", + "hashes": [ + { + "alg": "SHA-256", + "content": "0b1a97283e0c85772d613878028fec909f003993e1007eafa715b24b377cb9b8" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/multidict@6.0.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/aio-libs/multidict" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/multidict@6.0.4" + }, + { + "author": "Travis E. Oliphant et al.", + "group": "", + "name": "numpy", + "version": "1.26.2", + "description": "Fundamental package for array computing in Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "3703fc9258a4a122d17043e57b35e5ef1c5a5837c3db8be396c82e04c1cf9b0f" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/numpy@1.26.2", + "externalReferences": [ + { + "type": "website", + "url": "https://numpy.org" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/numpy@1.26.2" + }, + { + "author": "The OAuthlib Community ", + "group": "", + "name": "oauthlib", + "version": "3.2.2", + "description": "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic", + "hashes": [ + { + "alg": "SHA-256", + "content": "8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca" + } + ], + "licenses": [ + { + "license": { + "name": "OSI Approved" + } + }, + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/oauthlib@3.2.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/oauthlib/oauthlib" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/oauthlib@3.2.2" + }, + { + "author": "OpenTelemetry Authors ", + "group": "", + "name": "opentelemetry-api", + "version": "1.22.0", + "description": "OpenTelemetry Python API", + "hashes": [ + { + "alg": "SHA-256", + "content": "43621514301a7e9f5d06dd8013a1b450f30c2e9372b8e30aaeb4562abf2ce034" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/opentelemetry-api@1.22.0", + "type": "library", + "bom-ref": "pkg:pypi/opentelemetry-api@1.22.0" + }, + { + "author": "OpenTelemetry Authors ", + "group": "", + "name": "opentelemetry-exporter-otlp-proto-common", + "version": "1.22.0", + "description": "OpenTelemetry Protobuf encoding", + "hashes": [ + { + "alg": "SHA-256", + "content": "3f2538bec5312587f8676c332b3747f54c89fe6364803a807e217af4603201fa" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/opentelemetry-exporter-otlp-proto-common@1.22.0", + "type": "library", + "bom-ref": "pkg:pypi/opentelemetry-exporter-otlp-proto-common@1.22.0" + }, + { + "author": "OpenTelemetry Authors ", + "group": "", + "name": "opentelemetry-exporter-otlp-proto-grpc", + "version": "1.22.0", + "description": "OpenTelemetry Collector Protobuf over gRPC Exporter", + "hashes": [ + { + "alg": "SHA-256", + "content": "b5bcadc129272004316a455e9081216d3380c1fc2231a928ea6a70aa90e173fb" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/opentelemetry-exporter-otlp-proto-grpc@1.22.0", + "type": "library", + "bom-ref": "pkg:pypi/opentelemetry-exporter-otlp-proto-grpc@1.22.0" + }, + { + "author": "OpenTelemetry Authors ", + "group": "", + "name": "opentelemetry-exporter-otlp-proto-http", + "version": "1.22.0", + "description": "OpenTelemetry Collector Protobuf over HTTP Exporter", + "hashes": [ + { + "alg": "SHA-256", + "content": "e002e842190af45b91dc55a97789d0b98e4308c88d886b16049ee90e17a4d396" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/opentelemetry-exporter-otlp-proto-http@1.22.0", + "type": "library", + "bom-ref": "pkg:pypi/opentelemetry-exporter-otlp-proto-http@1.22.0" + }, + { + "author": "OpenTelemetry Authors ", + "group": "", + "name": "opentelemetry-exporter-otlp", + "version": "1.22.0", + "description": "OpenTelemetry Collector Exporters", + "hashes": [ + { + "alg": "SHA-256", + "content": "cb03a1cbf300e12b47690858be13dd26fe2f60b2610204959f3497cd6645e3a1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/opentelemetry-exporter-otlp@1.22.0", + "type": "library", + "bom-ref": "pkg:pypi/opentelemetry-exporter-otlp@1.22.0" + }, + { + "author": "OpenTelemetry Authors ", + "group": "", + "name": "opentelemetry-exporter-prometheus", + "version": "0.43b0", + "description": "Prometheus Metric Exporter for OpenTelemetry", + "hashes": [ + { + "alg": "SHA-256", + "content": "f016a93e33cdda5565fed6595affb016fd460b0fad967dc38c9925cdb19e5bbd" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/opentelemetry-exporter-prometheus@0.43b0", + "type": "library", + "bom-ref": "pkg:pypi/opentelemetry-exporter-prometheus@0.43b0" + }, + { + "author": "OpenTelemetry Authors ", + "group": "", + "name": "opentelemetry-proto", + "version": "1.22.0", + "description": "OpenTelemetry Python Proto", + "hashes": [ + { + "alg": "SHA-256", + "content": "ce7188d22c75b6d0fe53e7fb58501613d0feade5139538e79dedd9420610fa0c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/opentelemetry-proto@1.22.0", + "type": "library", + "bom-ref": "pkg:pypi/opentelemetry-proto@1.22.0" + }, + { + "author": "OpenTelemetry Authors ", + "group": "", + "name": "opentelemetry-sdk", + "version": "1.22.0", + "description": "OpenTelemetry Python SDK", + "hashes": [ + { + "alg": "SHA-256", + "content": "a730555713d7c8931657612a88a141e3a4fe6eb5523d9e2d5a8b1e673d76efa6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/opentelemetry-sdk@1.22.0", + "type": "framework", + "bom-ref": "pkg:pypi/opentelemetry-sdk@1.22.0" + }, + { + "author": "OpenTelemetry Authors ", + "group": "", + "name": "opentelemetry-semantic-conventions", + "version": "0.43b0", + "description": "OpenTelemetry Semantic Conventions", + "hashes": [ + { + "alg": "SHA-256", + "content": "291284d7c1bf15fdaddf309b3bd6d3b7ce12a253cec6d27144439819a15d8445" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/opentelemetry-semantic-conventions@0.43b0", + "type": "library", + "bom-ref": "pkg:pypi/opentelemetry-semantic-conventions@0.43b0" + }, + { + "author": "Elia Robyn Lake ", + "group": "", + "name": "ordered-set", + "version": "4.1.0", + "description": "An OrderedSet is a custom MutableSet that remembers its order, so that every", + "hashes": [ + { + "alg": "SHA-256", + "content": "046e1132c71fcf3330438a539928932caf51ddbc582496833e23de611de14562" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/ordered-set@4.1.0", + "type": "library", + "bom-ref": "pkg:pypi/ordered-set@4.1.0" + }, + { + "author": "Donald Stufft ", + "group": "", + "name": "packaging", + "version": "23.2", + "description": "Core utilities for Python packages", + "hashes": [ + { + "alg": "SHA-256", + "content": "8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + }, + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/packaging@23.2", + "type": "library", + "bom-ref": "pkg:pypi/packaging@23.2" + }, + { + "author": "The Pandas Development Team ", + "group": "", + "name": "pandas", + "version": "2.1.4", + "description": "Powerful data structures for data analysis, time series, and statistics", + "hashes": [ + { + "alg": "SHA-256", + "content": "bdec823dc6ec53f7a6339a0e34c68b144a7a1fd28d80c260534c39c62c5bf8c9" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/pandas@2.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://pandas.pydata.org" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/pandas@2.1.4" + }, + { + "author": "\"Caleb P. Burns\" ", + "group": "", + "name": "pathspec", + "version": "0.12.1", + "description": "Utility library for gitignore style pattern matching of file paths.", + "hashes": [ + { + "alg": "SHA-256", + "content": "a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08" + } + ], + "licenses": [ + { + "license": { + "id": "MPL-2.0", + "url": "https://opensource.org/licenses/MPL-2.0" + } + } + ], + "purl": "pkg:pypi/pathspec@0.12.1", + "type": "library", + "bom-ref": "pkg:pypi/pathspec@0.12.1" + }, + { + "author": "Sébastien Eustace ", + "group": "", + "name": "pendulum", + "version": "2.1.2", + "description": "Python datetimes made easy", + "hashes": [ + { + "alg": "SHA-256", + "content": "b6c352f4bd32dff1ea7066bd31ad0f71f8d8100b9ff709fb343f3b86cee43efe" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pendulum@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://pendulum.eustace.io" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pendulum@2.1.2", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "3.0.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "pendulum" + } + ] + }, + { + "group": "", + "name": "platformdirs", + "version": "4.1.0", + "description": "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\".", + "hashes": [ + { + "alg": "SHA-256", + "content": "11c8f37bcca40db96d8144522d925583bdb7a31f7b0e37e3ed4318400a8e2380" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/platformdirs@4.1.0", + "type": "library", + "bom-ref": "pkg:pypi/platformdirs@4.1.0" + }, + { + "author": "Holger Krekel ", + "group": "", + "name": "pluggy", + "version": "1.3.0", + "description": "plugin and hook calling mechanisms for python", + "hashes": [ + { + "alg": "SHA-256", + "content": "d89c696a773f8bd377d18e5ecda92b7a3793cbe66c87060a6fb58c7b6e1061f7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pluggy@1.3.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pytest-dev/pluggy" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pluggy@1.3.0" + }, + { + "author": "Wouter Bolsterlee ", + "group": "", + "name": "plyvel", + "version": "1.5.0", + "description": "Plyvel, a fast and feature-rich Python interface to LevelDB", + "hashes": [ + { + "alg": "SHA-256", + "content": "92d949ec657f58e966ee5cc58ea51c436b61e43b86247656f1b6d4a987782a35" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/plyvel@1.5.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/wbolster/plyvel" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/plyvel@1.5.0" + }, + { + "author": "Beto Dealmeida ", + "group": "", + "name": "prison", + "version": "0.2.1", + "description": "Rison encoder/decoder", + "hashes": [ + { + "alg": "SHA-256", + "content": "f90bab63fca497aa0819a852f64fb21a4e181ed9f6114deaa5dc04001a7555c5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/prison@0.2.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/betodealmeida/python-rison" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/prison@0.2.1" + }, + { + "author": "Brian Brazil ", + "group": "", + "name": "prometheus-client", + "version": "0.19.0", + "description": "Python client for the Prometheus monitoring system.", + "hashes": [ + { + "alg": "SHA-256", + "content": "c88b1e6ecf6b41cd8fb5731c7ae919bf66df6ec6fafa555cd6c0e16ca169ae92" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + }, + { + "license": { + "name": "Apache Software License 2.0" + } + } + ], + "purl": "pkg:pypi/prometheus-client@0.19.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/prometheus/client_python" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/prometheus-client@0.19.0" + }, + { + "author": "Jonathan Slenders", + "group": "", + "name": "prompt-toolkit", + "version": "3.0.43", + "description": "Library for building powerful interactive command lines in Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "a11a29cb3bf0a28a387fe5122cdb649816a957cd9261dcedf8c9f1fef33eacf6" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/prompt-toolkit@3.0.43", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/prompt-toolkit/python-prompt-toolkit" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/prompt-toolkit@3.0.43" + }, + { + "author": "protobuf@googlegroups.com ", + "group": "", + "name": "protobuf", + "version": "4.25.1", + "hashes": [ + { + "alg": "SHA-256", + "content": "193f50a6ab78a970c9b4f148e7c750cfde64f59815e86f686c22e26b4fe01ce7" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/protobuf@4.25.1", + "externalReferences": [ + { + "type": "website", + "url": "https://developers.google.com/protocol-buffers/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/protobuf@4.25.1" + }, + { + "author": "Giampaolo Rodola ", + "group": "", + "name": "psutil", + "version": "5.9.6", + "description": "Cross-platform lib for process and system monitoring in Python.", + "hashes": [ + { + "alg": "SHA-256", + "content": "fb8a697f11b0f5994550555fcfe3e69799e5b060c8ecf9e2f75c69302cc35c0d" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/psutil@5.9.6", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/giampaolo/psutil" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/psutil@5.9.6", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "5.9.7" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "psutil" + } + ] + }, + { + "author": "Alex Shafer ", + "group": "", + "name": "pure-sasl", + "version": "0.6.2", + "description": "Pure Python client SASL implementation", + "hashes": [ + { + "alg": "SHA-256", + "content": "edb33b1a46eb3c602c0166de0442c0fb41f5ac2bfccbde4775183b105ad89ab2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pure-sasl@0.6.2", + "externalReferences": [ + { + "type": "vcs", + "url": "http://github.com/thobbs/pure-sasl" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pure-sasl@0.6.2" + }, + { + "author": "Antoine Pitrou ", + "group": "", + "name": "pyarrow-hotfix", + "version": "0.6", + "hashes": [ + { + "alg": "SHA-256", + "content": "dcc9ae2d220dff0083be6a9aa8e0cdee5182ad358d4931fce825c545e5c89178" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/pyarrow-hotfix@0.6", + "type": "library", + "bom-ref": "pkg:pypi/pyarrow-hotfix@0.6" + }, + { + "group": "", + "name": "pyarrow", + "version": "14.0.1", + "description": "Python library for Apache Arrow", + "hashes": [ + { + "alg": "SHA-256", + "content": "96d64e5ba7dceb519a955e5eeb5c9adcfd63f73a56aea4722e2cc81364fc567a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/pyarrow@14.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://arrow.apache.org/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pyarrow@14.0.1", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "14.0.2" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "pyarrow" + } + ] + }, + { + "author": "Ilya Etingof ", + "group": "", + "name": "pyasn1-modules", + "version": "0.3.0", + "description": "A collection of ASN.1-based protocols modules", + "hashes": [ + { + "alg": "SHA-256", + "content": "d3ccd6ed470d9ffbc716be08bd90efbd44d0734bc9303818f7336070984a162d" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/pyasn1-modules@0.3.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pyasn1/pyasn1-modules" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pyasn1-modules@0.3.0" + }, + { + "author": "Ilya Etingof ", + "group": "", + "name": "pyasn1", + "version": "0.5.1", + "description": "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)", + "hashes": [ + { + "alg": "SHA-256", + "content": "4439847c58d40b1d0a573d07e3856e95333f1976294494c325775aeca506eb58" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-2-Clause", + "url": "https://opensource.org/licenses/BSD-2-Clause" + } + } + ], + "purl": "pkg:pypi/pyasn1@0.5.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pyasn1/pyasn1" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pyasn1@0.5.1" + }, + { + "author": "Eli Bendersky ", + "group": "", + "name": "pycparser", + "version": "2.21", + "description": "C parser in Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/pycparser@2.21", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/eliben/pycparser" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pycparser@2.21" + }, + { + "author": "Samuel Colvin , Eric Jolibois , Hasan Ramezani , Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>, Terrence Dorsey , David Montague , Serge Matveenko , Marcelo Trylesinski , Sydney Runkle , David Hewitt ", + "group": "", + "name": "pydantic", + "version": "2.5.2", + "description": "Data validation using Python type hints", + "hashes": [ + { + "alg": "SHA-256", + "content": "80c50fb8e3dcecfddae1adbcc00ec5822918490c99ab31f6cf6140ca1c1429f0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pydantic@2.5.2", + "type": "library", + "bom-ref": "pkg:pypi/pydantic@2.5.2" + }, + { + "author": "Samuel Colvin ", + "group": "", + "name": "pydantic_core", + "version": "2.14.5", + "hashes": [ + { + "alg": "SHA-256", + "content": "7e88f5696153dc516ba6e79f82cc4747e87027205f0e02390c21f7cb3bd8abfd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pydantic-core@2.14.5", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pydantic/pydantic-core" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pydantic-core@2.14.5" + }, + { + "group": "", + "name": "pykerberos", + "version": "1.2.4", + "description": "High-level interface to Kerberos", + "hashes": [ + { + "alg": "SHA-256", + "content": "9d701ebd8fc596c99d3155d5ba45813bd5908d26ef83ba0add250edb622abed4" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + }, + { + "license": { + "name": "ASL 2.0" + } + } + ], + "purl": "pkg:pypi/pykerberos@1.2.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/02strich/pykerberos" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pykerberos@1.2.4" + }, + { + "author": "Jordan Borean ", + "group": "", + "name": "pyspnego", + "version": "0.10.2", + "description": "Windows Negotiate Authentication Client and Server", + "hashes": [ + { + "alg": "SHA-256", + "content": "3d5c5c28dbd0cd6a679acf45219630254db3c0e5ad4a16de521caa0585b088c0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pyspnego@0.10.2", + "type": "library", + "bom-ref": "pkg:pypi/pyspnego@0.10.2" + }, + { + "author": "Ben Finney ", + "group": "", + "name": "python-daemon", + "version": "3.0.1", + "description": "Library to implement a well-behaved Unix daemon process.", + "hashes": [ + { + "alg": "SHA-256", + "content": "42bb848a3260a027fa71ad47ecd959e471327cb34da5965962edd5926229f341" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + }, + { + "license": { + "name": "Apache-2" + } + } + ], + "purl": "pkg:pypi/python-daemon@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://pagure.io/python-daemon/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/python-daemon@3.0.1" + }, + { + "author": "Gustavo Niemeyer ", + "group": "", + "name": "python-dateutil", + "version": "2.8.2", + "description": "Extensions to the standard Python datetime module", + "hashes": [ + { + "alg": "SHA-256", + "content": "961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + }, + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "name": "Dual License" + } + } + ], + "purl": "pkg:pypi/python-dateutil@2.8.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/dateutil/dateutil" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/python-dateutil@2.8.2" + }, + { + "author": "python-ldap project ", + "group": "", + "name": "python-ldap", + "version": "3.4.4", + "description": "Python modules for implementing LDAP clients", + "hashes": [ + { + "alg": "SHA-256", + "content": "7edb0accec4e037797705f3a05cbf36a9fde50d08c8f67f2aef99a2628fab828" + } + ], + "licenses": [ + { + "license": { + "id": "PSF-2.0", + "url": "https://opensource.org/licenses/PSF-2.0" + } + }, + { + "license": { + "name": "Python style" + } + } + ], + "purl": "pkg:pypi/python-ldap@3.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://www.python-ldap.org/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/python-ldap@3.4.4" + }, + { + "author": "Belaid Arezqui ", + "group": "", + "name": "python-nvd3", + "version": "0.15.0", + "description": "Python NVD3 - Chart Library for d3.js", + "hashes": [ + { + "alg": "SHA-256", + "content": "fbd75ff47e0ef255b4aa4f3a8b10dc8b4024aa5a9a7abed5b2406bd3cb817715" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/python-nvd3@0.15.0", + "externalReferences": [ + { + "type": "vcs", + "url": "http://github.com/areski/python-nvd3" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/python-nvd3@0.15.0" + }, + { + "author": "Val Neekman ", + "group": "", + "name": "python-slugify", + "version": "8.0.1", + "description": "A Python slugify application that also handles Unicode", + "hashes": [ + { + "alg": "SHA-256", + "content": "70ca6ea68fe63ecc8fa4fcf00ae651fc8a5d02d93dcd12ae6d4fc7ca46c4d395" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/python-slugify@8.0.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/un33k/python-slugify" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/python-slugify@8.0.1" + }, + { + "group": "", + "name": "python3-saml", + "version": "1.16.0", + "description": "Saml Python Toolkit. Add SAML support to your Python software using this library", + "hashes": [ + { + "alg": "SHA-256", + "content": "c49097863c278ff669a337a96c46dc1f25d16307b4bb2679d2d1733cc4f5176a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/python3-saml@1.16.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/SAML-Toolkits/python3-saml" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/python3-saml@1.16.0" + }, + { + "author": "Stuart Bishop ", + "group": "", + "name": "pytz", + "version": "2023.3.post1", + "description": "World timezone definitions, modern and historical", + "hashes": [ + { + "alg": "SHA-256", + "content": "ce42d816b81b68506614c11e8937d3aa9e41007ceb50bfdcb0749b921bf646c7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pytz@2023.3.post1", + "externalReferences": [ + { + "type": "website", + "url": "http://pythonhosted.org/pytz" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pytz@2023.3.post1" + }, + { + "author": "Sébastien Eustace ", + "group": "", + "name": "pytzdata", + "version": "2020.1", + "description": "The Olson timezone database for Python.", + "hashes": [ + { + "alg": "SHA-256", + "content": "e1e14750bcf95016381e4d472bad004eef710f2d6417240904070b3d6654485f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pytzdata@2020.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/sdispater/pytzdata" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pytzdata@2020.1" + }, + { + "author": "Julian Berman ", + "group": "", + "name": "referencing", + "version": "0.32.0", + "description": "JSON Referencing + Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "bdcd3efb936f82ff86f993093f6da7435c7de69a3b3a5a06678a6050184bee99" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/referencing@0.32.0", + "type": "library", + "bom-ref": "pkg:pypi/referencing@0.32.0" + }, + { + "author": "Ian Cordasco, Cory Benfield, Michael Komitee ", + "group": "", + "name": "requests-kerberos", + "version": "0.14.0", + "description": "A Kerberos authentication handler for python-requests", + "hashes": [ + { + "alg": "SHA-256", + "content": "da74ea478ccd8584de88092bdcd17a7c29d494374a340d1d8677189903c9ac6a" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "url": "https://opensource.org/licenses/ISC" + } + }, + { + "license": { + "name": "ISC License" + } + } + ], + "purl": "pkg:pypi/requests-kerberos@0.14.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/requests/requests-kerberos" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/requests-kerberos@0.14.0" + }, + { + "author": "Kenneth Reitz ", + "group": "", + "name": "requests-oauthlib", + "version": "1.3.1", + "description": "OAuthlib authentication support for Requests.", + "hashes": [ + { + "alg": "SHA-256", + "content": "2577c501a2fb8d05a304c09d090d6e47c306fef15809d102b327cf8364bddab5" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "ISC", + "url": "https://opensource.org/licenses/ISC" + } + } + ], + "purl": "pkg:pypi/requests-oauthlib@1.3.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/requests/requests-oauthlib" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/requests-oauthlib@1.3.1" + }, + { + "author": "Kenneth Reitz ", + "group": "", + "name": "requests", + "version": "2.31.0", + "description": "Python HTTP for Humans.", + "hashes": [ + { + "alg": "SHA-256", + "content": "58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/requests@2.31.0", + "externalReferences": [ + { + "type": "website", + "url": "https://requests.readthedocs.io" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/requests@2.31.0" + }, + { + "author": "Nicolas Aimetti ", + "group": "", + "name": "rfc3339-validator", + "version": "0.1.4", + "description": "A pure python RFC3339 validator", + "hashes": [ + { + "alg": "SHA-256", + "content": "24f6ec1eda14ef823da9e36ec7113124b39c04d50a4d3d3a3c2859577e7791fa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/rfc3339-validator@0.1.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/naimetti/rfc3339-validator" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/rfc3339-validator@0.1.4" + }, + { + "author": "Ali Hamdan ", + "group": "", + "name": "rich-argparse", + "version": "1.4.0", + "description": "Rich help formatters for argparse and optparse", + "hashes": [ + { + "alg": "SHA-256", + "content": "68b263d3628d07b1d27cfe6ad896da2f5a5583ee2ba226aeeb24459840023b38" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/rich-argparse@1.4.0", + "type": "library", + "bom-ref": "pkg:pypi/rich-argparse@1.4.0" + }, + { + "author": "Will McGugan ", + "group": "", + "name": "rich", + "version": "13.7.0", + "description": "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal", + "hashes": [ + { + "alg": "SHA-256", + "content": "6da14c108c4866ee9520bbffa71f6fe3962e193b7da68720583850cd4548e235" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/rich@13.7.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/Textualize/rich" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/rich@13.7.0" + }, + { + "author": "Julian Berman ", + "group": "", + "name": "rpds-py", + "version": "0.13.2", + "description": "Python bindings to Rust's persistent data structures (rpds)", + "hashes": [ + { + "alg": "SHA-256", + "content": "1ceebd0ae4f3e9b2b6b553b51971921853ae4eebf3f54086be0565d59291e53d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/rpds-py@0.13.2", + "type": "library", + "bom-ref": "pkg:pypi/rpds-py@0.13.2", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "0.15.2" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "rpds-py" + } + ] + }, + { + "author": "Sybren A. Stüvel ", + "group": "", + "name": "rsa", + "version": "4.9", + "description": "Pure-Python RSA implementation", + "hashes": [ + { + "alg": "SHA-256", + "content": "90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/rsa@4.9", + "externalReferences": [ + { + "type": "website", + "url": "https://stuvel.eu/rsa" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/rsa@4.9" + }, + { + "group": "", + "name": "s3fs", + "version": "2023.12.2", + "description": "Convenient Filesystem interface over S3", + "hashes": [ + { + "alg": "SHA-256", + "content": "0d5a99039665f30b2dbee5495de3b299a022d51b3195a9440f5df47c2621b777" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/s3fs@2023.12.2", + "externalReferences": [ + { + "type": "vcs", + "url": "http://github.com/fsspec/s3fs/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/s3fs@2023.12.2" + }, + { + "author": "Sentry Team and Contributors ", + "group": "", + "name": "sentry-sdk", + "version": "1.39.1", + "description": "Python client for Sentry (https://sentry.io)", + "hashes": [ + { + "alg": "SHA-256", + "content": "81b5b9ffdd1a374e9eb0c053b5d2012155db9cbe76393a8585677b753bd5fdc1" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/sentry-sdk@1.39.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/getsentry/sentry-python" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/sentry-sdk@1.39.1" + }, + { + "author": "Daniele Varrazzo ", + "group": "", + "name": "setproctitle", + "version": "1.3.3", + "description": "A Python module to customize the process title", + "hashes": [ + { + "alg": "SHA-256", + "content": "897a73208da48db41e687225f355ce993167079eda1260ba5e13c4e53be7f754" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/setproctitle@1.3.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/dvarrazzo/py-setproctitle" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/setproctitle@1.3.3" + }, + { + "author": "Benjamin Peterson ", + "group": "", + "name": "six", + "version": "1.16.0", + "description": "Python 2 and 3 compatibility utilities", + "hashes": [ + { + "alg": "SHA-256", + "content": "8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/six@1.16.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/benjaminp/six" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/six@1.16.0" + }, + { + "author": "Nathaniel J. Smith ", + "group": "", + "name": "sniffio", + "version": "1.3.0", + "description": "Sniff out which async library your code is running under", + "hashes": [ + { + "alg": "SHA-256", + "content": "eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + }, + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + }, + { + "license": { + "name": "MIT OR Apache-2.0" + } + } + ], + "purl": "pkg:pypi/sniffio@1.3.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/python-trio/sniffio" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/sniffio@1.3.0" + }, + { + "author": "James Socol ", + "group": "", + "name": "statsd", + "version": "4.0.1", + "description": "A simple statsd client.", + "hashes": [ + { + "alg": "SHA-256", + "content": "c2676519927f7afade3723aca9ca8ea986ef5b059556a980a867721ca69df093" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/statsd@4.0.1", + "type": "library", + "bom-ref": "pkg:pypi/statsd@4.0.1" + }, + { + "author": "Sergey Astanin ", + "group": "", + "name": "tabulate", + "version": "0.9.0", + "description": "Pretty-print tabular data", + "hashes": [ + { + "alg": "SHA-256", + "content": "024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/tabulate@0.9.0", + "type": "library", + "bom-ref": "pkg:pypi/tabulate@0.9.0" + }, + { + "author": "Julien Danjou ", + "group": "", + "name": "tenacity", + "version": "8.2.3", + "description": "Retry code until it succeeds", + "hashes": [ + { + "alg": "SHA-256", + "content": "ce510e327a630c9e1beaf17d42e6ffacc88185044ad85cf74c0a8887c6a0f88c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/tenacity@8.2.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/jd/tenacity" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/tenacity@8.2.3" + }, + { + "author": "Konstantin Lepa ", + "group": "", + "name": "termcolor", + "version": "2.4.0", + "description": "ANSI color formatting for output in terminal", + "hashes": [ + { + "alg": "SHA-256", + "content": "9297c0df9c99445c2412e832e882a7884038a25617c60cea2ad69488d4040d63" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/termcolor@2.4.0", + "type": "library", + "bom-ref": "pkg:pypi/termcolor@2.4.0" + }, + { + "author": "Mikhail Korobov ", + "group": "", + "name": "text-unidecode", + "version": "1.3", + "description": "The most basic Text::Unidecode port", + "hashes": [ + { + "alg": "SHA-256", + "content": "1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8" + } + ], + "licenses": [ + { + "license": { + "name": "Artistic License" + } + }, + { + "license": { + "name": "GNU General Public License (GPL)" + } + }, + { + "license": { + "name": "GNU General Public License v2 or later (GPLv2+)" + } + } + ], + "purl": "pkg:pypi/text-unidecode@1.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/kmike/text-unidecode/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/text-unidecode@1.3" + }, + { + "group": "", + "name": "thrift-sasl", + "version": "0.4.3", + "description": "Thrift SASL Python module that implements SASL transports for Thrift (`TSaslClientTransport`).", + "hashes": [ + { + "alg": "SHA-256", + "content": "d24b49140115e6e2a96d08335cff225a27a28ea71866fb1b2bdb30ca5afca64e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/thrift-sasl@0.4.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/cloudera/thrift_sasl" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/thrift-sasl@0.4.3" + }, + { + "author": "Apache Thrift Developers ", + "group": "", + "name": "thrift", + "version": "0.16.0", + "description": "Python bindings for the Apache Thrift RPC system", + "hashes": [ + { + "alg": "SHA-256", + "content": "2b5b6488fcded21f9d312aa23c9ff6a0195d0f6ae26ddbd5ad9e3e25dfc14408" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/thrift@0.16.0", + "externalReferences": [ + { + "type": "website", + "url": "http://thrift.apache.org" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/thrift@0.16.0" + }, + { + "author": "Facebook ", + "group": "", + "name": "tornado", + "version": "6.4", + "description": "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.", + "hashes": [ + { + "alg": "SHA-256", + "content": "02ccefc7d8211e5a7f9e8bc3f9e5b0ad6262ba2fbb683a6443ecc804e5224ce0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/tornado@6.4", + "externalReferences": [ + { + "type": "website", + "url": "http://www.tornadoweb.org/" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/tornado@6.4" + }, + { + "author": "\"Guido van Rossum, Jukka Lehtosalo, Łukasz Langa, Michael Lee\" ", + "group": "", + "name": "typing_extensions", + "version": "4.9.0", + "description": "Backported and Experimental Type Hints for Python 3.8+", + "hashes": [ + { + "alg": "SHA-256", + "content": "af72aea155e91adfc61c3ae9e0e342dbc0cba726d6cba4b6c72c1f34e47291cd" + } + ], + "licenses": [ + { + "license": { + "id": "PSF-2.0", + "url": "https://opensource.org/licenses/PSF-2.0" + } + } + ], + "purl": "pkg:pypi/typing-extensions@4.9.0", + "type": "library", + "bom-ref": "pkg:pypi/typing-extensions@4.9.0" + }, + { + "author": "Python Software Foundation ", + "group": "", + "name": "tzdata", + "version": "2023.3", + "description": "Provider of IANA time zone data", + "hashes": [ + { + "alg": "SHA-256", + "content": "7e65763eef3120314099b6939b5546db7adce1e7d6f2e179e3df563c70511eda" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/tzdata@2023.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/python/tzdata" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/tzdata@2023.3" + }, + { + "author": "tsutsu3", + "group": "", + "name": "uc-micro-py", + "version": "1.0.2", + "description": "Micro subset of unicode data files for linkify-it-py projects.", + "hashes": [ + { + "alg": "SHA-256", + "content": "8c9110c309db9d9e87302e2f4ad2c3152770930d88ab385cd544e7a7e75f3de0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/uc-micro-py@1.0.2", + "type": "library", + "bom-ref": "pkg:pypi/uc-micro-py@1.0.2" + }, + { + "author": "Jeremy Dunck ", + "group": "", + "name": "unicodecsv", + "version": "0.14.1", + "description": "Python2's stdlib csv module is nice, but it doesn't support unicode. This module is a drop-in replacement which *does*.", + "hashes": [ + { + "alg": "SHA-256", + "content": "018c08037d48649a0412063ff4eda26eaa81eff1546dbffa51fa5293276ff7fc" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/unicodecsv@0.14.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/jdunck/python-unicodecsv" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/unicodecsv@0.14.1" + }, + { + "group": "", + "name": "universal-pathlib", + "version": "0.1.4", + "description": "pathlib api extended to use fsspec backends", + "hashes": [ + { + "alg": "SHA-256", + "content": "f99186cf950bde1262de9a590bb019613ef84f9fabd9f276e8b019722201943a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/universal-pathlib@0.1.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/fsspec/universal_pathlib" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/universal-pathlib@0.1.4" + }, + { + "author": "Andrey Petrov ", + "group": "", + "name": "urllib3", + "version": "2.0.7", + "description": "HTTP library with thread-safe connection pooling, file post, and more.", + "hashes": [ + { + "alg": "SHA-256", + "content": "fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/urllib3@2.0.7", + "type": "library", + "bom-ref": "pkg:pypi/urllib3@2.0.7", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "2.1.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "urllib3" + } + ] + }, + { + "author": "Ask Solem ", + "group": "", + "name": "vine", + "version": "5.1.0", + "description": "Python promises.", + "hashes": [ + { + "alg": "SHA-256", + "content": "40fdf3c48b2cfe1c38a49e9ae2da6fda88e4794c810050a728bd7413811fb1dc" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/vine@5.1.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/celery/vine" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/vine@5.1.0" + }, + { + "group": "", + "name": "virtualenv", + "version": "20.25.0", + "description": "Virtual Python Environment builder", + "hashes": [ + { + "alg": "SHA-256", + "content": "4238949c5ffe6876362d9c0180fc6c3a824a7b12b80604eeb8085f2ed7460de3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/virtualenv@20.25.0", + "type": "library", + "bom-ref": "pkg:pypi/virtualenv@20.25.0" + }, + { + "author": "Jeff Quast ", + "group": "", + "name": "wcwidth", + "version": "0.2.12", + "description": "Measures the displayed width of unicode strings in a terminal", + "hashes": [ + { + "alg": "SHA-256", + "content": "f26ec43d96c8cbfed76a5075dac87680124fa84e0855195a6184da9c187f133c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/wcwidth@0.2.12", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/jquast/wcwidth" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/wcwidth@0.2.12" + }, + { + "author": "liris ", + "group": "", + "name": "websocket-client", + "version": "1.7.0", + "description": "WebSocket client for Python with low level API options", + "hashes": [ + { + "alg": "SHA-256", + "content": "f4c3d22fec12a2461427a29957ff07d35098ee2d976d3ba244e688b8b4057588" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/websocket-client@1.7.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/websocket-client/websocket-client.git" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/websocket-client@1.7.0" + }, + { + "author": "Graham Dumpleton ", + "group": "", + "name": "wrapt", + "version": "1.16.0", + "description": "Module for decorators, wrappers and monkey patching.", + "hashes": [ + { + "alg": "SHA-256", + "content": "ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/wrapt@1.16.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/GrahamDumpleton/wrapt" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/wrapt@1.16.0" + }, + { + "author": "Bulat Gaifullin ", + "group": "", + "name": "xmlsec", + "version": "1.3.13", + "description": "Python bindings for the XML Security Library", + "hashes": [ + { + "alg": "SHA-256", + "content": "2174e8c88555383322d8b7d3927490a92ef72ad72a6ddaf4fa1b96a3f27c3e90" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/xmlsec@1.3.13", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/mehcode/python-xmlsec" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/xmlsec@1.3.13" + }, + { + "author": "Andrew Svetlov ", + "group": "", + "name": "yarl", + "version": "1.9.4", + "description": "Yet another URL library", + "hashes": [ + { + "alg": "SHA-256", + "content": "a8c1df72eb746f4136fe9a2e72b0c9dc1da1cbd23b5372f94b5820ff8ae30e0e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/yarl@1.9.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/aio-libs/yarl" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/yarl@1.9.4" + }, + { + "author": "Jason R. Coombs ", + "group": "", + "name": "zipp", + "version": "3.17.0", + "description": "Backport of pathlib-compatible object wrapper for zip files", + "hashes": [ + { + "alg": "SHA-256", + "content": "0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/zipp@3.17.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/jaraco/zipp" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/zipp@3.17.0" + }, + { + "author": "Zope Foundation and Contributors ", + "group": "", + "name": "zope.event", + "version": "5.0", + "description": "Very basic event publishing system", + "hashes": [ + { + "alg": "SHA-256", + "content": "2832e95014f4db26c47a13fdaef84cef2f4df37e66b59d8f1f4a8f319a632c26" + } + ], + "licenses": [ + { + "license": { + "name": "Zope Public License" + } + }, + { + "license": { + "id": "ZPL-2.1", + "url": "https://opensource.org/licenses/ZPL-2.1" + } + } + ], + "purl": "pkg:pypi/zope.event@5.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/zopefoundation/zope.event" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/zope.event@5.0" + }, + { + "author": "Zope Foundation and Contributors ", + "group": "", + "name": "zope.interface", + "version": "6.1", + "description": "Interfaces for Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "43b576c34ef0c1f5a4981163b551a8781896f2a37f71b8655fd20b5af0386abb" + } + ], + "licenses": [ + { + "license": { + "name": "Zope Public License" + } + }, + { + "license": { + "name": "ZPL 2.1" + } + } + ], + "purl": "pkg:pypi/zope.interface@6.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/zopefoundation/zope.interface" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/zope.interface@6.1" + } + ], + "services": [], + "dependencies": [ + { + "ref": "pkg:npm/@ampproject/remapping@2.1.1", + "dependsOn": ["pkg:npm/@jridgewell/trace-mapping@0.3.4"] + }, + { + "ref": "pkg:npm/@ampproject/remapping@2.2.0", + "dependsOn": [ + "pkg:npm/@jridgewell/gen-mapping@0.1.1", + "pkg:npm/@jridgewell/trace-mapping@0.3.14" + ] + }, + { + "ref": "pkg:npm/@babel/code-frame@7.14.5", + "dependsOn": ["pkg:npm/@babel/highlight@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/code-frame@7.16.0", + "dependsOn": ["pkg:npm/@babel/highlight@7.16.0"] + }, + { + "ref": "pkg:npm/@babel/code-frame@7.16.7", + "dependsOn": ["pkg:npm/@babel/highlight@7.16.10"] + }, + { + "ref": "pkg:npm/@babel/code-frame@7.22.13", + "dependsOn": ["pkg:npm/@babel/highlight@7.22.20", "pkg:npm/chalk@2.4.2"] + }, + { + "ref": "pkg:npm/@babel/compat-data@7.16.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/compat-data@7.17.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/compat-data@7.18.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/core@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/code-frame@7.16.0", + "pkg:npm/@babel/generator@7.16.0", + "pkg:npm/@babel/helper-compilation-targets@7.16.0", + "pkg:npm/@babel/helper-module-transforms@7.16.0", + "pkg:npm/@babel/helpers@7.16.0", + "pkg:npm/@babel/parser@7.16.2", + "pkg:npm/@babel/template@7.16.0", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.16.0", + "pkg:npm/convert-source-map@1.7.0", + "pkg:npm/debug@4.3.4", + "pkg:npm/gensync@1.0.0-beta.2", + "pkg:npm/json5@2.2.1", + "pkg:npm/semver@6.3.1", + "pkg:npm/source-map@0.5.7" + ] + }, + { + "ref": "pkg:npm/@babel/core@7.18.5", + "dependsOn": [ + "pkg:npm/@ampproject/remapping@2.2.0", + "pkg:npm/@babel/code-frame@7.16.7", + "pkg:npm/@babel/generator@7.18.2", + "pkg:npm/@babel/helper-compilation-targets@7.18.2", + "pkg:npm/@babel/helper-module-transforms@7.18.0", + "pkg:npm/@babel/helpers@7.18.2", + "pkg:npm/@babel/parser@7.18.5", + "pkg:npm/@babel/template@7.16.7", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.18.4", + "pkg:npm/convert-source-map@1.7.0", + "pkg:npm/debug@4.3.4", + "pkg:npm/gensync@1.0.0-beta.2", + "pkg:npm/json5@2.2.1", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/@babel/core@7.17.2", + "dependsOn": [ + "pkg:npm/@ampproject/remapping@2.1.1", + "pkg:npm/@babel/code-frame@7.16.7", + "pkg:npm/@babel/generator@7.17.0", + "pkg:npm/@babel/helper-compilation-targets@7.16.7", + "pkg:npm/@babel/helper-module-transforms@7.16.7", + "pkg:npm/@babel/helpers@7.17.2", + "pkg:npm/@babel/parser@7.17.0", + "pkg:npm/@babel/template@7.16.7", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.17.0", + "pkg:npm/convert-source-map@1.7.0", + "pkg:npm/debug@4.3.4", + "pkg:npm/gensync@1.0.0-beta.2", + "pkg:npm/json5@2.2.1", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/@babel/eslint-parser@7.18.2", + "dependsOn": [ + "pkg:npm/eslint-scope@5.1.1", + "pkg:npm/eslint-visitor-keys@2.1.0", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/@babel/generator@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/types@7.16.0", + "pkg:npm/jsesc@2.5.2", + "pkg:npm/source-map@0.5.7" + ] + }, + { + "ref": "pkg:npm/@babel/generator@7.17.0", + "dependsOn": [ + "pkg:npm/@babel/types@7.17.0", + "pkg:npm/jsesc@2.5.2", + "pkg:npm/source-map@0.5.7" + ] + }, + { + "ref": "pkg:npm/@babel/generator@7.18.2", + "dependsOn": [ + "pkg:npm/@babel/types@7.18.4", + "pkg:npm/@jridgewell/gen-mapping@0.3.2", + "pkg:npm/jsesc@2.5.2" + ] + }, + { + "ref": "pkg:npm/@babel/generator@7.23.0", + "dependsOn": [ + "pkg:npm/@babel/types@7.23.0", + "pkg:npm/@jridgewell/gen-mapping@0.3.3", + "pkg:npm/@jridgewell/trace-mapping@0.3.19", + "pkg:npm/jsesc@2.5.2" + ] + }, + { + "ref": "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "dependsOn": ["pkg:npm/@babel/types@7.16.0"] + }, + { + "ref": "pkg:npm/@babel/helper-annotate-as-pure@7.16.7", + "dependsOn": ["pkg:npm/@babel/types@7.17.0"] + }, + { + "ref": "pkg:npm/@babel/helper-builder-binary-assignment-operator-visitor@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-explode-assignable-expression@7.16.0", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-compilation-targets@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/compat-data@7.16.0", + "pkg:npm/@babel/helper-validator-option@7.14.5", + "pkg:npm/browserslist@4.20.4", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/@babel/helper-compilation-targets@7.16.7", + "dependsOn": [ + "pkg:npm/@babel/compat-data@7.17.0", + "pkg:npm/@babel/helper-validator-option@7.16.7", + "pkg:npm/browserslist@4.20.4", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/@babel/helper-compilation-targets@7.18.2", + "dependsOn": [ + "pkg:npm/@babel/compat-data@7.18.5", + "pkg:npm/@babel/helper-validator-option@7.16.7", + "pkg:npm/browserslist@4.20.4", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/@babel/helper-create-class-features-plugin@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "pkg:npm/@babel/helper-function-name@7.16.0", + "pkg:npm/@babel/helper-member-expression-to-functions@7.16.0", + "pkg:npm/@babel/helper-optimise-call-expression@7.16.0", + "pkg:npm/@babel/helper-replace-supers@7.16.0", + "pkg:npm/@babel/helper-split-export-declaration@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-create-class-features-plugin@7.18.0", + "dependsOn": [ + "pkg:npm/@babel/helper-annotate-as-pure@7.16.7", + "pkg:npm/@babel/helper-environment-visitor@7.16.7", + "pkg:npm/@babel/helper-function-name@7.17.9", + "pkg:npm/@babel/helper-member-expression-to-functions@7.17.7", + "pkg:npm/@babel/helper-optimise-call-expression@7.16.7", + "pkg:npm/@babel/helper-replace-supers@7.18.2", + "pkg:npm/@babel/helper-split-export-declaration@7.16.7" + ] + }, + { + "ref": "pkg:npm/@babel/helper-create-regexp-features-plugin@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "pkg:npm/regexpu-core@4.8.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-define-polyfill-provider@0.2.4", + "dependsOn": [ + "pkg:npm/@babel/helper-compilation-targets@7.16.0", + "pkg:npm/@babel/helper-module-imports@7.14.5", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/debug@4.3.4", + "pkg:npm/lodash.debounce@4.0.8", + "pkg:npm/resolve@1.20.0", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/@babel/helper-environment-visitor@7.16.7", + "dependsOn": ["pkg:npm/@babel/types@7.17.0"] + }, + { + "ref": "pkg:npm/@babel/helper-environment-visitor@7.18.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-environment-visitor@7.22.20", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-explode-assignable-expression@7.16.0", + "dependsOn": ["pkg:npm/@babel/types@7.16.0"] + }, + { + "ref": "pkg:npm/@babel/helper-function-name@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-get-function-arity@7.16.0", + "pkg:npm/@babel/template@7.16.0", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-function-name@7.17.9", + "dependsOn": [ + "pkg:npm/@babel/template@7.16.7", + "pkg:npm/@babel/types@7.17.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-function-name@7.23.0", + "dependsOn": [ + "pkg:npm/@babel/template@7.22.15", + "pkg:npm/@babel/types@7.23.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-get-function-arity@7.16.0", + "dependsOn": ["pkg:npm/@babel/types@7.16.0"] + }, + { + "ref": "pkg:npm/@babel/helper-hoist-variables@7.16.0", + "dependsOn": ["pkg:npm/@babel/types@7.16.0"] + }, + { + "ref": "pkg:npm/@babel/helper-hoist-variables@7.22.5", + "dependsOn": ["pkg:npm/@babel/types@7.23.0"] + }, + { + "ref": "pkg:npm/@babel/helper-member-expression-to-functions@7.16.0", + "dependsOn": ["pkg:npm/@babel/types@7.16.0"] + }, + { + "ref": "pkg:npm/@babel/helper-member-expression-to-functions@7.17.7", + "dependsOn": ["pkg:npm/@babel/types@7.17.0"] + }, + { + "ref": "pkg:npm/@babel/helper-module-imports@7.14.5", + "dependsOn": ["pkg:npm/@babel/types@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/helper-module-imports@7.16.0", + "dependsOn": ["pkg:npm/@babel/types@7.16.0"] + }, + { + "ref": "pkg:npm/@babel/helper-module-imports@7.16.7", + "dependsOn": ["pkg:npm/@babel/types@7.17.0"] + }, + { + "ref": "pkg:npm/@babel/helper-module-transforms@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-module-imports@7.16.0", + "pkg:npm/@babel/helper-replace-supers@7.16.0", + "pkg:npm/@babel/helper-simple-access@7.16.0", + "pkg:npm/@babel/helper-split-export-declaration@7.16.0", + "pkg:npm/@babel/helper-validator-identifier@7.15.7", + "pkg:npm/@babel/template@7.16.0", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-module-transforms@7.16.7", + "dependsOn": [ + "pkg:npm/@babel/helper-environment-visitor@7.16.7", + "pkg:npm/@babel/helper-module-imports@7.16.7", + "pkg:npm/@babel/helper-simple-access@7.16.7", + "pkg:npm/@babel/helper-split-export-declaration@7.16.7", + "pkg:npm/@babel/helper-validator-identifier@7.16.7", + "pkg:npm/@babel/template@7.16.7", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.17.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-module-transforms@7.18.0", + "dependsOn": [ + "pkg:npm/@babel/helper-environment-visitor@7.16.7", + "pkg:npm/@babel/helper-module-imports@7.16.7", + "pkg:npm/@babel/helper-simple-access@7.18.2", + "pkg:npm/@babel/helper-split-export-declaration@7.16.7", + "pkg:npm/@babel/helper-validator-identifier@7.16.7", + "pkg:npm/@babel/template@7.16.7", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.18.4" + ] + }, + { + "ref": "pkg:npm/@babel/helper-optimise-call-expression@7.16.0", + "dependsOn": ["pkg:npm/@babel/types@7.16.0"] + }, + { + "ref": "pkg:npm/@babel/helper-optimise-call-expression@7.16.7", + "dependsOn": ["pkg:npm/@babel/types@7.17.0"] + }, + { + "ref": "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-plugin-utils@7.17.12", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-remap-async-to-generator@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "pkg:npm/@babel/helper-wrap-function@7.16.0", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-replace-supers@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-member-expression-to-functions@7.16.0", + "pkg:npm/@babel/helper-optimise-call-expression@7.16.0", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-replace-supers@7.18.2", + "dependsOn": [ + "pkg:npm/@babel/helper-environment-visitor@7.18.2", + "pkg:npm/@babel/helper-member-expression-to-functions@7.17.7", + "pkg:npm/@babel/helper-optimise-call-expression@7.16.7", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.18.4" + ] + }, + { + "ref": "pkg:npm/@babel/helper-simple-access@7.16.0", + "dependsOn": ["pkg:npm/@babel/types@7.16.0"] + }, + { + "ref": "pkg:npm/@babel/helper-simple-access@7.16.7", + "dependsOn": ["pkg:npm/@babel/types@7.17.0"] + }, + { + "ref": "pkg:npm/@babel/helper-simple-access@7.18.2", + "dependsOn": ["pkg:npm/@babel/types@7.18.4"] + }, + { + "ref": "pkg:npm/@babel/helper-skip-transparent-expression-wrappers@7.16.0", + "dependsOn": ["pkg:npm/@babel/types@7.16.0"] + }, + { + "ref": "pkg:npm/@babel/helper-split-export-declaration@7.16.0", + "dependsOn": ["pkg:npm/@babel/types@7.16.0"] + }, + { + "ref": "pkg:npm/@babel/helper-split-export-declaration@7.16.7", + "dependsOn": ["pkg:npm/@babel/types@7.17.0"] + }, + { + "ref": "pkg:npm/@babel/helper-split-export-declaration@7.22.6", + "dependsOn": ["pkg:npm/@babel/types@7.23.0"] + }, + { + "ref": "pkg:npm/@babel/helper-string-parser@7.22.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-validator-identifier@7.14.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-validator-identifier@7.15.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-validator-identifier@7.16.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-validator-identifier@7.22.20", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-validator-option@7.14.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-validator-option@7.16.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-wrap-function@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-function-name@7.16.0", + "pkg:npm/@babel/template@7.16.0", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helpers@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/template@7.16.0", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helpers@7.17.2", + "dependsOn": [ + "pkg:npm/@babel/template@7.16.7", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.17.0" + ] + }, + { + "ref": "pkg:npm/@babel/helpers@7.18.2", + "dependsOn": [ + "pkg:npm/@babel/template@7.16.7", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.18.4" + ] + }, + { + "ref": "pkg:npm/@babel/highlight@7.14.5", + "dependsOn": [ + "pkg:npm/@babel/helper-validator-identifier@7.14.5", + "pkg:npm/chalk@2.4.2", + "pkg:npm/js-tokens@4.0.0" + ] + }, + { + "ref": "pkg:npm/@babel/highlight@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-validator-identifier@7.15.7", + "pkg:npm/chalk@2.4.2", + "pkg:npm/js-tokens@4.0.0" + ] + }, + { + "ref": "pkg:npm/@babel/highlight@7.16.10", + "dependsOn": [ + "pkg:npm/@babel/helper-validator-identifier@7.16.7", + "pkg:npm/chalk@2.4.2", + "pkg:npm/js-tokens@4.0.0" + ] + }, + { + "ref": "pkg:npm/@babel/highlight@7.22.20", + "dependsOn": [ + "pkg:npm/@babel/helper-validator-identifier@7.22.20", + "pkg:npm/chalk@2.4.2", + "pkg:npm/js-tokens@4.0.0" + ] + }, + { + "ref": "pkg:npm/@babel/parser@7.16.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/parser@7.17.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/parser@7.18.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/parser@7.23.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.16.2", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-skip-transparent-expression-wrappers@7.16.0", + "pkg:npm/@babel/plugin-proposal-optional-chaining@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-async-generator-functions@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-remap-async-to-generator@7.16.0", + "pkg:npm/@babel/plugin-syntax-async-generators@7.8.4" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-class-properties@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-create-class-features-plugin@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-class-static-block@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-create-class-features-plugin@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-class-static-block@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-dynamic-import@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-dynamic-import@7.8.3" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-export-namespace-from@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-export-namespace-from@7.8.3" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-json-strings@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-json-strings@7.8.3" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-logical-assignment-operators@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-logical-assignment-operators@7.10.4" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-nullish-coalescing-operator@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-numeric-separator@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-numeric-separator@7.10.4" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-object-rest-spread@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/compat-data@7.16.0", + "pkg:npm/@babel/helper-compilation-targets@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-object-rest-spread@7.8.3", + "pkg:npm/@babel/plugin-transform-parameters@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-optional-catch-binding@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-optional-catch-binding@7.8.3" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-optional-chaining@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-skip-transparent-expression-wrappers@7.16.0", + "pkg:npm/@babel/plugin-syntax-optional-chaining@7.8.3" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-private-methods@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-create-class-features-plugin@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-private-property-in-object@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "pkg:npm/@babel/helper-create-class-features-plugin@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-private-property-in-object@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-unicode-property-regex@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-create-regexp-features-plugin@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-async-generators@7.8.4", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-bigint@7.8.3", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-class-properties@7.12.13", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-class-static-block@7.14.5", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-dynamic-import@7.8.3", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-export-namespace-from@7.8.3", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-import-meta@7.10.4", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-json-strings@7.8.3", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-jsx@7.14.5", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-jsx@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-logical-assignment-operators@7.10.4", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-numeric-separator@7.10.4", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-object-rest-spread@7.8.3", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-optional-catch-binding@7.8.3", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-optional-chaining@7.8.3", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-private-property-in-object@7.14.5", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-top-level-await@7.14.5", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-typescript@7.17.12", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.17.12"] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-typescript@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-arrow-functions@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-async-to-generator@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-module-imports@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-remap-async-to-generator@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-block-scoped-functions@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-block-scoping@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-classes@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "pkg:npm/@babel/helper-function-name@7.16.0", + "pkg:npm/@babel/helper-optimise-call-expression@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-replace-supers@7.16.0", + "pkg:npm/@babel/helper-split-export-declaration@7.16.0", + "pkg:npm/globals@11.12.0" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-computed-properties@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-destructuring@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-dotall-regex@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-create-regexp-features-plugin@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-duplicate-keys@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-exponentiation-operator@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-builder-binary-assignment-operator-visitor@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-for-of@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-function-name@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-function-name@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-literals@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-member-expression-literals@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-modules-amd@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-module-transforms@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/babel-plugin-dynamic-import-node@2.3.3" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-modules-commonjs@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-module-transforms@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-simple-access@7.16.0", + "pkg:npm/babel-plugin-dynamic-import-node@2.3.3" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-modules-systemjs@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-hoist-variables@7.16.0", + "pkg:npm/@babel/helper-module-transforms@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-validator-identifier@7.15.7", + "pkg:npm/babel-plugin-dynamic-import-node@2.3.3" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-modules-umd@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-module-transforms@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-named-capturing-groups-regex@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-create-regexp-features-plugin@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-new-target@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-object-super@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-replace-supers@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-parameters@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-property-literals@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-react-display-name@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-react-jsx-development@7.16.0", + "dependsOn": ["pkg:npm/@babel/plugin-transform-react-jsx@7.16.0"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-react-jsx@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "pkg:npm/@babel/helper-module-imports@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-jsx@7.16.0", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-react-pure-annotations@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-regenerator@7.16.0", + "dependsOn": ["pkg:npm/regenerator-transform@0.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-reserved-words@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-runtime@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-module-imports@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/babel-plugin-polyfill-corejs2@0.2.3", + "pkg:npm/babel-plugin-polyfill-corejs3@0.3.0", + "pkg:npm/babel-plugin-polyfill-regenerator@0.2.3", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-shorthand-properties@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-spread@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-skip-transparent-expression-wrappers@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-sticky-regex@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-template-literals@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-typeof-symbol@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-typescript@7.18.4", + "dependsOn": [ + "pkg:npm/@babel/helper-create-class-features-plugin@7.18.0", + "pkg:npm/@babel/helper-plugin-utils@7.17.12", + "pkg:npm/@babel/plugin-syntax-typescript@7.17.12" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-unicode-escapes@7.16.0", + "dependsOn": ["pkg:npm/@babel/helper-plugin-utils@7.14.5"] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-unicode-regex@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-create-regexp-features-plugin@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/preset-env@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/compat-data@7.16.0", + "pkg:npm/@babel/helper-compilation-targets@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-validator-option@7.14.5", + "pkg:npm/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.16.2", + "pkg:npm/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.16.0", + "pkg:npm/@babel/plugin-proposal-async-generator-functions@7.16.0", + "pkg:npm/@babel/plugin-proposal-class-properties@7.16.0", + "pkg:npm/@babel/plugin-proposal-class-static-block@7.16.0", + "pkg:npm/@babel/plugin-proposal-dynamic-import@7.16.0", + "pkg:npm/@babel/plugin-proposal-export-namespace-from@7.16.0", + "pkg:npm/@babel/plugin-proposal-json-strings@7.16.0", + "pkg:npm/@babel/plugin-proposal-logical-assignment-operators@7.16.0", + "pkg:npm/@babel/plugin-proposal-nullish-coalescing-operator@7.16.0", + "pkg:npm/@babel/plugin-proposal-numeric-separator@7.16.0", + "pkg:npm/@babel/plugin-proposal-object-rest-spread@7.16.0", + "pkg:npm/@babel/plugin-proposal-optional-catch-binding@7.16.0", + "pkg:npm/@babel/plugin-proposal-optional-chaining@7.16.0", + "pkg:npm/@babel/plugin-proposal-private-methods@7.16.0", + "pkg:npm/@babel/plugin-proposal-private-property-in-object@7.16.0", + "pkg:npm/@babel/plugin-proposal-unicode-property-regex@7.16.0", + "pkg:npm/@babel/plugin-syntax-async-generators@7.8.4", + "pkg:npm/@babel/plugin-syntax-class-properties@7.12.13", + "pkg:npm/@babel/plugin-syntax-class-static-block@7.14.5", + "pkg:npm/@babel/plugin-syntax-dynamic-import@7.8.3", + "pkg:npm/@babel/plugin-syntax-export-namespace-from@7.8.3", + "pkg:npm/@babel/plugin-syntax-json-strings@7.8.3", + "pkg:npm/@babel/plugin-syntax-logical-assignment-operators@7.10.4", + "pkg:npm/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3", + "pkg:npm/@babel/plugin-syntax-numeric-separator@7.10.4", + "pkg:npm/@babel/plugin-syntax-object-rest-spread@7.8.3", + "pkg:npm/@babel/plugin-syntax-optional-catch-binding@7.8.3", + "pkg:npm/@babel/plugin-syntax-optional-chaining@7.8.3", + "pkg:npm/@babel/plugin-syntax-private-property-in-object@7.14.5", + "pkg:npm/@babel/plugin-syntax-top-level-await@7.14.5", + "pkg:npm/@babel/plugin-transform-arrow-functions@7.16.0", + "pkg:npm/@babel/plugin-transform-async-to-generator@7.16.0", + "pkg:npm/@babel/plugin-transform-block-scoped-functions@7.16.0", + "pkg:npm/@babel/plugin-transform-block-scoping@7.16.0", + "pkg:npm/@babel/plugin-transform-classes@7.16.0", + "pkg:npm/@babel/plugin-transform-computed-properties@7.16.0", + "pkg:npm/@babel/plugin-transform-destructuring@7.16.0", + "pkg:npm/@babel/plugin-transform-dotall-regex@7.16.0", + "pkg:npm/@babel/plugin-transform-duplicate-keys@7.16.0", + "pkg:npm/@babel/plugin-transform-exponentiation-operator@7.16.0", + "pkg:npm/@babel/plugin-transform-for-of@7.16.0", + "pkg:npm/@babel/plugin-transform-function-name@7.16.0", + "pkg:npm/@babel/plugin-transform-literals@7.16.0", + "pkg:npm/@babel/plugin-transform-member-expression-literals@7.16.0", + "pkg:npm/@babel/plugin-transform-modules-amd@7.16.0", + "pkg:npm/@babel/plugin-transform-modules-commonjs@7.16.0", + "pkg:npm/@babel/plugin-transform-modules-systemjs@7.16.0", + "pkg:npm/@babel/plugin-transform-modules-umd@7.16.0", + "pkg:npm/@babel/plugin-transform-named-capturing-groups-regex@7.16.0", + "pkg:npm/@babel/plugin-transform-new-target@7.16.0", + "pkg:npm/@babel/plugin-transform-object-super@7.16.0", + "pkg:npm/@babel/plugin-transform-parameters@7.16.0", + "pkg:npm/@babel/plugin-transform-property-literals@7.16.0", + "pkg:npm/@babel/plugin-transform-regenerator@7.16.0", + "pkg:npm/@babel/plugin-transform-reserved-words@7.16.0", + "pkg:npm/@babel/plugin-transform-shorthand-properties@7.16.0", + "pkg:npm/@babel/plugin-transform-spread@7.16.0", + "pkg:npm/@babel/plugin-transform-sticky-regex@7.16.0", + "pkg:npm/@babel/plugin-transform-template-literals@7.16.0", + "pkg:npm/@babel/plugin-transform-typeof-symbol@7.16.0", + "pkg:npm/@babel/plugin-transform-unicode-escapes@7.16.0", + "pkg:npm/@babel/plugin-transform-unicode-regex@7.16.0", + "pkg:npm/@babel/preset-modules@0.1.5", + "pkg:npm/@babel/types@7.16.0", + "pkg:npm/babel-plugin-polyfill-corejs2@0.2.3", + "pkg:npm/babel-plugin-polyfill-corejs3@0.3.0", + "pkg:npm/babel-plugin-polyfill-regenerator@0.2.3", + "pkg:npm/core-js-compat@3.19.1", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/@babel/preset-modules@0.1.5", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-proposal-unicode-property-regex@7.16.0", + "pkg:npm/@babel/plugin-transform-dotall-regex@7.16.0", + "pkg:npm/@babel/types@7.16.0", + "pkg:npm/esutils@2.0.3" + ] + }, + { + "ref": "pkg:npm/@babel/preset-react@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-validator-option@7.14.5", + "pkg:npm/@babel/plugin-transform-react-display-name@7.16.0", + "pkg:npm/@babel/plugin-transform-react-jsx-development@7.16.0", + "pkg:npm/@babel/plugin-transform-react-jsx@7.16.0", + "pkg:npm/@babel/plugin-transform-react-pure-annotations@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/preset-typescript@7.17.12", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.17.12", + "pkg:npm/@babel/helper-validator-option@7.16.7", + "pkg:npm/@babel/plugin-transform-typescript@7.18.4" + ] + }, + { + "ref": "pkg:npm/@babel/runtime-corejs3@7.15.4", + "dependsOn": [ + "pkg:npm/core-js-pure@3.18.0", + "pkg:npm/regenerator-runtime@0.13.9" + ] + }, + { + "ref": "pkg:npm/@babel/runtime@7.17.2", + "dependsOn": ["pkg:npm/regenerator-runtime@0.13.9"] + }, + { + "ref": "pkg:npm/@babel/runtime@7.15.4", + "dependsOn": ["pkg:npm/regenerator-runtime@0.13.9"] + }, + { + "ref": "pkg:npm/@babel/runtime@7.18.3", + "dependsOn": ["pkg:npm/regenerator-runtime@0.13.9"] + }, + { + "ref": "pkg:npm/@babel/runtime@7.16.0", + "dependsOn": ["pkg:npm/regenerator-runtime@0.13.9"] + }, + { + "ref": "pkg:npm/@babel/runtime@7.15.3", + "dependsOn": ["pkg:npm/regenerator-runtime@0.13.9"] + }, + { + "ref": "pkg:npm/@babel/runtime@7.14.6", + "dependsOn": ["pkg:npm/regenerator-runtime@0.13.9"] + }, + { + "ref": "pkg:npm/@babel/runtime@7.21.5", + "dependsOn": ["pkg:npm/regenerator-runtime@0.13.11"] + }, + { + "ref": "pkg:npm/@babel/runtime@7.17.9", + "dependsOn": ["pkg:npm/regenerator-runtime@0.13.9"] + }, + { + "ref": "pkg:npm/@babel/template@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/code-frame@7.16.0", + "pkg:npm/@babel/parser@7.16.2", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/template@7.16.7", + "dependsOn": [ + "pkg:npm/@babel/code-frame@7.16.7", + "pkg:npm/@babel/parser@7.17.0", + "pkg:npm/@babel/types@7.17.0" + ] + }, + { + "ref": "pkg:npm/@babel/template@7.22.15", + "dependsOn": [ + "pkg:npm/@babel/code-frame@7.22.13", + "pkg:npm/@babel/parser@7.23.0", + "pkg:npm/@babel/types@7.23.0" + ] + }, + { + "ref": "pkg:npm/@babel/traverse@7.23.2", + "dependsOn": [ + "pkg:npm/@babel/code-frame@7.22.13", + "pkg:npm/@babel/generator@7.23.0", + "pkg:npm/@babel/helper-environment-visitor@7.22.20", + "pkg:npm/@babel/helper-function-name@7.23.0", + "pkg:npm/@babel/helper-hoist-variables@7.22.5", + "pkg:npm/@babel/helper-split-export-declaration@7.22.6", + "pkg:npm/@babel/parser@7.23.0", + "pkg:npm/@babel/types@7.23.0", + "pkg:npm/debug@4.3.4", + "pkg:npm/globals@11.12.0" + ] + }, + { + "ref": "pkg:npm/@babel/types@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-validator-identifier@7.15.7", + "pkg:npm/to-fast-properties@2.0.0" + ] + }, + { + "ref": "pkg:npm/@babel/types@7.14.5", + "dependsOn": [ + "pkg:npm/@babel/helper-validator-identifier@7.14.5", + "pkg:npm/to-fast-properties@2.0.0" + ] + }, + { + "ref": "pkg:npm/@babel/types@7.17.0", + "dependsOn": [ + "pkg:npm/@babel/helper-validator-identifier@7.16.7", + "pkg:npm/to-fast-properties@2.0.0" + ] + }, + { + "ref": "pkg:npm/@babel/types@7.18.4", + "dependsOn": [ + "pkg:npm/@babel/helper-validator-identifier@7.16.7", + "pkg:npm/to-fast-properties@2.0.0" + ] + }, + { + "ref": "pkg:npm/@babel/types@7.23.0", + "dependsOn": [ + "pkg:npm/@babel/helper-string-parser@7.22.5", + "pkg:npm/@babel/helper-validator-identifier@7.22.20", + "pkg:npm/to-fast-properties@2.0.0" + ] + }, + { + "ref": "pkg:npm/@bcoe/v8-coverage@0.2.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/accordion@2.1.4", + "dependsOn": [ + "pkg:npm/@chakra-ui/descendant@3.0.11", + "pkg:npm/@chakra-ui/icon@3.0.13", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/transition@2.0.12" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/alert@2.0.13", + "dependsOn": [ + "pkg:npm/@chakra-ui/icon@3.0.13", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/spinner@2.0.11" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/anatomy@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/avatar@2.2.1", + "dependsOn": [ + "pkg:npm/@chakra-ui/image@2.0.12", + "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "pkg:npm/@chakra-ui/react-context@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/breadcrumb@2.1.1", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "pkg:npm/@chakra-ui/react-context@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/breakpoint-utils@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/button@2.0.13", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/spinner@2.0.11" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/card@2.1.1", + "dependsOn": ["pkg:npm/@chakra-ui/react-context@2.0.5"] + }, + { + "ref": "pkg:npm/@chakra-ui/checkbox@2.2.5", + "dependsOn": [ + "pkg:npm/@chakra-ui/form-control@2.0.13", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5", + "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3", + "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5", + "pkg:npm/@chakra-ui/visually-hidden@2.0.13", + "pkg:npm/@zag-js/focus-visible@0.1.0" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/clickable@2.0.11", + "dependsOn": ["pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5"] + }, + { + "ref": "pkg:npm/@chakra-ui/close-button@2.0.13", + "dependsOn": ["pkg:npm/@chakra-ui/icon@3.0.13"] + }, + { + "ref": "pkg:npm/@chakra-ui/color-mode@2.1.10", + "dependsOn": ["pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3"] + }, + { + "ref": "pkg:npm/@chakra-ui/control-box@2.0.11", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/counter@2.0.11", + "dependsOn": [ + "pkg:npm/@chakra-ui/number-utils@2.0.5", + "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/css-reset@2.0.10", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/descendant@3.0.11", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/dom-utils@2.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/editable@2.0.16", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5", + "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-focus-on-pointer-down@2.0.4", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3", + "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5", + "pkg:npm/@chakra-ui/shared-utils@2.0.3" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/event-utils@2.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/focus-lock@2.0.13", + "dependsOn": [ + "pkg:npm/@chakra-ui/dom-utils@2.0.4", + "pkg:npm/react-focus-lock@2.9.4" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/form-control@2.0.13", + "dependsOn": [ + "pkg:npm/@chakra-ui/icon@3.0.13", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/hooks@2.1.2", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-utils@2.0.9", + "pkg:npm/@chakra-ui/utils@2.0.12", + "pkg:npm/compute-scroll-into-view@1.0.14", + "pkg:npm/copy-to-clipboard@3.3.1" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/icon@3.0.13", + "dependsOn": ["pkg:npm/@chakra-ui/shared-utils@2.0.3"] + }, + { + "ref": "pkg:npm/@chakra-ui/image@2.0.12", + "dependsOn": ["pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3"] + }, + { + "ref": "pkg:npm/@chakra-ui/input@2.0.14", + "dependsOn": [ + "pkg:npm/@chakra-ui/form-control@2.0.13", + "pkg:npm/@chakra-ui/object-utils@2.0.5", + "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/shared-utils@2.0.3" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/layout@2.1.11", + "dependsOn": [ + "pkg:npm/@chakra-ui/breakpoint-utils@2.0.5", + "pkg:npm/@chakra-ui/icon@3.0.13", + "pkg:npm/@chakra-ui/object-utils@2.0.5", + "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/shared-utils@2.0.3" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/lazy-utils@2.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/live-region@2.0.11", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/media-query@3.2.8", + "dependsOn": [ + "pkg:npm/@chakra-ui/breakpoint-utils@2.0.5", + "pkg:npm/@chakra-ui/react-env@2.0.11" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/menu@2.1.5", + "dependsOn": [ + "pkg:npm/@chakra-ui/clickable@2.0.11", + "pkg:npm/@chakra-ui/descendant@3.0.11", + "pkg:npm/@chakra-ui/lazy-utils@2.0.3", + "pkg:npm/@chakra-ui/popper@3.0.10", + "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-use-animation-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-disclosure@2.0.6", + "pkg:npm/@chakra-ui/react-use-focus-effect@2.0.7", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/react-use-outside-click@2.0.5", + "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5", + "pkg:npm/@chakra-ui/transition@2.0.12" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/modal@2.2.4", + "dependsOn": [ + "pkg:npm/@chakra-ui/close-button@2.0.13", + "pkg:npm/@chakra-ui/focus-lock@2.0.13", + "pkg:npm/@chakra-ui/portal@2.0.11", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/transition@2.0.12", + "pkg:npm/aria-hidden@1.2.3", + "pkg:npm/react-remove-scroll@2.5.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/number-input@2.0.14", + "dependsOn": [ + "pkg:npm/@chakra-ui/counter@2.0.11", + "pkg:npm/@chakra-ui/form-control@2.0.13", + "pkg:npm/@chakra-ui/icon@3.0.13", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5", + "pkg:npm/@chakra-ui/react-use-event-listener@2.0.5", + "pkg:npm/@chakra-ui/react-use-interval@2.0.3", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3", + "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/number-utils@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/object-utils@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/pin-input@2.0.16", + "dependsOn": [ + "pkg:npm/@chakra-ui/descendant@3.0.11", + "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/popover@2.1.4", + "dependsOn": [ + "pkg:npm/@chakra-ui/close-button@2.0.13", + "pkg:npm/@chakra-ui/lazy-utils@2.0.3", + "pkg:npm/@chakra-ui/popper@3.0.10", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-animation-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-disclosure@2.0.6", + "pkg:npm/@chakra-ui/react-use-focus-effect@2.0.7", + "pkg:npm/@chakra-ui/react-use-focus-on-pointer-down@2.0.4", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/popper@3.0.10", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@popperjs/core@2.11.2" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/portal@2.0.11", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/progress@2.1.1", + "dependsOn": ["pkg:npm/@chakra-ui/react-context@2.0.5"] + }, + { + "ref": "pkg:npm/@chakra-ui/provider@2.0.24", + "dependsOn": [ + "pkg:npm/@chakra-ui/css-reset@2.0.10", + "pkg:npm/@chakra-ui/portal@2.0.11", + "pkg:npm/@chakra-ui/react-env@2.0.11", + "pkg:npm/@chakra-ui/system@2.3.4", + "pkg:npm/@chakra-ui/utils@2.0.12" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/radio@2.0.14", + "dependsOn": [ + "pkg:npm/@chakra-ui/form-control@2.0.13", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@zag-js/focus-visible@0.1.0" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-context@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-env@2.0.11", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-types@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-animation-state@2.0.6", + "dependsOn": [ + "pkg:npm/@chakra-ui/dom-utils@2.0.4", + "pkg:npm/@chakra-ui/react-use-event-listener@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "dependsOn": ["pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5"] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-disclosure@2.0.6", + "dependsOn": ["pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5"] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-event-listener@2.0.5", + "dependsOn": ["pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5"] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-focus-effect@2.0.7", + "dependsOn": [ + "pkg:npm/@chakra-ui/dom-utils@2.0.4", + "pkg:npm/@chakra-ui/react-use-event-listener@2.0.5", + "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3", + "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-focus-on-pointer-down@2.0.4", + "dependsOn": ["pkg:npm/@chakra-ui/react-use-event-listener@2.0.5"] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-interval@2.0.3", + "dependsOn": ["pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5"] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-latest-ref@2.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-outside-click@2.0.5", + "dependsOn": ["pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5"] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-pan-event@2.0.6", + "dependsOn": [ + "pkg:npm/@chakra-ui/event-utils@2.0.6", + "pkg:npm/@chakra-ui/react-use-latest-ref@2.0.3", + "pkg:npm/framesync@5.3.0" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-previous@2.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-size@2.0.5", + "dependsOn": ["pkg:npm/@zag-js/element-size@0.1.0"] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-timeout@2.0.3", + "dependsOn": ["pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5"] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-utils@2.0.9", + "dependsOn": ["pkg:npm/@chakra-ui/utils@2.0.12"] + }, + { + "ref": "pkg:npm/@chakra-ui/react@2.4.2", + "dependsOn": [ + "pkg:npm/@chakra-ui/accordion@2.1.4", + "pkg:npm/@chakra-ui/alert@2.0.13", + "pkg:npm/@chakra-ui/avatar@2.2.1", + "pkg:npm/@chakra-ui/breadcrumb@2.1.1", + "pkg:npm/@chakra-ui/button@2.0.13", + "pkg:npm/@chakra-ui/card@2.1.1", + "pkg:npm/@chakra-ui/checkbox@2.2.5", + "pkg:npm/@chakra-ui/close-button@2.0.13", + "pkg:npm/@chakra-ui/control-box@2.0.11", + "pkg:npm/@chakra-ui/counter@2.0.11", + "pkg:npm/@chakra-ui/css-reset@2.0.10", + "pkg:npm/@chakra-ui/editable@2.0.16", + "pkg:npm/@chakra-ui/form-control@2.0.13", + "pkg:npm/@chakra-ui/hooks@2.1.2", + "pkg:npm/@chakra-ui/icon@3.0.13", + "pkg:npm/@chakra-ui/image@2.0.12", + "pkg:npm/@chakra-ui/input@2.0.14", + "pkg:npm/@chakra-ui/layout@2.1.11", + "pkg:npm/@chakra-ui/live-region@2.0.11", + "pkg:npm/@chakra-ui/media-query@3.2.8", + "pkg:npm/@chakra-ui/menu@2.1.5", + "pkg:npm/@chakra-ui/modal@2.2.4", + "pkg:npm/@chakra-ui/number-input@2.0.14", + "pkg:npm/@chakra-ui/pin-input@2.0.16", + "pkg:npm/@chakra-ui/popover@2.1.4", + "pkg:npm/@chakra-ui/popper@3.0.10", + "pkg:npm/@chakra-ui/portal@2.0.11", + "pkg:npm/@chakra-ui/progress@2.1.1", + "pkg:npm/@chakra-ui/provider@2.0.24", + "pkg:npm/@chakra-ui/radio@2.0.14", + "pkg:npm/@chakra-ui/react-env@2.0.11", + "pkg:npm/@chakra-ui/select@2.0.14", + "pkg:npm/@chakra-ui/skeleton@2.0.18", + "pkg:npm/@chakra-ui/slider@2.0.14", + "pkg:npm/@chakra-ui/spinner@2.0.11", + "pkg:npm/@chakra-ui/stat@2.0.13", + "pkg:npm/@chakra-ui/styled-system@2.4.0", + "pkg:npm/@chakra-ui/switch@2.0.17", + "pkg:npm/@chakra-ui/system@2.3.4", + "pkg:npm/@chakra-ui/table@2.0.12", + "pkg:npm/@chakra-ui/tabs@2.1.5", + "pkg:npm/@chakra-ui/tag@2.0.13", + "pkg:npm/@chakra-ui/textarea@2.0.14", + "pkg:npm/@chakra-ui/theme-utils@2.0.5", + "pkg:npm/@chakra-ui/theme@2.2.2", + "pkg:npm/@chakra-ui/toast@4.0.4", + "pkg:npm/@chakra-ui/tooltip@2.2.2", + "pkg:npm/@chakra-ui/transition@2.0.12", + "pkg:npm/@chakra-ui/utils@2.0.12", + "pkg:npm/@chakra-ui/visually-hidden@2.0.13" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/select@2.0.14", + "dependsOn": ["pkg:npm/@chakra-ui/form-control@2.0.13"] + }, + { + "ref": "pkg:npm/@chakra-ui/shared-utils@2.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/skeleton@2.0.18", + "dependsOn": [ + "pkg:npm/@chakra-ui/media-query@3.2.8", + "pkg:npm/@chakra-ui/react-use-previous@2.0.3" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/slider@2.0.14", + "dependsOn": [ + "pkg:npm/@chakra-ui/number-utils@2.0.5", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5", + "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-latest-ref@2.0.3", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/react-use-pan-event@2.0.6", + "pkg:npm/@chakra-ui/react-use-size@2.0.5", + "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/spinner@2.0.11", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/stat@2.0.13", + "dependsOn": [ + "pkg:npm/@chakra-ui/icon@3.0.13", + "pkg:npm/@chakra-ui/react-context@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/styled-system@2.4.0", + "dependsOn": ["pkg:npm/csstype@3.1.0", "pkg:npm/lodash.mergewith@4.6.2"] + }, + { + "ref": "pkg:npm/@chakra-ui/switch@2.0.17", + "dependsOn": ["pkg:npm/@chakra-ui/checkbox@2.2.5"] + }, + { + "ref": "pkg:npm/@chakra-ui/system@2.3.4", + "dependsOn": [ + "pkg:npm/@chakra-ui/color-mode@2.1.10", + "pkg:npm/@chakra-ui/react-utils@2.0.9", + "pkg:npm/@chakra-ui/styled-system@2.4.0", + "pkg:npm/@chakra-ui/theme-utils@2.0.5", + "pkg:npm/@chakra-ui/utils@2.0.12", + "pkg:npm/react-fast-compare@3.2.0" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/table@2.0.12", + "dependsOn": ["pkg:npm/@chakra-ui/react-context@2.0.5"] + }, + { + "ref": "pkg:npm/@chakra-ui/tabs@2.1.5", + "dependsOn": [ + "pkg:npm/@chakra-ui/clickable@2.0.11", + "pkg:npm/@chakra-ui/descendant@3.0.11", + "pkg:npm/@chakra-ui/lazy-utils@2.0.3", + "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/tag@2.0.13", + "dependsOn": [ + "pkg:npm/@chakra-ui/icon@3.0.13", + "pkg:npm/@chakra-ui/react-context@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/textarea@2.0.14", + "dependsOn": ["pkg:npm/@chakra-ui/form-control@2.0.13"] + }, + { + "ref": "pkg:npm/@chakra-ui/theme-tools@2.0.14", + "dependsOn": ["pkg:npm/@chakra-ui/anatomy@2.1.0", "pkg:npm/color2k@2.0.2"] + }, + { + "ref": "pkg:npm/@chakra-ui/theme-utils@2.0.5", + "dependsOn": [ + "pkg:npm/@chakra-ui/styled-system@2.4.0", + "pkg:npm/@chakra-ui/theme@2.2.2", + "pkg:npm/lodash.mergewith@4.6.2" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/theme@2.2.2", + "dependsOn": [ + "pkg:npm/@chakra-ui/anatomy@2.1.0", + "pkg:npm/@chakra-ui/theme-tools@2.0.14" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/toast@4.0.4", + "dependsOn": [ + "pkg:npm/@chakra-ui/alert@2.0.13", + "pkg:npm/@chakra-ui/close-button@2.0.13", + "pkg:npm/@chakra-ui/portal@2.0.11", + "pkg:npm/@chakra-ui/react-use-timeout@2.0.3", + "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5", + "pkg:npm/@chakra-ui/styled-system@2.4.0", + "pkg:npm/@chakra-ui/theme@2.2.2" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/tooltip@2.2.2", + "dependsOn": [ + "pkg:npm/@chakra-ui/popper@3.0.10", + "pkg:npm/@chakra-ui/portal@2.0.11", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-disclosure@2.0.6", + "pkg:npm/@chakra-ui/react-use-event-listener@2.0.5", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/transition@2.0.12", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/utils@2.0.12", + "dependsOn": [ + "pkg:npm/@types/lodash.mergewith@4.6.6", + "pkg:npm/css-box-model@1.2.1", + "pkg:npm/framesync@5.3.0", + "pkg:npm/lodash.mergewith@4.6.2" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/visually-hidden@2.0.13", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@csstools/css-parser-algorithms@2.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@csstools/css-tokenizer@2.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@csstools/media-query-list-parser@2.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@csstools/selector-specificity@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@discoveryjs/json-ext@0.5.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@emotion/babel-plugin@11.3.0", + "dependsOn": [ + "pkg:npm/@babel/helper-module-imports@7.14.5", + "pkg:npm/@babel/plugin-syntax-jsx@7.14.5", + "pkg:npm/@babel/runtime@7.15.3", + "pkg:npm/@emotion/hash@0.8.0", + "pkg:npm/@emotion/memoize@0.7.5", + "pkg:npm/@emotion/serialize@1.0.2", + "pkg:npm/babel-plugin-macros@2.8.0", + "pkg:npm/convert-source-map@1.8.0", + "pkg:npm/escape-string-regexp@4.0.0", + "pkg:npm/find-root@1.1.0", + "pkg:npm/source-map@0.5.7", + "pkg:npm/stylis@4.0.10" + ] + }, + { + "ref": "pkg:npm/@emotion/babel-plugin@11.9.2", + "dependsOn": [ + "pkg:npm/@babel/helper-module-imports@7.14.5", + "pkg:npm/@babel/plugin-syntax-jsx@7.14.5", + "pkg:npm/@babel/runtime@7.15.3", + "pkg:npm/@emotion/hash@0.8.0", + "pkg:npm/@emotion/memoize@0.7.5", + "pkg:npm/@emotion/serialize@1.0.2", + "pkg:npm/babel-plugin-macros@2.8.0", + "pkg:npm/convert-source-map@1.8.0", + "pkg:npm/escape-string-regexp@4.0.0", + "pkg:npm/find-root@1.1.0", + "pkg:npm/source-map@0.5.7", + "pkg:npm/stylis@4.0.13" + ] + }, + { + "ref": "pkg:npm/@emotion/cache@11.9.3", + "dependsOn": [ + "pkg:npm/@emotion/memoize@0.7.5", + "pkg:npm/@emotion/sheet@1.1.1", + "pkg:npm/@emotion/utils@1.1.0", + "pkg:npm/@emotion/weak-memoize@0.2.5", + "pkg:npm/stylis@4.0.13" + ] + }, + { + "ref": "pkg:npm/@emotion/hash@0.8.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@emotion/is-prop-valid@0.8.8", + "dependsOn": ["pkg:npm/@emotion/memoize@0.7.4"] + }, + { + "ref": "pkg:npm/@emotion/is-prop-valid@1.1.0", + "dependsOn": ["pkg:npm/@emotion/memoize@0.7.5"] + }, + { + "ref": "pkg:npm/@emotion/memoize@0.7.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@emotion/memoize@0.7.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@emotion/react@11.9.3", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.15.3", + "pkg:npm/@emotion/babel-plugin@11.9.2", + "pkg:npm/@emotion/cache@11.9.3", + "pkg:npm/@emotion/serialize@1.0.4", + "pkg:npm/@emotion/utils@1.1.0", + "pkg:npm/@emotion/weak-memoize@0.2.5", + "pkg:npm/hoist-non-react-statics@3.3.2" + ] + }, + { + "ref": "pkg:npm/@emotion/serialize@1.0.2", + "dependsOn": [ + "pkg:npm/@emotion/hash@0.8.0", + "pkg:npm/@emotion/memoize@0.7.5", + "pkg:npm/@emotion/unitless@0.7.5", + "pkg:npm/@emotion/utils@1.1.0", + "pkg:npm/csstype@3.0.8" + ] + }, + { + "ref": "pkg:npm/@emotion/serialize@1.0.4", + "dependsOn": [ + "pkg:npm/@emotion/hash@0.8.0", + "pkg:npm/@emotion/memoize@0.7.5", + "pkg:npm/@emotion/unitless@0.7.5", + "pkg:npm/@emotion/utils@1.1.0", + "pkg:npm/csstype@3.0.8" + ] + }, + { + "ref": "pkg:npm/@emotion/sheet@1.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@emotion/styled@11.3.0", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.15.3", + "pkg:npm/@emotion/babel-plugin@11.3.0", + "pkg:npm/@emotion/is-prop-valid@1.1.0", + "pkg:npm/@emotion/serialize@1.0.2", + "pkg:npm/@emotion/utils@1.1.0" + ] + }, + { + "ref": "pkg:npm/@emotion/unitless@0.7.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@emotion/utils@1.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@emotion/weak-memoize@0.2.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@eslint/eslintrc@1.3.0", + "dependsOn": [ + "pkg:npm/ajv@6.12.6", + "pkg:npm/debug@4.3.4", + "pkg:npm/espree@9.3.2", + "pkg:npm/globals@13.15.0", + "pkg:npm/ignore@5.2.4", + "pkg:npm/import-fresh@3.3.0", + "pkg:npm/js-yaml@4.1.0", + "pkg:npm/minimatch@3.1.2", + "pkg:npm/strip-json-comments@3.1.1" + ] + }, + { + "ref": "pkg:npm/@exodus/schemasafe@1.0.0-rc.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@fastify/busboy@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@humanwhocodes/config-array@0.9.5", + "dependsOn": [ + "pkg:npm/@humanwhocodes/object-schema@1.2.1", + "pkg:npm/debug@4.3.4", + "pkg:npm/minimatch@3.1.2" + ] + }, + { + "ref": "pkg:npm/@humanwhocodes/object-schema@1.2.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@istanbuljs/load-nyc-config@1.1.0", + "dependsOn": [ + "pkg:npm/camelcase@5.3.1", + "pkg:npm/find-up@4.1.0", + "pkg:npm/get-package-type@0.1.0", + "pkg:npm/js-yaml@3.14.1", + "pkg:npm/resolve-from@5.0.0" + ] + }, + { + "ref": "pkg:npm/@istanbuljs/schema@0.1.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@jest/console@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/chalk@4.1.1", + "pkg:npm/jest-message-util@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/slash@3.0.0" + ] + }, + { + "ref": "pkg:npm/@jest/core@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/console@27.5.1", + "pkg:npm/@jest/reporters@27.5.1", + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/@jest/transform@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/ansi-escapes@4.3.2", + "pkg:npm/chalk@4.1.1", + "pkg:npm/emittery@0.8.1", + "pkg:npm/exit@0.1.2", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-changed-files@27.5.1", + "pkg:npm/jest-config@27.5.1", + "pkg:npm/jest-haste-map@27.5.1", + "pkg:npm/jest-message-util@27.5.1", + "pkg:npm/jest-regex-util@27.5.1", + "pkg:npm/jest-resolve-dependencies@27.5.1", + "pkg:npm/jest-resolve@27.5.1", + "pkg:npm/jest-runner@27.5.1", + "pkg:npm/jest-runtime@27.5.1", + "pkg:npm/jest-snapshot@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/jest-validate@27.5.1", + "pkg:npm/jest-watcher@27.5.1", + "pkg:npm/micromatch@4.0.5", + "pkg:npm/rimraf@3.0.2", + "pkg:npm/slash@3.0.0", + "pkg:npm/strip-ansi@6.0.1" + ] + }, + { + "ref": "pkg:npm/@jest/environment@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/fake-timers@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/jest-mock@27.5.1" + ] + }, + { + "ref": "pkg:npm/@jest/fake-timers@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@sinonjs/fake-timers@8.1.0", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/jest-message-util@27.5.1", + "pkg:npm/jest-mock@27.5.1", + "pkg:npm/jest-util@27.5.1" + ] + }, + { + "ref": "pkg:npm/@jest/globals@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/environment@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/expect@27.5.1" + ] + }, + { + "ref": "pkg:npm/@jest/reporters@27.5.1", + "dependsOn": [ + "pkg:npm/@bcoe/v8-coverage@0.2.3", + "pkg:npm/@jest/console@27.5.1", + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/@jest/transform@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/chalk@4.1.1", + "pkg:npm/collect-v8-coverage@1.0.1", + "pkg:npm/exit@0.1.2", + "pkg:npm/glob@7.2.0", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/istanbul-lib-coverage@3.2.0", + "pkg:npm/istanbul-lib-instrument@5.1.0", + "pkg:npm/istanbul-lib-report@3.0.0", + "pkg:npm/istanbul-lib-source-maps@4.0.1", + "pkg:npm/istanbul-reports@3.1.4", + "pkg:npm/jest-haste-map@27.5.1", + "pkg:npm/jest-resolve@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/jest-worker@27.5.1", + "pkg:npm/slash@3.0.0", + "pkg:npm/source-map@0.6.1", + "pkg:npm/string-length@4.0.2", + "pkg:npm/terminal-link@2.1.1", + "pkg:npm/v8-to-istanbul@8.1.0" + ] + }, + { + "ref": "pkg:npm/@jest/source-map@27.5.1", + "dependsOn": [ + "pkg:npm/callsites@3.1.0", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/source-map@0.6.1" + ] + }, + { + "ref": "pkg:npm/@jest/test-result@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/console@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/istanbul-lib-coverage@2.0.3", + "pkg:npm/collect-v8-coverage@1.0.1" + ] + }, + { + "ref": "pkg:npm/@jest/test-sequencer@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-haste-map@27.5.1", + "pkg:npm/jest-runtime@27.5.1" + ] + }, + { + "ref": "pkg:npm/@jest/transform@27.3.1", + "dependsOn": [ + "pkg:npm/@babel/core@7.16.0", + "pkg:npm/@jest/types@27.2.5", + "pkg:npm/babel-plugin-istanbul@6.1.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/convert-source-map@1.8.0", + "pkg:npm/fast-json-stable-stringify@2.1.0", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-haste-map@27.3.1", + "pkg:npm/jest-regex-util@27.0.6", + "pkg:npm/jest-util@27.3.1", + "pkg:npm/micromatch@4.0.5", + "pkg:npm/pirates@4.0.1", + "pkg:npm/slash@3.0.0", + "pkg:npm/source-map@0.6.1", + "pkg:npm/write-file-atomic@3.0.3" + ] + }, + { + "ref": "pkg:npm/@jest/transform@27.5.1", + "dependsOn": [ + "pkg:npm/@babel/core@7.16.0", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/babel-plugin-istanbul@6.1.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/convert-source-map@1.8.0", + "pkg:npm/fast-json-stable-stringify@2.1.0", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-haste-map@27.5.1", + "pkg:npm/jest-regex-util@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/micromatch@4.0.5", + "pkg:npm/pirates@4.0.5", + "pkg:npm/slash@3.0.0", + "pkg:npm/source-map@0.6.1", + "pkg:npm/write-file-atomic@3.0.3" + ] + }, + { + "ref": "pkg:npm/@jest/types@27.2.5", + "dependsOn": [ + "pkg:npm/@types/istanbul-lib-coverage@2.0.3", + "pkg:npm/@types/istanbul-reports@3.0.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/@types/yargs@16.0.4", + "pkg:npm/chalk@4.1.1" + ] + }, + { + "ref": "pkg:npm/@jest/types@27.5.1", + "dependsOn": [ + "pkg:npm/@types/istanbul-lib-coverage@2.0.3", + "pkg:npm/@types/istanbul-reports@3.0.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/@types/yargs@16.0.4", + "pkg:npm/chalk@4.1.1" + ] + }, + { + "ref": "pkg:npm/@jridgewell/gen-mapping@0.1.1", + "dependsOn": [ + "pkg:npm/@jridgewell/set-array@1.1.1", + "pkg:npm/@jridgewell/sourcemap-codec@1.4.14" + ] + }, + { + "ref": "pkg:npm/@jridgewell/gen-mapping@0.3.2", + "dependsOn": [ + "pkg:npm/@jridgewell/set-array@1.1.2", + "pkg:npm/@jridgewell/sourcemap-codec@1.4.14", + "pkg:npm/@jridgewell/trace-mapping@0.3.14" + ] + }, + { + "ref": "pkg:npm/@jridgewell/gen-mapping@0.3.3", + "dependsOn": [ + "pkg:npm/@jridgewell/set-array@1.1.2", + "pkg:npm/@jridgewell/sourcemap-codec@1.4.14", + "pkg:npm/@jridgewell/trace-mapping@0.3.14" + ] + }, + { + "ref": "pkg:npm/@jridgewell/resolve-uri@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@jridgewell/resolve-uri@3.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@jridgewell/set-array@1.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@jridgewell/set-array@1.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@jridgewell/source-map@0.3.2", + "dependsOn": [ + "pkg:npm/@jridgewell/gen-mapping@0.3.2", + "pkg:npm/@jridgewell/trace-mapping@0.3.14" + ] + }, + { + "ref": "pkg:npm/@jridgewell/sourcemap-codec@1.4.14", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@jridgewell/sourcemap-codec@1.4.15", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@jridgewell/trace-mapping@0.3.4", + "dependsOn": [ + "pkg:npm/@jridgewell/resolve-uri@3.1.0", + "pkg:npm/@jridgewell/sourcemap-codec@1.4.14" + ] + }, + { + "ref": "pkg:npm/@jridgewell/trace-mapping@0.3.19", + "dependsOn": [ + "pkg:npm/@jridgewell/resolve-uri@3.1.1", + "pkg:npm/@jridgewell/sourcemap-codec@1.4.15" + ] + }, + { + "ref": "pkg:npm/@jridgewell/trace-mapping@0.3.13", + "dependsOn": [ + "pkg:npm/@jridgewell/resolve-uri@3.1.0", + "pkg:npm/@jridgewell/sourcemap-codec@1.4.14" + ] + }, + { + "ref": "pkg:npm/@jridgewell/trace-mapping@0.3.14", + "dependsOn": [ + "pkg:npm/@jridgewell/resolve-uri@3.1.0", + "pkg:npm/@jridgewell/sourcemap-codec@1.4.14" + ] + }, + { + "ref": "pkg:npm/@nodelib/fs.scandir@2.1.5", + "dependsOn": [ + "pkg:npm/@nodelib/fs.stat@2.0.5", + "pkg:npm/run-parallel@1.2.0" + ] + }, + { + "ref": "pkg:npm/@nodelib/fs.stat@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@nodelib/fs.walk@1.2.7", + "dependsOn": ["pkg:npm/@nodelib/fs.scandir@2.1.5", "pkg:npm/fastq@1.11.0"] + }, + { + "ref": "pkg:npm/@npmcli/move-file@1.1.2", + "dependsOn": ["pkg:npm/mkdirp@1.0.4", "pkg:npm/rimraf@3.0.2"] + }, + { + "ref": "pkg:npm/@popperjs/core@2.11.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@reactflow/background@11.2.4", + "dependsOn": [ + "pkg:npm/@reactflow/core@11.7.4", + "pkg:npm/classcat@5.0.4", + "pkg:npm/zustand@4.3.9" + ] + }, + { + "ref": "pkg:npm/@reactflow/controls@11.1.15", + "dependsOn": [ + "pkg:npm/@reactflow/core@11.7.4", + "pkg:npm/classcat@5.0.4", + "pkg:npm/zustand@4.3.9" + ] + }, + { + "ref": "pkg:npm/@reactflow/core@11.7.4", + "dependsOn": [ + "pkg:npm/@types/d3-drag@3.0.1", + "pkg:npm/@types/d3-selection@3.0.3", + "pkg:npm/@types/d3-zoom@3.0.1", + "pkg:npm/@types/d3@7.4.0", + "pkg:npm/classcat@5.0.4", + "pkg:npm/d3-drag@3.0.0", + "pkg:npm/d3-selection@3.0.0", + "pkg:npm/d3-zoom@3.0.0", + "pkg:npm/zustand@4.3.9" + ] + }, + { + "ref": "pkg:npm/@reactflow/minimap@11.5.4", + "dependsOn": [ + "pkg:npm/@reactflow/core@11.7.4", + "pkg:npm/@types/d3-selection@3.0.3", + "pkg:npm/@types/d3-zoom@3.0.1", + "pkg:npm/classcat@5.0.4", + "pkg:npm/d3-selection@3.0.0", + "pkg:npm/d3-zoom@3.0.0", + "pkg:npm/zustand@4.3.9" + ] + }, + { + "ref": "pkg:npm/@reactflow/node-resizer@2.1.1", + "dependsOn": [ + "pkg:npm/@reactflow/core@11.7.4", + "pkg:npm/classcat@5.0.4", + "pkg:npm/d3-drag@3.0.0", + "pkg:npm/d3-selection@3.0.0", + "pkg:npm/zustand@4.3.9" + ] + }, + { + "ref": "pkg:npm/@reactflow/node-toolbar@1.2.3", + "dependsOn": [ + "pkg:npm/@reactflow/core@11.7.4", + "pkg:npm/classcat@5.0.4", + "pkg:npm/zustand@4.3.9" + ] + }, + { + "ref": "pkg:npm/@redocly/ajv@8.6.4", + "dependsOn": [ + "pkg:npm/fast-deep-equal@3.1.3", + "pkg:npm/json-schema-traverse@1.0.0", + "pkg:npm/require-from-string@2.0.2", + "pkg:npm/uri-js@4.4.1" + ] + }, + { + "ref": "pkg:npm/@redocly/openapi-core@1.0.0-beta.102", + "dependsOn": [ + "pkg:npm/@redocly/ajv@8.6.4", + "pkg:npm/@types/node@14.17.3", + "pkg:npm/colorette@1.2.2", + "pkg:npm/js-levenshtein@1.1.6", + "pkg:npm/js-yaml@4.1.0", + "pkg:npm/lodash.isequal@4.5.0", + "pkg:npm/minimatch@5.1.0", + "pkg:npm/node-fetch@2.6.7", + "pkg:npm/pluralize@8.0.0", + "pkg:npm/yaml-ast-parser@0.0.43" + ] + }, + { + "ref": "pkg:npm/@sinonjs/commons@1.8.3", + "dependsOn": ["pkg:npm/type-detect@4.0.8"] + }, + { + "ref": "pkg:npm/@sinonjs/fake-timers@8.1.0", + "dependsOn": ["pkg:npm/@sinonjs/commons@1.8.3"] + }, + { + "ref": "pkg:npm/@testing-library/dom@8.13.0", + "dependsOn": [ + "pkg:npm/@babel/code-frame@7.16.0", + "pkg:npm/@babel/runtime@7.16.0", + "pkg:npm/@types/aria-query@4.2.2", + "pkg:npm/aria-query@5.0.0", + "pkg:npm/chalk@4.1.1", + "pkg:npm/dom-accessibility-api@0.5.10", + "pkg:npm/lz-string@1.4.4", + "pkg:npm/pretty-format@27.3.1" + ] + }, + { + "ref": "pkg:npm/@testing-library/jest-dom@5.16.4", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.16.0", + "pkg:npm/@types/testing-library__jest-dom@5.14.1", + "pkg:npm/aria-query@5.0.0", + "pkg:npm/chalk@3.0.0", + "pkg:npm/css.escape@1.5.1", + "pkg:npm/css@3.0.0", + "pkg:npm/dom-accessibility-api@0.5.10", + "pkg:npm/lodash@4.17.21", + "pkg:npm/redent@3.0.0" + ] + }, + { + "ref": "pkg:npm/@testing-library/react@13.3.0", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.16.0", + "pkg:npm/@testing-library/dom@8.13.0", + "pkg:npm/@types/react-dom@18.0.5" + ] + }, + { + "ref": "pkg:npm/@tootallnate/once@1.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@trysound/sax@0.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/aria-query@4.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/babel__core@7.1.16", + "dependsOn": [ + "pkg:npm/@babel/parser@7.16.2", + "pkg:npm/@babel/types@7.16.0", + "pkg:npm/@types/babel__generator@7.6.3", + "pkg:npm/@types/babel__template@7.4.1", + "pkg:npm/@types/babel__traverse@7.14.2" + ] + }, + { + "ref": "pkg:npm/@types/babel__generator@7.6.3", + "dependsOn": ["pkg:npm/@babel/types@7.16.0"] + }, + { + "ref": "pkg:npm/@types/babel__template@7.4.1", + "dependsOn": [ + "pkg:npm/@babel/parser@7.16.2", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@types/babel__traverse@7.14.2", + "dependsOn": ["pkg:npm/@babel/types@7.16.0"] + }, + { + "ref": "pkg:npm/@types/color-convert@2.0.0", + "dependsOn": ["pkg:npm/@types/color-name@1.1.1"] + }, + { + "ref": "pkg:npm/@types/color-name@1.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/color@3.0.3", + "dependsOn": ["pkg:npm/@types/color-convert@2.0.0"] + }, + { + "ref": "pkg:npm/@types/d3-array@3.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-axis@3.0.1", + "dependsOn": ["pkg:npm/@types/d3-selection@3.0.3"] + }, + { + "ref": "pkg:npm/@types/d3-brush@3.0.1", + "dependsOn": ["pkg:npm/@types/d3-selection@3.0.3"] + }, + { + "ref": "pkg:npm/@types/d3-chord@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-color@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-color@1.4.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-contour@3.0.1", + "dependsOn": [ + "pkg:npm/@types/d3-array@3.0.3", + "pkg:npm/@types/geojson@7946.0.10" + ] + }, + { + "ref": "pkg:npm/@types/d3-delaunay@6.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-dispatch@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-drag@3.0.1", + "dependsOn": ["pkg:npm/@types/d3-selection@3.0.3"] + }, + { + "ref": "pkg:npm/@types/d3-dsv@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-ease@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-fetch@3.0.1", + "dependsOn": ["pkg:npm/@types/d3-dsv@3.0.0"] + }, + { + "ref": "pkg:npm/@types/d3-force@3.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-format@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-geo@3.0.2", + "dependsOn": ["pkg:npm/@types/geojson@7946.0.10"] + }, + { + "ref": "pkg:npm/@types/d3-hierarchy@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-interpolate@3.0.1", + "dependsOn": ["pkg:npm/@types/d3-color@3.1.0"] + }, + { + "ref": "pkg:npm/@types/d3-interpolate@1.4.2", + "dependsOn": ["pkg:npm/@types/d3-color@1.4.2"] + }, + { + "ref": "pkg:npm/@types/d3-path@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-path@1.0.9", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-polygon@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-quadtree@3.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-random@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-scale-chromatic@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-scale@4.0.2", + "dependsOn": ["pkg:npm/@types/d3-time@3.0.0"] + }, + { + "ref": "pkg:npm/@types/d3-scale@3.3.2", + "dependsOn": ["pkg:npm/@types/d3-time@2.1.1"] + }, + { + "ref": "pkg:npm/@types/d3-selection@3.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-shape@3.1.0", + "dependsOn": ["pkg:npm/@types/d3-path@3.0.0"] + }, + { + "ref": "pkg:npm/@types/d3-shape@1.3.8", + "dependsOn": ["pkg:npm/@types/d3-path@1.0.9"] + }, + { + "ref": "pkg:npm/@types/d3-time-format@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-time@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-time@2.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-timer@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-transition@3.0.2", + "dependsOn": ["pkg:npm/@types/d3-selection@3.0.3"] + }, + { + "ref": "pkg:npm/@types/d3-zoom@3.0.1", + "dependsOn": [ + "pkg:npm/@types/d3-interpolate@3.0.1", + "pkg:npm/@types/d3-selection@3.0.3" + ] + }, + { + "ref": "pkg:npm/@types/d3@7.4.0", + "dependsOn": [ + "pkg:npm/@types/d3-array@3.0.3", + "pkg:npm/@types/d3-axis@3.0.1", + "pkg:npm/@types/d3-brush@3.0.1", + "pkg:npm/@types/d3-chord@3.0.1", + "pkg:npm/@types/d3-color@3.1.0", + "pkg:npm/@types/d3-contour@3.0.1", + "pkg:npm/@types/d3-delaunay@6.0.1", + "pkg:npm/@types/d3-dispatch@3.0.1", + "pkg:npm/@types/d3-drag@3.0.1", + "pkg:npm/@types/d3-dsv@3.0.0", + "pkg:npm/@types/d3-ease@3.0.0", + "pkg:npm/@types/d3-fetch@3.0.1", + "pkg:npm/@types/d3-force@3.0.3", + "pkg:npm/@types/d3-format@3.0.1", + "pkg:npm/@types/d3-geo@3.0.2", + "pkg:npm/@types/d3-hierarchy@3.1.0", + "pkg:npm/@types/d3-interpolate@3.0.1", + "pkg:npm/@types/d3-path@3.0.0", + "pkg:npm/@types/d3-polygon@3.0.0", + "pkg:npm/@types/d3-quadtree@3.0.2", + "pkg:npm/@types/d3-random@3.0.1", + "pkg:npm/@types/d3-scale-chromatic@3.0.0", + "pkg:npm/@types/d3-scale@4.0.2", + "pkg:npm/@types/d3-selection@3.0.3", + "pkg:npm/@types/d3-shape@3.1.0", + "pkg:npm/@types/d3-time-format@4.0.0", + "pkg:npm/@types/d3-time@3.0.0", + "pkg:npm/@types/d3-timer@3.0.0", + "pkg:npm/@types/d3-transition@3.0.2", + "pkg:npm/@types/d3-zoom@3.0.1" + ] + }, + { + "ref": "pkg:npm/@types/debug@4.1.7", + "dependsOn": ["pkg:npm/@types/ms@0.7.31"] + }, + { + "ref": "pkg:npm/@types/eslint-scope@3.7.3", + "dependsOn": [ + "pkg:npm/@types/eslint@8.4.3", + "pkg:npm/@types/estree@0.0.51" + ] + }, + { + "ref": "pkg:npm/@types/eslint@8.4.3", + "dependsOn": [ + "pkg:npm/@types/estree@0.0.51", + "pkg:npm/@types/json-schema@7.0.11" + ] + }, + { + "ref": "pkg:npm/@types/estree@0.0.51", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/geojson@7946.0.10", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/glob@7.1.3", + "dependsOn": [ + "pkg:npm/@types/minimatch@3.0.4", + "pkg:npm/@types/node@15.12.2" + ] + }, + { + "ref": "pkg:npm/@types/graceful-fs@4.1.5", + "dependsOn": ["pkg:npm/@types/node@15.12.2"] + }, + { + "ref": "pkg:npm/@types/hast@2.3.4", + "dependsOn": ["pkg:npm/@types/unist@2.0.6"] + }, + { + "ref": "pkg:npm/@types/istanbul-lib-coverage@2.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/istanbul-lib-report@3.0.0", + "dependsOn": ["pkg:npm/@types/istanbul-lib-coverage@2.0.3"] + }, + { + "ref": "pkg:npm/@types/istanbul-reports@3.0.1", + "dependsOn": ["pkg:npm/@types/istanbul-lib-report@3.0.0"] + }, + { + "ref": "pkg:npm/@types/jest@27.0.2", + "dependsOn": ["pkg:npm/jest-diff@27.3.1", "pkg:npm/pretty-format@27.3.1"] + }, + { + "ref": "pkg:npm/@types/json-schema@7.0.11", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/json-schema@7.0.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/json5@0.0.29", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/lodash.mergewith@4.6.6", + "dependsOn": ["pkg:npm/@types/lodash@4.14.178"] + }, + { + "ref": "pkg:npm/@types/lodash@4.14.178", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/lodash@4.14.182", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/mdast@3.0.10", + "dependsOn": ["pkg:npm/@types/unist@2.0.6"] + }, + { + "ref": "pkg:npm/@types/minimatch@3.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/minimist@1.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/ms@0.7.31", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/node@15.12.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/node@14.17.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/normalize-package-data@2.4.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/parse-json@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/prettier@2.4.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/prop-types@15.7.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/prop-types@15.7.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/react-dom@18.0.5", + "dependsOn": ["pkg:npm/@types/react@18.0.15"] + }, + { + "ref": "pkg:npm/@types/react-syntax-highlighter@15.5.6", + "dependsOn": ["pkg:npm/@types/react@18.0.15"] + }, + { + "ref": "pkg:npm/@types/react-table@7.7.12", + "dependsOn": ["pkg:npm/@types/react@18.0.15"] + }, + { + "ref": "pkg:npm/@types/react-transition-group@4.4.5", + "dependsOn": ["pkg:npm/@types/react@18.0.15"] + }, + { + "ref": "pkg:npm/@types/react@18.0.15", + "dependsOn": [ + "pkg:npm/@types/prop-types@15.7.4", + "pkg:npm/@types/scheduler@0.16.2", + "pkg:npm/csstype@3.0.8" + ] + }, + { + "ref": "pkg:npm/@types/react@18.0.12", + "dependsOn": [ + "pkg:npm/@types/prop-types@15.7.4", + "pkg:npm/@types/scheduler@0.16.2", + "pkg:npm/csstype@3.0.8" + ] + }, + { + "ref": "pkg:npm/@types/scheduler@0.16.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/source-list-map@0.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/stack-utils@2.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/tapable@1.0.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/testing-library__jest-dom@5.14.1", + "dependsOn": ["pkg:npm/@types/jest@27.0.2"] + }, + { + "ref": "pkg:npm/@types/uglify-js@3.13.0", + "dependsOn": ["pkg:npm/source-map@0.6.1"] + }, + { + "ref": "pkg:npm/@types/unist@2.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/webpack-sources@2.1.0", + "dependsOn": [ + "pkg:npm/@types/node@15.12.2", + "pkg:npm/@types/source-list-map@0.1.2", + "pkg:npm/source-map@0.7.3" + ] + }, + { + "ref": "pkg:npm/@types/webpack@4.41.29", + "dependsOn": [ + "pkg:npm/@types/node@15.12.2", + "pkg:npm/@types/tapable@1.0.7", + "pkg:npm/@types/uglify-js@3.13.0", + "pkg:npm/@types/webpack-sources@2.1.0", + "pkg:npm/anymatch@3.1.2", + "pkg:npm/source-map@0.6.1" + ] + }, + { + "ref": "pkg:npm/@types/yargs-parser@20.2.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/yargs@16.0.4", + "dependsOn": ["pkg:npm/@types/yargs-parser@20.2.1"] + }, + { + "ref": "pkg:npm/@typescript-eslint/eslint-plugin@5.27.1", + "dependsOn": [ + "pkg:npm/@typescript-eslint/scope-manager@5.27.1", + "pkg:npm/@typescript-eslint/type-utils@5.27.1", + "pkg:npm/@typescript-eslint/utils@5.27.1", + "pkg:npm/debug@4.3.4", + "pkg:npm/functional-red-black-tree@1.0.1", + "pkg:npm/ignore@5.2.4", + "pkg:npm/regexpp@3.2.0", + "pkg:npm/semver@7.5.4", + "pkg:npm/tsutils@3.21.0" + ] + }, + { + "ref": "pkg:npm/@typescript-eslint/parser@5.27.1", + "dependsOn": [ + "pkg:npm/@typescript-eslint/scope-manager@5.27.1", + "pkg:npm/@typescript-eslint/types@5.27.1", + "pkg:npm/@typescript-eslint/typescript-estree@5.27.1", + "pkg:npm/debug@4.3.4" + ] + }, + { + "ref": "pkg:npm/@typescript-eslint/scope-manager@5.27.1", + "dependsOn": [ + "pkg:npm/@typescript-eslint/types@5.27.1", + "pkg:npm/@typescript-eslint/visitor-keys@5.27.1" + ] + }, + { + "ref": "pkg:npm/@typescript-eslint/type-utils@5.27.1", + "dependsOn": [ + "pkg:npm/@typescript-eslint/utils@5.27.1", + "pkg:npm/debug@4.3.4", + "pkg:npm/tsutils@3.21.0" + ] + }, + { + "ref": "pkg:npm/@typescript-eslint/types@5.27.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@typescript-eslint/typescript-estree@5.27.1", + "dependsOn": [ + "pkg:npm/@typescript-eslint/types@5.27.1", + "pkg:npm/@typescript-eslint/visitor-keys@5.27.1", + "pkg:npm/debug@4.3.4", + "pkg:npm/globby@11.1.0", + "pkg:npm/is-glob@4.0.3", + "pkg:npm/semver@7.5.4", + "pkg:npm/tsutils@3.21.0" + ] + }, + { + "ref": "pkg:npm/@typescript-eslint/utils@5.27.1", + "dependsOn": [ + "pkg:npm/@types/json-schema@7.0.11", + "pkg:npm/@typescript-eslint/scope-manager@5.27.1", + "pkg:npm/@typescript-eslint/types@5.27.1", + "pkg:npm/@typescript-eslint/typescript-estree@5.27.1", + "pkg:npm/eslint-scope@5.1.1", + "pkg:npm/eslint-utils@3.0.0" + ] + }, + { + "ref": "pkg:npm/@typescript-eslint/visitor-keys@5.27.1", + "dependsOn": [ + "pkg:npm/@typescript-eslint/types@5.27.1", + "pkg:npm/eslint-visitor-keys@3.3.0" + ] + }, + { + "ref": "pkg:npm/@visx/curve@2.1.0", + "dependsOn": ["pkg:npm/@types/d3-shape@1.3.8", "pkg:npm/d3-shape@1.3.7"] + }, + { + "ref": "pkg:npm/@visx/group@2.10.0", + "dependsOn": [ + "pkg:npm/@types/react@18.0.15", + "pkg:npm/classnames@2.3.1", + "pkg:npm/prop-types@15.8.1" + ] + }, + { + "ref": "pkg:npm/@visx/scale@2.2.2", + "dependsOn": [ + "pkg:npm/@types/d3-interpolate@1.4.2", + "pkg:npm/@types/d3-scale@3.3.2", + "pkg:npm/@types/d3-time@2.1.1", + "pkg:npm/d3-interpolate@1.4.0", + "pkg:npm/d3-scale@3.3.0", + "pkg:npm/d3-time@2.1.1" + ] + }, + { + "ref": "pkg:npm/@visx/shape@2.12.2", + "dependsOn": [ + "pkg:npm/@types/d3-path@1.0.9", + "pkg:npm/@types/d3-shape@1.3.8", + "pkg:npm/@types/lodash@4.14.182", + "pkg:npm/@types/react@18.0.15", + "pkg:npm/@visx/curve@2.1.0", + "pkg:npm/@visx/group@2.10.0", + "pkg:npm/@visx/scale@2.2.2", + "pkg:npm/classnames@2.3.1", + "pkg:npm/d3-path@1.0.9", + "pkg:npm/d3-shape@1.3.7", + "pkg:npm/lodash@4.17.21", + "pkg:npm/prop-types@15.8.1" + ] + }, + { + "ref": "pkg:npm/@webassemblyjs/ast@1.11.1", + "dependsOn": [ + "pkg:npm/@webassemblyjs/helper-numbers@1.11.1", + "pkg:npm/@webassemblyjs/helper-wasm-bytecode@1.11.1" + ] + }, + { + "ref": "pkg:npm/@webassemblyjs/floating-point-hex-parser@1.11.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@webassemblyjs/helper-api-error@1.11.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@webassemblyjs/helper-buffer@1.11.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@webassemblyjs/helper-numbers@1.11.1", + "dependsOn": [ + "pkg:npm/@webassemblyjs/floating-point-hex-parser@1.11.1", + "pkg:npm/@webassemblyjs/helper-api-error@1.11.1", + "pkg:npm/@xtuc/long@4.2.2" + ] + }, + { + "ref": "pkg:npm/@webassemblyjs/helper-wasm-bytecode@1.11.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@webassemblyjs/helper-wasm-section@1.11.1", + "dependsOn": [ + "pkg:npm/@webassemblyjs/ast@1.11.1", + "pkg:npm/@webassemblyjs/helper-buffer@1.11.1", + "pkg:npm/@webassemblyjs/helper-wasm-bytecode@1.11.1", + "pkg:npm/@webassemblyjs/wasm-gen@1.11.1" + ] + }, + { + "ref": "pkg:npm/@webassemblyjs/ieee754@1.11.1", + "dependsOn": ["pkg:npm/@xtuc/ieee754@1.2.0"] + }, + { + "ref": "pkg:npm/@webassemblyjs/leb128@1.11.1", + "dependsOn": ["pkg:npm/@xtuc/long@4.2.2"] + }, + { + "ref": "pkg:npm/@webassemblyjs/utf8@1.11.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@webassemblyjs/wasm-edit@1.11.1", + "dependsOn": [ + "pkg:npm/@webassemblyjs/ast@1.11.1", + "pkg:npm/@webassemblyjs/helper-buffer@1.11.1", + "pkg:npm/@webassemblyjs/helper-wasm-bytecode@1.11.1", + "pkg:npm/@webassemblyjs/helper-wasm-section@1.11.1", + "pkg:npm/@webassemblyjs/wasm-gen@1.11.1", + "pkg:npm/@webassemblyjs/wasm-opt@1.11.1", + "pkg:npm/@webassemblyjs/wasm-parser@1.11.1", + "pkg:npm/@webassemblyjs/wast-printer@1.11.1" + ] + }, + { + "ref": "pkg:npm/@webassemblyjs/wasm-gen@1.11.1", + "dependsOn": [ + "pkg:npm/@webassemblyjs/ast@1.11.1", + "pkg:npm/@webassemblyjs/helper-wasm-bytecode@1.11.1", + "pkg:npm/@webassemblyjs/ieee754@1.11.1", + "pkg:npm/@webassemblyjs/leb128@1.11.1", + "pkg:npm/@webassemblyjs/utf8@1.11.1" + ] + }, + { + "ref": "pkg:npm/@webassemblyjs/wasm-opt@1.11.1", + "dependsOn": [ + "pkg:npm/@webassemblyjs/ast@1.11.1", + "pkg:npm/@webassemblyjs/helper-buffer@1.11.1", + "pkg:npm/@webassemblyjs/wasm-gen@1.11.1", + "pkg:npm/@webassemblyjs/wasm-parser@1.11.1" + ] + }, + { + "ref": "pkg:npm/@webassemblyjs/wasm-parser@1.11.1", + "dependsOn": [ + "pkg:npm/@webassemblyjs/ast@1.11.1", + "pkg:npm/@webassemblyjs/helper-api-error@1.11.1", + "pkg:npm/@webassemblyjs/helper-wasm-bytecode@1.11.1", + "pkg:npm/@webassemblyjs/ieee754@1.11.1", + "pkg:npm/@webassemblyjs/leb128@1.11.1", + "pkg:npm/@webassemblyjs/utf8@1.11.1" + ] + }, + { + "ref": "pkg:npm/@webassemblyjs/wast-printer@1.11.1", + "dependsOn": [ + "pkg:npm/@webassemblyjs/ast@1.11.1", + "pkg:npm/@xtuc/long@4.2.2" + ] + }, + { + "ref": "pkg:npm/@webpack-cli/configtest@1.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@webpack-cli/info@1.5.0", + "dependsOn": ["pkg:npm/envinfo@7.8.1"] + }, + { + "ref": "pkg:npm/@webpack-cli/serve@1.7.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@xtuc/ieee754@1.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@xtuc/long@4.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@zag-js/element-size@0.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@zag-js/focus-visible@0.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/abab@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/acorn-globals@6.0.0", + "dependsOn": ["pkg:npm/acorn-walk@7.2.0", "pkg:npm/acorn@7.4.1"] + }, + { + "ref": "pkg:npm/acorn-import-assertions@1.8.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/acorn-jsx@5.3.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/acorn-walk@7.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/acorn@7.4.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/acorn@8.7.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/agent-base@6.0.2", + "dependsOn": ["pkg:npm/debug@4.3.4"] + }, + { + "ref": "pkg:npm/aggregate-error@3.1.0", + "dependsOn": ["pkg:npm/clean-stack@2.2.0", "pkg:npm/indent-string@4.0.0"] + }, + { + "ref": "pkg:npm/ajv-formats@2.1.1", + "dependsOn": ["pkg:npm/ajv@8.11.0"] + }, + { + "ref": "pkg:npm/ajv-keywords@3.5.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ajv-keywords@5.1.0", + "dependsOn": ["pkg:npm/fast-deep-equal@3.1.3"] + }, + { + "ref": "pkg:npm/ajv@6.12.6", + "dependsOn": [ + "pkg:npm/fast-deep-equal@3.1.3", + "pkg:npm/fast-json-stable-stringify@2.1.0", + "pkg:npm/json-schema-traverse@0.4.1", + "pkg:npm/uri-js@4.4.1" + ] + }, + { + "ref": "pkg:npm/ajv@8.11.0", + "dependsOn": [ + "pkg:npm/fast-deep-equal@3.1.3", + "pkg:npm/json-schema-traverse@1.0.0", + "pkg:npm/require-from-string@2.0.2", + "pkg:npm/uri-js@4.4.1" + ] + }, + { + "ref": "pkg:npm/ajv@8.6.0", + "dependsOn": [ + "pkg:npm/fast-deep-equal@3.1.3", + "pkg:npm/json-schema-traverse@1.0.0", + "pkg:npm/require-from-string@2.0.2", + "pkg:npm/uri-js@4.4.1" + ] + }, + { + "ref": "pkg:npm/ansi-escapes@4.3.2", + "dependsOn": ["pkg:npm/type-fest@0.21.3"] + }, + { + "ref": "pkg:npm/ansi-regex@5.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ansi-styles@3.2.1", + "dependsOn": ["pkg:npm/color-convert@1.9.3"] + }, + { + "ref": "pkg:npm/ansi-styles@4.3.0", + "dependsOn": ["pkg:npm/color-convert@2.0.1"] + }, + { + "ref": "pkg:npm/ansi-styles@5.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/anymatch@3.1.2", + "dependsOn": ["pkg:npm/normalize-path@3.0.0", "pkg:npm/picomatch@2.3.0"] + }, + { + "ref": "pkg:npm/argparse@1.0.10", + "dependsOn": ["pkg:npm/sprintf-js@1.0.3"] + }, + { + "ref": "pkg:npm/argparse@2.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/aria-hidden@1.2.3", + "dependsOn": ["pkg:npm/tslib@2.4.0"] + }, + { + "ref": "pkg:npm/aria-query@4.2.2", + "dependsOn": [ + "pkg:npm/@babel/runtime-corejs3@7.15.4", + "pkg:npm/@babel/runtime@7.15.4" + ] + }, + { + "ref": "pkg:npm/aria-query@5.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/array-buffer-byte-length@1.0.0", + "dependsOn": ["pkg:npm/call-bind@1.0.2", "pkg:npm/is-array-buffer@3.0.2"] + }, + { + "ref": "pkg:npm/array-includes@3.1.3", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/es-abstract@1.18.3", + "pkg:npm/get-intrinsic@1.1.1", + "pkg:npm/is-string@1.0.6" + ] + }, + { + "ref": "pkg:npm/array-includes@3.1.5", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.20.1", + "pkg:npm/get-intrinsic@1.1.1", + "pkg:npm/is-string@1.0.7" + ] + }, + { + "ref": "pkg:npm/array-includes@3.1.6", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.21.2", + "pkg:npm/get-intrinsic@1.2.0", + "pkg:npm/is-string@1.0.7" + ] + }, + { + "ref": "pkg:npm/array-union@1.0.2", + "dependsOn": ["pkg:npm/array-uniq@1.0.3"] + }, + { + "ref": "pkg:npm/array-union@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/array-uniq@1.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/array.prototype.flat@1.3.1", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.21.2", + "pkg:npm/es-shim-unscopables@1.0.0" + ] + }, + { + "ref": "pkg:npm/array.prototype.flatmap@1.3.0", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/es-abstract@1.20.1", + "pkg:npm/es-shim-unscopables@1.0.0" + ] + }, + { + "ref": "pkg:npm/array.prototype.flatmap@1.3.1", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.21.2", + "pkg:npm/es-shim-unscopables@1.0.0" + ] + }, + { + "ref": "pkg:npm/arrify@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/asap@2.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ast-types-flow@0.0.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/astral-regex@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/asynckit@0.4.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/atob@2.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/available-typed-arrays@1.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/axe-core@4.4.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/axios@1.6.1", + "dependsOn": [ + "pkg:npm/follow-redirects@1.15.3", + "pkg:npm/form-data@4.0.0", + "pkg:npm/proxy-from-env@1.1.0" + ] + }, + { + "ref": "pkg:npm/axobject-query@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/babel-jest@27.3.1", + "dependsOn": [ + "pkg:npm/@jest/transform@27.3.1", + "pkg:npm/@jest/types@27.2.5", + "pkg:npm/@types/babel__core@7.1.16", + "pkg:npm/babel-plugin-istanbul@6.1.1", + "pkg:npm/babel-preset-jest@27.2.0", + "pkg:npm/chalk@4.1.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/slash@3.0.0" + ] + }, + { + "ref": "pkg:npm/babel-jest@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/transform@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/babel__core@7.1.16", + "pkg:npm/babel-plugin-istanbul@6.1.1", + "pkg:npm/babel-preset-jest@27.5.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/slash@3.0.0" + ] + }, + { + "ref": "pkg:npm/babel-loader@9.1.2", + "dependsOn": [ + "pkg:npm/find-cache-dir@3.3.2", + "pkg:npm/schema-utils@4.0.0" + ] + }, + { + "ref": "pkg:npm/babel-plugin-dynamic-import-node@2.3.3", + "dependsOn": ["pkg:npm/object.assign@4.1.2"] + }, + { + "ref": "pkg:npm/babel-plugin-istanbul@6.1.1", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@istanbuljs/load-nyc-config@1.1.0", + "pkg:npm/@istanbuljs/schema@0.1.3", + "pkg:npm/istanbul-lib-instrument@5.1.0", + "pkg:npm/test-exclude@6.0.0" + ] + }, + { + "ref": "pkg:npm/babel-plugin-jest-hoist@27.2.0", + "dependsOn": [ + "pkg:npm/@babel/template@7.16.0", + "pkg:npm/@babel/types@7.16.0", + "pkg:npm/@types/babel__core@7.1.16", + "pkg:npm/@types/babel__traverse@7.14.2" + ] + }, + { + "ref": "pkg:npm/babel-plugin-jest-hoist@27.5.1", + "dependsOn": [ + "pkg:npm/@babel/template@7.16.0", + "pkg:npm/@babel/types@7.16.0", + "pkg:npm/@types/babel__core@7.1.16", + "pkg:npm/@types/babel__traverse@7.14.2" + ] + }, + { + "ref": "pkg:npm/babel-plugin-macros@2.8.0", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.15.3", + "pkg:npm/cosmiconfig@6.0.0", + "pkg:npm/resolve@1.20.0" + ] + }, + { + "ref": "pkg:npm/babel-plugin-polyfill-corejs2@0.2.3", + "dependsOn": [ + "pkg:npm/@babel/compat-data@7.16.0", + "pkg:npm/@babel/helper-define-polyfill-provider@0.2.4", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/babel-plugin-polyfill-corejs3@0.3.0", + "dependsOn": [ + "pkg:npm/@babel/helper-define-polyfill-provider@0.2.4", + "pkg:npm/core-js-compat@3.19.1" + ] + }, + { + "ref": "pkg:npm/babel-plugin-polyfill-regenerator@0.2.3", + "dependsOn": ["pkg:npm/@babel/helper-define-polyfill-provider@0.2.4"] + }, + { + "ref": "pkg:npm/babel-preset-current-node-syntax@1.0.1", + "dependsOn": [ + "pkg:npm/@babel/plugin-syntax-async-generators@7.8.4", + "pkg:npm/@babel/plugin-syntax-bigint@7.8.3", + "pkg:npm/@babel/plugin-syntax-class-properties@7.12.13", + "pkg:npm/@babel/plugin-syntax-import-meta@7.10.4", + "pkg:npm/@babel/plugin-syntax-json-strings@7.8.3", + "pkg:npm/@babel/plugin-syntax-logical-assignment-operators@7.10.4", + "pkg:npm/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3", + "pkg:npm/@babel/plugin-syntax-numeric-separator@7.10.4", + "pkg:npm/@babel/plugin-syntax-object-rest-spread@7.8.3", + "pkg:npm/@babel/plugin-syntax-optional-catch-binding@7.8.3", + "pkg:npm/@babel/plugin-syntax-optional-chaining@7.8.3", + "pkg:npm/@babel/plugin-syntax-top-level-await@7.14.5" + ] + }, + { + "ref": "pkg:npm/babel-preset-jest@27.2.0", + "dependsOn": [ + "pkg:npm/babel-plugin-jest-hoist@27.2.0", + "pkg:npm/babel-preset-current-node-syntax@1.0.1" + ] + }, + { + "ref": "pkg:npm/babel-preset-jest@27.5.1", + "dependsOn": [ + "pkg:npm/babel-plugin-jest-hoist@27.5.1", + "pkg:npm/babel-preset-current-node-syntax@1.0.1" + ] + }, + { + "ref": "pkg:npm/bail@2.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/balanced-match@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/balanced-match@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/base16@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/big-integer@1.6.51", + "dependsOn": [] + }, + { + "ref": "pkg:npm/big.js@5.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/boolbase@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/bootstrap-3-typeahead@4.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/bootstrap@3.4.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/brace-expansion@1.1.11", + "dependsOn": ["pkg:npm/balanced-match@1.0.2", "pkg:npm/concat-map@0.0.1"] + }, + { + "ref": "pkg:npm/brace-expansion@2.0.1", + "dependsOn": ["pkg:npm/balanced-match@1.0.2"] + }, + { + "ref": "pkg:npm/braces@3.0.2", + "dependsOn": ["pkg:npm/fill-range@7.0.1"] + }, + { + "ref": "pkg:npm/broadcast-channel@3.7.0", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.15.3", + "pkg:npm/detect-node@2.1.0", + "pkg:npm/js-sha3@0.8.0", + "pkg:npm/microseconds@0.2.0", + "pkg:npm/nano-time@1.0.0", + "pkg:npm/oblivious-set@1.0.0", + "pkg:npm/rimraf@3.0.2", + "pkg:npm/unload@2.2.0" + ] + }, + { + "ref": "pkg:npm/browser-process-hrtime@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/browserslist@4.20.4", + "dependsOn": [ + "pkg:npm/caniuse-lite@1.0.30001516", + "pkg:npm/electron-to-chromium@1.4.156", + "pkg:npm/escalade@3.1.1", + "pkg:npm/node-releases@2.0.5", + "pkg:npm/picocolors@1.0.0" + ] + }, + { + "ref": "pkg:npm/bser@2.1.1", + "dependsOn": ["pkg:npm/node-int64@0.4.0"] + }, + { + "ref": "pkg:npm/buffer-from@1.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/cacache@15.2.0", + "dependsOn": [ + "pkg:npm/@npmcli/move-file@1.1.2", + "pkg:npm/chownr@2.0.0", + "pkg:npm/fs-minipass@2.1.0", + "pkg:npm/glob@7.1.7", + "pkg:npm/infer-owner@1.0.4", + "pkg:npm/lru-cache@6.0.0", + "pkg:npm/minipass-collect@1.0.2", + "pkg:npm/minipass-flush@1.0.5", + "pkg:npm/minipass-pipeline@1.2.4", + "pkg:npm/minipass@3.1.3", + "pkg:npm/mkdirp@1.0.4", + "pkg:npm/p-map@4.0.0", + "pkg:npm/promise-inflight@1.0.1", + "pkg:npm/rimraf@3.0.2", + "pkg:npm/ssri@8.0.1", + "pkg:npm/tar@6.1.11", + "pkg:npm/unique-filename@1.1.1" + ] + }, + { + "ref": "pkg:npm/call-bind@1.0.2", + "dependsOn": [ + "pkg:npm/function-bind@1.1.1", + "pkg:npm/get-intrinsic@1.1.1" + ] + }, + { + "ref": "pkg:npm/call-me-maybe@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/callsites@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/camelcase-keys@7.0.0", + "dependsOn": [ + "pkg:npm/camelcase@6.2.0", + "pkg:npm/map-obj@4.3.0", + "pkg:npm/quick-lru@5.1.1", + "pkg:npm/type-fest@1.4.0" + ] + }, + { + "ref": "pkg:npm/camelcase@5.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/camelcase@6.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/caniuse-api@3.0.0", + "dependsOn": [ + "pkg:npm/browserslist@4.20.4", + "pkg:npm/caniuse-lite@1.0.30001516", + "pkg:npm/lodash.memoize@4.1.2", + "pkg:npm/lodash.uniq@4.5.0" + ] + }, + { + "ref": "pkg:npm/caniuse-lite@1.0.30001516", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ccount@2.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/chakra-react-select@4.0.3", + "dependsOn": ["pkg:npm/react-select@5.3.2"] + }, + { + "ref": "pkg:npm/chalk@2.4.2", + "dependsOn": [ + "pkg:npm/ansi-styles@3.2.1", + "pkg:npm/escape-string-regexp@1.0.5", + "pkg:npm/supports-color@5.5.0" + ] + }, + { + "ref": "pkg:npm/chalk@3.0.0", + "dependsOn": ["pkg:npm/ansi-styles@4.3.0", "pkg:npm/supports-color@7.2.0"] + }, + { + "ref": "pkg:npm/chalk@4.1.1", + "dependsOn": ["pkg:npm/ansi-styles@4.3.0", "pkg:npm/supports-color@7.2.0"] + }, + { + "ref": "pkg:npm/chalk@5.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/char-regex@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/character-entities-legacy@1.1.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/character-entities@1.2.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/character-entities@2.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/character-reference-invalid@1.1.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/chownr@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/chrome-trace-event@1.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ci-info@3.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/cjs-module-lexer@1.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/classcat@5.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/classnames@2.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/clean-stack@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/clean-webpack-plugin@3.0.0", + "dependsOn": ["pkg:npm/@types/webpack@4.41.29", "pkg:npm/del@4.1.1"] + }, + { + "ref": "pkg:npm/cli@1.0.1", + "dependsOn": ["pkg:npm/exit@0.1.2", "pkg:npm/glob@7.1.7"] + }, + { + "ref": "pkg:npm/cliui@7.0.4", + "dependsOn": [ + "pkg:npm/string-width@4.2.3", + "pkg:npm/strip-ansi@6.0.1", + "pkg:npm/wrap-ansi@7.0.0" + ] + }, + { + "ref": "pkg:npm/clone-deep@4.0.1", + "dependsOn": [ + "pkg:npm/is-plain-object@2.0.4", + "pkg:npm/kind-of@6.0.3", + "pkg:npm/shallow-clone@3.0.1" + ] + }, + { + "ref": "pkg:npm/clsx@1.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/co@4.6.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/codemirror@5.61.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/collect-v8-coverage@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/color-convert@1.9.3", + "dependsOn": ["pkg:npm/color-name@1.1.3"] + }, + { + "ref": "pkg:npm/color-convert@2.0.1", + "dependsOn": ["pkg:npm/color-name@1.1.4"] + }, + { + "ref": "pkg:npm/color-name@1.1.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/color-name@1.1.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/color-string@1.9.1", + "dependsOn": ["pkg:npm/color-name@1.1.4", "pkg:npm/simple-swizzle@0.2.2"] + }, + { + "ref": "pkg:npm/color2k@2.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/color@4.2.3", + "dependsOn": ["pkg:npm/color-convert@2.0.1", "pkg:npm/color-string@1.9.1"] + }, + { + "ref": "pkg:npm/colord@2.9.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/colorette@1.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/colorette@2.0.19", + "dependsOn": [] + }, + { + "ref": "pkg:npm/combined-stream@1.0.8", + "dependsOn": ["pkg:npm/delayed-stream@1.0.0"] + }, + { + "ref": "pkg:npm/comma-separated-tokens@1.0.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/comma-separated-tokens@2.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/commander@2.20.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/commander@7.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/commondir@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/compute-scroll-into-view@1.0.14", + "dependsOn": [] + }, + { + "ref": "pkg:npm/concat-map@0.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/confusing-browser-globals@1.0.10", + "dependsOn": [] + }, + { + "ref": "pkg:npm/console-browserify@1.1.0", + "dependsOn": ["pkg:npm/date-now@0.1.4"] + }, + { + "ref": "pkg:npm/convert-source-map@1.8.0", + "dependsOn": ["pkg:npm/safe-buffer@5.1.2"] + }, + { + "ref": "pkg:npm/convert-source-map@1.7.0", + "dependsOn": ["pkg:npm/safe-buffer@5.1.2"] + }, + { + "ref": "pkg:npm/copy-to-clipboard@3.3.1", + "dependsOn": ["pkg:npm/toggle-selection@1.0.6"] + }, + { + "ref": "pkg:npm/copy-webpack-plugin@6.4.1", + "dependsOn": [ + "pkg:npm/cacache@15.2.0", + "pkg:npm/fast-glob@3.3.0", + "pkg:npm/find-cache-dir@3.3.1", + "pkg:npm/glob-parent@5.1.2", + "pkg:npm/globby@11.1.0", + "pkg:npm/loader-utils@2.0.4", + "pkg:npm/normalize-path@3.0.0", + "pkg:npm/p-limit@3.1.0", + "pkg:npm/schema-utils@3.1.1", + "pkg:npm/serialize-javascript@5.0.1", + "pkg:npm/webpack-sources@1.4.3" + ] + }, + { + "ref": "pkg:npm/core-js-compat@3.19.1", + "dependsOn": ["pkg:npm/browserslist@4.20.4", "pkg:npm/semver@7.0.0"] + }, + { + "ref": "pkg:npm/core-js-pure@3.18.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/core-util-is@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/cosmiconfig@6.0.0", + "dependsOn": [ + "pkg:npm/@types/parse-json@4.0.0", + "pkg:npm/import-fresh@3.3.0", + "pkg:npm/parse-json@5.2.0", + "pkg:npm/path-type@4.0.0", + "pkg:npm/yaml@1.10.2" + ] + }, + { + "ref": "pkg:npm/cosmiconfig@8.2.0", + "dependsOn": [ + "pkg:npm/import-fresh@3.3.0", + "pkg:npm/js-yaml@4.1.0", + "pkg:npm/parse-json@5.2.0", + "pkg:npm/path-type@4.0.0" + ] + }, + { + "ref": "pkg:npm/cross-fetch@3.1.5", + "dependsOn": ["pkg:npm/node-fetch@2.6.7"] + }, + { + "ref": "pkg:npm/cross-spawn@7.0.3", + "dependsOn": [ + "pkg:npm/path-key@3.1.1", + "pkg:npm/shebang-command@2.0.0", + "pkg:npm/which@2.0.2" + ] + }, + { + "ref": "pkg:npm/css-box-model@1.2.1", + "dependsOn": ["pkg:npm/tiny-invariant@1.2.0"] + }, + { + "ref": "pkg:npm/css-declaration-sorter@6.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/css-functions-list@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/css-loader@5.2.7", + "dependsOn": [ + "pkg:npm/icss-utils@5.1.0", + "pkg:npm/loader-utils@2.0.4", + "pkg:npm/postcss-modules-extract-imports@3.0.0", + "pkg:npm/postcss-modules-local-by-default@4.0.0", + "pkg:npm/postcss-modules-scope@3.0.0", + "pkg:npm/postcss-modules-values@4.0.0", + "pkg:npm/postcss-value-parser@4.2.0", + "pkg:npm/postcss@8.4.31", + "pkg:npm/schema-utils@3.1.1", + "pkg:npm/semver@7.5.4" + ] + }, + { + "ref": "pkg:npm/css-minimizer-webpack-plugin@4.0.0", + "dependsOn": [ + "pkg:npm/cssnano@5.1.11", + "pkg:npm/jest-worker@27.5.1", + "pkg:npm/postcss@8.4.31", + "pkg:npm/schema-utils@4.0.0", + "pkg:npm/serialize-javascript@6.0.0", + "pkg:npm/source-map@0.6.1" + ] + }, + { + "ref": "pkg:npm/css-select@4.3.0", + "dependsOn": [ + "pkg:npm/boolbase@1.0.0", + "pkg:npm/css-what@6.1.0", + "pkg:npm/domhandler@4.3.1", + "pkg:npm/domutils@2.8.0", + "pkg:npm/nth-check@2.1.1" + ] + }, + { + "ref": "pkg:npm/css-tree@1.1.3", + "dependsOn": ["pkg:npm/mdn-data@2.0.14", "pkg:npm/source-map@0.6.1"] + }, + { + "ref": "pkg:npm/css-tree@2.3.1", + "dependsOn": ["pkg:npm/mdn-data@2.0.30", "pkg:npm/source-map-js@1.0.2"] + }, + { + "ref": "pkg:npm/css-what@6.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/css.escape@1.5.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/css@3.0.0", + "dependsOn": [ + "pkg:npm/inherits@2.0.4", + "pkg:npm/source-map-resolve@0.6.0", + "pkg:npm/source-map@0.6.1" + ] + }, + { + "ref": "pkg:npm/cssesc@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/cssfontparser@1.2.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/cssnano-preset-default@5.2.11", + "dependsOn": [ + "pkg:npm/css-declaration-sorter@6.3.0", + "pkg:npm/cssnano-utils@3.1.0", + "pkg:npm/postcss-calc@8.2.4", + "pkg:npm/postcss-colormin@5.3.0", + "pkg:npm/postcss-convert-values@5.1.2", + "pkg:npm/postcss-discard-comments@5.1.2", + "pkg:npm/postcss-discard-duplicates@5.1.0", + "pkg:npm/postcss-discard-empty@5.1.1", + "pkg:npm/postcss-discard-overridden@5.1.0", + "pkg:npm/postcss-merge-longhand@5.1.5", + "pkg:npm/postcss-merge-rules@5.1.2", + "pkg:npm/postcss-minify-font-values@5.1.0", + "pkg:npm/postcss-minify-gradients@5.1.1", + "pkg:npm/postcss-minify-params@5.1.3", + "pkg:npm/postcss-minify-selectors@5.2.1", + "pkg:npm/postcss-normalize-charset@5.1.0", + "pkg:npm/postcss-normalize-display-values@5.1.0", + "pkg:npm/postcss-normalize-positions@5.1.0", + "pkg:npm/postcss-normalize-repeat-style@5.1.0", + "pkg:npm/postcss-normalize-string@5.1.0", + "pkg:npm/postcss-normalize-timing-functions@5.1.0", + "pkg:npm/postcss-normalize-unicode@5.1.0", + "pkg:npm/postcss-normalize-url@5.1.0", + "pkg:npm/postcss-normalize-whitespace@5.1.1", + "pkg:npm/postcss-ordered-values@5.1.2", + "pkg:npm/postcss-reduce-initial@5.1.0", + "pkg:npm/postcss-reduce-transforms@5.1.0", + "pkg:npm/postcss-svgo@5.1.0", + "pkg:npm/postcss-unique-selectors@5.1.1" + ] + }, + { + "ref": "pkg:npm/cssnano-utils@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/cssnano@5.1.11", + "dependsOn": [ + "pkg:npm/cssnano-preset-default@5.2.11", + "pkg:npm/lilconfig@2.0.5", + "pkg:npm/yaml@1.10.2" + ] + }, + { + "ref": "pkg:npm/csso@4.2.0", + "dependsOn": ["pkg:npm/css-tree@1.1.3"] + }, + { + "ref": "pkg:npm/cssom@0.4.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/cssom@0.3.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/cssstyle@2.3.0", + "dependsOn": ["pkg:npm/cssom@0.3.8"] + }, + { + "ref": "pkg:npm/csstype@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/csstype@3.0.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-array@1.2.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-array@2.12.1", + "dependsOn": ["pkg:npm/internmap@1.0.1"] + }, + { + "ref": "pkg:npm/d3-axis@1.0.12", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-brush@1.1.6", + "dependsOn": [ + "pkg:npm/d3-dispatch@1.0.6", + "pkg:npm/d3-drag@1.2.5", + "pkg:npm/d3-interpolate@1.4.0", + "pkg:npm/d3-selection@1.4.2", + "pkg:npm/d3-transition@1.3.2" + ] + }, + { + "ref": "pkg:npm/d3-chord@1.0.6", + "dependsOn": ["pkg:npm/d3-array@1.2.4", "pkg:npm/d3-path@1.0.9"] + }, + { + "ref": "pkg:npm/d3-collection@1.0.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-color@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-contour@1.3.2", + "dependsOn": ["pkg:npm/d3-array@1.2.4"] + }, + { + "ref": "pkg:npm/d3-dispatch@1.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-dispatch@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-drag@1.2.5", + "dependsOn": ["pkg:npm/d3-dispatch@1.0.6", "pkg:npm/d3-selection@1.4.2"] + }, + { + "ref": "pkg:npm/d3-drag@3.0.0", + "dependsOn": ["pkg:npm/d3-selection@3.0.0"] + }, + { + "ref": "pkg:npm/d3-dsv@1.2.0", + "dependsOn": [ + "pkg:npm/commander@2.20.3", + "pkg:npm/iconv-lite@0.4.24", + "pkg:npm/rw@1.3.3" + ] + }, + { + "ref": "pkg:npm/d3-ease@1.0.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-ease@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-fetch@1.2.0", + "dependsOn": ["pkg:npm/d3-dsv@1.2.0"] + }, + { + "ref": "pkg:npm/d3-force@1.2.1", + "dependsOn": [ + "pkg:npm/d3-collection@1.0.7", + "pkg:npm/d3-dispatch@1.0.6", + "pkg:npm/d3-quadtree@1.0.7", + "pkg:npm/d3-timer@1.0.10" + ] + }, + { + "ref": "pkg:npm/d3-format@1.4.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-format@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-geo@1.12.1", + "dependsOn": ["pkg:npm/d3-array@1.2.4"] + }, + { + "ref": "pkg:npm/d3-hierarchy@1.1.9", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-interpolate@1.4.0", + "dependsOn": ["pkg:npm/d3-color@3.1.0"] + }, + { + "ref": "pkg:npm/d3-interpolate@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-interpolate@2.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-path@1.0.9", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-path@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-polygon@1.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-quadtree@1.0.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-random@1.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-scale-chromatic@1.5.0", + "dependsOn": ["pkg:npm/d3-color@3.1.0", "pkg:npm/d3-interpolate@1.4.0"] + }, + { + "ref": "pkg:npm/d3-scale@2.2.2", + "dependsOn": [ + "pkg:npm/d3-array@1.2.4", + "pkg:npm/d3-collection@1.0.7", + "pkg:npm/d3-format@1.4.5", + "pkg:npm/d3-interpolate@1.4.0", + "pkg:npm/d3-time-format@2.3.0", + "pkg:npm/d3-time@1.1.0" + ] + }, + { + "ref": "pkg:npm/d3-scale@3.3.0", + "dependsOn": ["pkg:npm/d3-array@2.12.1", "pkg:npm/d3-time@2.1.1"] + }, + { + "ref": "pkg:npm/d3-selection@1.4.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-selection@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-shape@1.3.7", + "dependsOn": ["pkg:npm/d3-path@1.0.9"] + }, + { + "ref": "pkg:npm/d3-shape@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-time-format@2.3.0", + "dependsOn": ["pkg:npm/d3-time@1.1.0"] + }, + { + "ref": "pkg:npm/d3-time-format@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-time@1.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-time@2.1.1", + "dependsOn": ["pkg:npm/d3-array@2.12.1"] + }, + { + "ref": "pkg:npm/d3-timer@1.0.10", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-timer@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-tip@0.9.1", + "dependsOn": ["pkg:npm/d3-collection@1.0.7", "pkg:npm/d3-selection@1.4.2"] + }, + { + "ref": "pkg:npm/d3-transition@1.3.2", + "dependsOn": [ + "pkg:npm/d3-color@3.1.0", + "pkg:npm/d3-dispatch@1.0.6", + "pkg:npm/d3-ease@1.0.7", + "pkg:npm/d3-interpolate@1.4.0", + "pkg:npm/d3-selection@1.4.2", + "pkg:npm/d3-timer@1.0.10" + ] + }, + { + "ref": "pkg:npm/d3-transition@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-voronoi@1.1.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-zoom@1.8.3", + "dependsOn": [ + "pkg:npm/d3-dispatch@1.0.6", + "pkg:npm/d3-drag@1.2.5", + "pkg:npm/d3-interpolate@1.4.0", + "pkg:npm/d3-selection@1.4.2", + "pkg:npm/d3-transition@1.3.2" + ] + }, + { + "ref": "pkg:npm/d3-zoom@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3@3.5.17", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3@5.16.0", + "dependsOn": [ + "pkg:npm/d3-array@1.2.4", + "pkg:npm/d3-axis@1.0.12", + "pkg:npm/d3-brush@1.1.6", + "pkg:npm/d3-chord@1.0.6", + "pkg:npm/d3-collection@1.0.7", + "pkg:npm/d3-color@3.1.0", + "pkg:npm/d3-contour@1.3.2", + "pkg:npm/d3-dispatch@1.0.6", + "pkg:npm/d3-drag@1.2.5", + "pkg:npm/d3-dsv@1.2.0", + "pkg:npm/d3-ease@1.0.7", + "pkg:npm/d3-fetch@1.2.0", + "pkg:npm/d3-force@1.2.1", + "pkg:npm/d3-format@1.4.5", + "pkg:npm/d3-geo@1.12.1", + "pkg:npm/d3-hierarchy@1.1.9", + "pkg:npm/d3-interpolate@1.4.0", + "pkg:npm/d3-path@1.0.9", + "pkg:npm/d3-polygon@1.0.6", + "pkg:npm/d3-quadtree@1.0.7", + "pkg:npm/d3-random@1.1.2", + "pkg:npm/d3-scale-chromatic@1.5.0", + "pkg:npm/d3-scale@2.2.2", + "pkg:npm/d3-selection@1.4.2", + "pkg:npm/d3-shape@1.3.7", + "pkg:npm/d3-time-format@2.3.0", + "pkg:npm/d3-time@1.1.0", + "pkg:npm/d3-timer@1.0.10", + "pkg:npm/d3-transition@1.3.2", + "pkg:npm/d3-voronoi@1.1.4", + "pkg:npm/d3-zoom@1.8.3" + ] + }, + { + "ref": "pkg:npm/dagre-d3@0.6.4", + "dependsOn": [ + "pkg:npm/d3@5.16.0", + "pkg:npm/dagre@0.8.5", + "pkg:npm/graphlib@2.1.8", + "pkg:npm/lodash@4.17.21" + ] + }, + { + "ref": "pkg:npm/dagre@0.8.5", + "dependsOn": ["pkg:npm/graphlib@2.1.8", "pkg:npm/lodash@4.17.21"] + }, + { + "ref": "pkg:npm/damerau-levenshtein@1.0.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/data-urls@2.0.0", + "dependsOn": [ + "pkg:npm/abab@2.0.5", + "pkg:npm/whatwg-mimetype@2.3.0", + "pkg:npm/whatwg-url@8.7.0" + ] + }, + { + "ref": "pkg:npm/datatables.net-bs@1.11.4", + "dependsOn": ["pkg:npm/datatables.net@1.11.4", "pkg:npm/jquery@3.6.0"] + }, + { + "ref": "pkg:npm/datatables.net@1.11.4", + "dependsOn": ["pkg:npm/jquery@3.6.0"] + }, + { + "ref": "pkg:npm/date-now@0.1.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/debug@4.3.4", + "dependsOn": ["pkg:npm/ms@2.1.2"] + }, + { + "ref": "pkg:npm/debug@3.2.7", + "dependsOn": ["pkg:npm/ms@2.1.3"] + }, + { + "ref": "pkg:npm/decamelize-keys@1.1.0", + "dependsOn": ["pkg:npm/decamelize@1.2.0", "pkg:npm/map-obj@1.0.1"] + }, + { + "ref": "pkg:npm/decamelize@1.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/decamelize@5.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/decimal.js@10.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/decko@1.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/decode-named-character-reference@1.0.2", + "dependsOn": ["pkg:npm/character-entities@2.0.2"] + }, + { + "ref": "pkg:npm/decode-uri-component@0.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/dedent@0.7.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/deep-is@0.1.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/deepmerge@4.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/define-properties@1.1.3", + "dependsOn": ["pkg:npm/object-keys@1.1.1"] + }, + { + "ref": "pkg:npm/define-properties@1.1.4", + "dependsOn": [ + "pkg:npm/has-property-descriptors@1.0.0", + "pkg:npm/object-keys@1.1.1" + ] + }, + { + "ref": "pkg:npm/del@4.1.1", + "dependsOn": [ + "pkg:npm/@types/glob@7.1.3", + "pkg:npm/globby@6.1.0", + "pkg:npm/is-path-cwd@2.2.0", + "pkg:npm/is-path-in-cwd@2.1.0", + "pkg:npm/p-map@2.1.0", + "pkg:npm/pify@4.0.1", + "pkg:npm/rimraf@2.7.1" + ] + }, + { + "ref": "pkg:npm/delayed-stream@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/dequal@2.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/detect-newline@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/detect-node-es@1.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/detect-node@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/diff-sequences@27.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/diff-sequences@27.5.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/diff@5.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/dir-glob@3.0.1", + "dependsOn": ["pkg:npm/path-type@4.0.0"] + }, + { + "ref": "pkg:npm/doctrine@2.1.0", + "dependsOn": ["pkg:npm/esutils@2.0.3"] + }, + { + "ref": "pkg:npm/doctrine@3.0.0", + "dependsOn": ["pkg:npm/esutils@2.0.3"] + }, + { + "ref": "pkg:npm/dom-accessibility-api@0.5.10", + "dependsOn": [] + }, + { + "ref": "pkg:npm/dom-helpers@5.2.1", + "dependsOn": ["pkg:npm/@babel/runtime@7.18.3", "pkg:npm/csstype@3.0.8"] + }, + { + "ref": "pkg:npm/dom-serializer@0.2.2", + "dependsOn": ["pkg:npm/domelementtype@2.2.0", "pkg:npm/entities@2.2.0"] + }, + { + "ref": "pkg:npm/dom-serializer@1.3.2", + "dependsOn": [ + "pkg:npm/domelementtype@2.2.0", + "pkg:npm/domhandler@4.2.0", + "pkg:npm/entities@2.2.0" + ] + }, + { + "ref": "pkg:npm/domelementtype@1.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/domelementtype@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/domexception@2.0.1", + "dependsOn": ["pkg:npm/webidl-conversions@5.0.0"] + }, + { + "ref": "pkg:npm/domhandler@2.3.0", + "dependsOn": ["pkg:npm/domelementtype@1.3.1"] + }, + { + "ref": "pkg:npm/domhandler@4.2.0", + "dependsOn": ["pkg:npm/domelementtype@2.2.0"] + }, + { + "ref": "pkg:npm/domhandler@4.3.1", + "dependsOn": ["pkg:npm/domelementtype@2.2.0"] + }, + { + "ref": "pkg:npm/dompurify@2.2.9", + "dependsOn": [] + }, + { + "ref": "pkg:npm/domutils@1.5.1", + "dependsOn": [ + "pkg:npm/dom-serializer@0.2.2", + "pkg:npm/domelementtype@1.3.1" + ] + }, + { + "ref": "pkg:npm/domutils@2.7.0", + "dependsOn": [ + "pkg:npm/dom-serializer@1.3.2", + "pkg:npm/domelementtype@2.2.0", + "pkg:npm/domhandler@4.2.0" + ] + }, + { + "ref": "pkg:npm/domutils@2.8.0", + "dependsOn": [ + "pkg:npm/dom-serializer@1.3.2", + "pkg:npm/domelementtype@2.2.0", + "pkg:npm/domhandler@4.2.0" + ] + }, + { + "ref": "pkg:npm/echarts@5.4.2", + "dependsOn": ["pkg:npm/tslib@2.3.0", "pkg:npm/zrender@5.4.3"] + }, + { + "ref": "pkg:npm/electron-to-chromium@1.4.156", + "dependsOn": [] + }, + { + "ref": "pkg:npm/elkjs@0.7.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/emittery@0.8.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/emoji-regex@8.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/emoji-regex@9.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/emojis-list@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/enhanced-resolve@5.12.0", + "dependsOn": ["pkg:npm/graceful-fs@4.2.9", "pkg:npm/tapable@2.2.1"] + }, + { + "ref": "pkg:npm/entities@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/entities@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/envinfo@7.8.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/eonasdan-bootstrap-datetimepicker@4.17.49", + "dependsOn": [ + "pkg:npm/bootstrap@3.4.1", + "pkg:npm/jquery@3.6.0", + "pkg:npm/moment-timezone@0.4.1", + "pkg:npm/moment@2.29.4" + ] + }, + { + "ref": "pkg:npm/error-ex@1.3.2", + "dependsOn": ["pkg:npm/is-arrayish@0.2.1"] + }, + { + "ref": "pkg:npm/es-abstract@1.18.3", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/es-to-primitive@1.2.1", + "pkg:npm/function-bind@1.1.1", + "pkg:npm/get-intrinsic@1.1.1", + "pkg:npm/has-symbols@1.0.2", + "pkg:npm/has@1.0.3", + "pkg:npm/is-callable@1.2.3", + "pkg:npm/is-negative-zero@2.0.1", + "pkg:npm/is-regex@1.1.3", + "pkg:npm/is-string@1.0.6", + "pkg:npm/object-inspect@1.10.3", + "pkg:npm/object-keys@1.1.1", + "pkg:npm/object.assign@4.1.2", + "pkg:npm/string.prototype.trimend@1.0.4", + "pkg:npm/string.prototype.trimstart@1.0.4", + "pkg:npm/unbox-primitive@1.0.1" + ] + }, + { + "ref": "pkg:npm/es-abstract@1.20.1", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/es-to-primitive@1.2.1", + "pkg:npm/function-bind@1.1.1", + "pkg:npm/function.prototype.name@1.1.5", + "pkg:npm/get-intrinsic@1.1.1", + "pkg:npm/get-symbol-description@1.0.0", + "pkg:npm/has-property-descriptors@1.0.0", + "pkg:npm/has-symbols@1.0.3", + "pkg:npm/has@1.0.3", + "pkg:npm/internal-slot@1.0.3", + "pkg:npm/is-callable@1.2.4", + "pkg:npm/is-negative-zero@2.0.2", + "pkg:npm/is-regex@1.1.4", + "pkg:npm/is-shared-array-buffer@1.0.2", + "pkg:npm/is-string@1.0.7", + "pkg:npm/is-weakref@1.0.2", + "pkg:npm/object-inspect@1.12.2", + "pkg:npm/object-keys@1.1.1", + "pkg:npm/object.assign@4.1.2", + "pkg:npm/regexp.prototype.flags@1.4.3", + "pkg:npm/string.prototype.trimend@1.0.5", + "pkg:npm/string.prototype.trimstart@1.0.5", + "pkg:npm/unbox-primitive@1.0.2" + ] + }, + { + "ref": "pkg:npm/es-abstract@1.21.2", + "dependsOn": [ + "pkg:npm/array-buffer-byte-length@1.0.0", + "pkg:npm/available-typed-arrays@1.0.5", + "pkg:npm/call-bind@1.0.2", + "pkg:npm/es-set-tostringtag@2.0.1", + "pkg:npm/es-to-primitive@1.2.1", + "pkg:npm/function.prototype.name@1.1.5", + "pkg:npm/get-intrinsic@1.2.0", + "pkg:npm/get-symbol-description@1.0.0", + "pkg:npm/globalthis@1.0.3", + "pkg:npm/gopd@1.0.1", + "pkg:npm/has-property-descriptors@1.0.0", + "pkg:npm/has-proto@1.0.1", + "pkg:npm/has-symbols@1.0.3", + "pkg:npm/has@1.0.3", + "pkg:npm/internal-slot@1.0.5", + "pkg:npm/is-array-buffer@3.0.2", + "pkg:npm/is-callable@1.2.7", + "pkg:npm/is-negative-zero@2.0.2", + "pkg:npm/is-regex@1.1.4", + "pkg:npm/is-shared-array-buffer@1.0.2", + "pkg:npm/is-string@1.0.7", + "pkg:npm/is-typed-array@1.1.10", + "pkg:npm/is-weakref@1.0.2", + "pkg:npm/object-inspect@1.12.3", + "pkg:npm/object-keys@1.1.1", + "pkg:npm/object.assign@4.1.4", + "pkg:npm/regexp.prototype.flags@1.4.3", + "pkg:npm/safe-regex-test@1.0.0", + "pkg:npm/string.prototype.trim@1.2.7", + "pkg:npm/string.prototype.trimend@1.0.6", + "pkg:npm/string.prototype.trimstart@1.0.6", + "pkg:npm/typed-array-length@1.0.4", + "pkg:npm/unbox-primitive@1.0.2", + "pkg:npm/which-typed-array@1.1.9" + ] + }, + { + "ref": "pkg:npm/es-module-lexer@0.9.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/es-set-tostringtag@2.0.1", + "dependsOn": [ + "pkg:npm/get-intrinsic@1.2.0", + "pkg:npm/has-tostringtag@1.0.0", + "pkg:npm/has@1.0.3" + ] + }, + { + "ref": "pkg:npm/es-shim-unscopables@1.0.0", + "dependsOn": ["pkg:npm/has@1.0.3"] + }, + { + "ref": "pkg:npm/es-to-primitive@1.2.1", + "dependsOn": [ + "pkg:npm/is-callable@1.2.3", + "pkg:npm/is-date-object@1.0.4", + "pkg:npm/is-symbol@1.0.4" + ] + }, + { + "ref": "pkg:npm/es6-promise@3.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/escalade@3.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/escape-string-regexp@1.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/escape-string-regexp@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/escape-string-regexp@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/escape-string-regexp@5.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/escodegen@2.0.0", + "dependsOn": [ + "pkg:npm/esprima@4.0.1", + "pkg:npm/estraverse@5.2.0", + "pkg:npm/esutils@2.0.3", + "pkg:npm/optionator@0.8.3" + ] + }, + { + "ref": "pkg:npm/eslint-config-airbnb-base@15.0.0", + "dependsOn": [ + "pkg:npm/confusing-browser-globals@1.0.10", + "pkg:npm/object.assign@4.1.2", + "pkg:npm/object.entries@1.1.5", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/eslint-config-airbnb-typescript@17.0.0", + "dependsOn": ["pkg:npm/eslint-config-airbnb-base@15.0.0"] + }, + { + "ref": "pkg:npm/eslint-config-airbnb@19.0.4", + "dependsOn": [ + "pkg:npm/eslint-config-airbnb-base@15.0.0", + "pkg:npm/object.assign@4.1.2", + "pkg:npm/object.entries@1.1.5" + ] + }, + { + "ref": "pkg:npm/eslint-config-prettier@8.6.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/eslint-import-resolver-node@0.3.7", + "dependsOn": [ + "pkg:npm/debug@3.2.7", + "pkg:npm/is-core-module@2.11.0", + "pkg:npm/resolve@1.22.2" + ] + }, + { + "ref": "pkg:npm/eslint-module-utils@2.7.4", + "dependsOn": ["pkg:npm/debug@3.2.7"] + }, + { + "ref": "pkg:npm/eslint-plugin-es@3.0.1", + "dependsOn": ["pkg:npm/eslint-utils@2.1.0", "pkg:npm/regexpp@3.2.0"] + }, + { + "ref": "pkg:npm/eslint-plugin-html@6.1.2", + "dependsOn": ["pkg:npm/htmlparser2@6.1.0"] + }, + { + "ref": "pkg:npm/eslint-plugin-import@2.27.5", + "dependsOn": [ + "pkg:npm/array-includes@3.1.6", + "pkg:npm/array.prototype.flat@1.3.1", + "pkg:npm/array.prototype.flatmap@1.3.1", + "pkg:npm/debug@3.2.7", + "pkg:npm/doctrine@2.1.0", + "pkg:npm/eslint-import-resolver-node@0.3.7", + "pkg:npm/eslint-module-utils@2.7.4", + "pkg:npm/has@1.0.3", + "pkg:npm/is-core-module@2.11.0", + "pkg:npm/is-glob@4.0.3", + "pkg:npm/minimatch@3.1.2", + "pkg:npm/object.values@1.1.6", + "pkg:npm/resolve@1.22.2", + "pkg:npm/semver@6.3.1", + "pkg:npm/tsconfig-paths@3.14.2" + ] + }, + { + "ref": "pkg:npm/eslint-plugin-jsx-a11y@6.5.1", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.18.3", + "pkg:npm/aria-query@4.2.2", + "pkg:npm/array-includes@3.1.5", + "pkg:npm/ast-types-flow@0.0.7", + "pkg:npm/axe-core@4.4.2", + "pkg:npm/axobject-query@2.2.0", + "pkg:npm/damerau-levenshtein@1.0.8", + "pkg:npm/emoji-regex@9.2.2", + "pkg:npm/has@1.0.3", + "pkg:npm/jsx-ast-utils@3.3.0", + "pkg:npm/language-tags@1.0.5", + "pkg:npm/minimatch@3.1.2" + ] + }, + { + "ref": "pkg:npm/eslint-plugin-node@11.1.0", + "dependsOn": [ + "pkg:npm/eslint-plugin-es@3.0.1", + "pkg:npm/eslint-utils@2.1.0", + "pkg:npm/ignore@5.2.4", + "pkg:npm/minimatch@3.1.2", + "pkg:npm/resolve@1.20.0", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/eslint-plugin-promise@4.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/eslint-plugin-react-hooks@4.6.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/eslint-plugin-react@7.30.0", + "dependsOn": [ + "pkg:npm/array-includes@3.1.5", + "pkg:npm/array.prototype.flatmap@1.3.0", + "pkg:npm/doctrine@2.1.0", + "pkg:npm/estraverse@5.3.0", + "pkg:npm/minimatch@3.1.2", + "pkg:npm/object.entries@1.1.5", + "pkg:npm/object.fromentries@2.0.5", + "pkg:npm/object.hasown@1.1.1", + "pkg:npm/object.values@1.1.5", + "pkg:npm/prop-types@15.8.1", + "pkg:npm/resolve@2.0.0-next.3", + "pkg:npm/semver@6.3.1", + "pkg:npm/string.prototype.matchall@4.0.7" + ] + }, + { + "ref": "pkg:npm/eslint-plugin-standard@4.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/eslint-scope@5.1.1", + "dependsOn": ["pkg:npm/esrecurse@4.3.0", "pkg:npm/estraverse@4.3.0"] + }, + { + "ref": "pkg:npm/eslint-scope@7.1.1", + "dependsOn": ["pkg:npm/esrecurse@4.3.0", "pkg:npm/estraverse@5.2.0"] + }, + { + "ref": "pkg:npm/eslint-utils@2.1.0", + "dependsOn": ["pkg:npm/eslint-visitor-keys@1.3.0"] + }, + { + "ref": "pkg:npm/eslint-utils@3.0.0", + "dependsOn": ["pkg:npm/eslint-visitor-keys@2.1.0"] + }, + { + "ref": "pkg:npm/eslint-visitor-keys@1.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/eslint-visitor-keys@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/eslint-visitor-keys@3.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/eslint@8.17.0", + "dependsOn": [ + "pkg:npm/@eslint/eslintrc@1.3.0", + "pkg:npm/@humanwhocodes/config-array@0.9.5", + "pkg:npm/ajv@6.12.6", + "pkg:npm/chalk@4.1.1", + "pkg:npm/cross-spawn@7.0.3", + "pkg:npm/debug@4.3.4", + "pkg:npm/doctrine@3.0.0", + "pkg:npm/escape-string-regexp@4.0.0", + "pkg:npm/eslint-scope@7.1.1", + "pkg:npm/eslint-utils@3.0.0", + "pkg:npm/eslint-visitor-keys@3.3.0", + "pkg:npm/espree@9.3.2", + "pkg:npm/esquery@1.4.0", + "pkg:npm/esutils@2.0.3", + "pkg:npm/fast-deep-equal@3.1.3", + "pkg:npm/file-entry-cache@6.0.1", + "pkg:npm/functional-red-black-tree@1.0.1", + "pkg:npm/glob-parent@6.0.2", + "pkg:npm/globals@13.15.0", + "pkg:npm/ignore@5.2.4", + "pkg:npm/import-fresh@3.3.0", + "pkg:npm/imurmurhash@0.1.4", + "pkg:npm/is-glob@4.0.1", + "pkg:npm/js-yaml@4.1.0", + "pkg:npm/json-stable-stringify-without-jsonify@1.0.1", + "pkg:npm/levn@0.4.1", + "pkg:npm/lodash.merge@4.6.2", + "pkg:npm/minimatch@3.1.2", + "pkg:npm/natural-compare@1.4.0", + "pkg:npm/optionator@0.9.1", + "pkg:npm/regexpp@3.2.0", + "pkg:npm/strip-ansi@6.0.1", + "pkg:npm/strip-json-comments@3.1.1", + "pkg:npm/text-table@0.2.0", + "pkg:npm/v8-compile-cache@2.3.0" + ] + }, + { + "ref": "pkg:npm/espree@9.3.2", + "dependsOn": [ + "pkg:npm/acorn-jsx@5.3.2", + "pkg:npm/acorn@8.7.1", + "pkg:npm/eslint-visitor-keys@3.3.0" + ] + }, + { + "ref": "pkg:npm/esprima@4.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/esquery@1.4.0", + "dependsOn": ["pkg:npm/estraverse@5.3.0"] + }, + { + "ref": "pkg:npm/esrecurse@4.3.0", + "dependsOn": ["pkg:npm/estraverse@5.2.0"] + }, + { + "ref": "pkg:npm/estraverse@4.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/estraverse@5.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/estraverse@5.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/esutils@2.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/eventemitter3@4.0.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/events@3.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/execa@5.1.1", + "dependsOn": [ + "pkg:npm/cross-spawn@7.0.3", + "pkg:npm/get-stream@6.0.1", + "pkg:npm/human-signals@2.1.0", + "pkg:npm/is-stream@2.0.1", + "pkg:npm/merge-stream@2.0.0", + "pkg:npm/npm-run-path@4.0.1", + "pkg:npm/onetime@5.1.2", + "pkg:npm/signal-exit@3.0.5", + "pkg:npm/strip-final-newline@2.0.0" + ] + }, + { + "ref": "pkg:npm/exit@0.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/expect@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/jest-get-type@27.5.1", + "pkg:npm/jest-matcher-utils@27.5.1", + "pkg:npm/jest-message-util@27.5.1" + ] + }, + { + "ref": "pkg:npm/extend@3.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/fast-deep-equal@3.1.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/fast-glob@3.3.0", + "dependsOn": [ + "pkg:npm/@nodelib/fs.stat@2.0.5", + "pkg:npm/@nodelib/fs.walk@1.2.7", + "pkg:npm/glob-parent@5.1.2", + "pkg:npm/merge2@1.4.1", + "pkg:npm/micromatch@4.0.5" + ] + }, + { + "ref": "pkg:npm/fast-json-stable-stringify@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/fast-levenshtein@2.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/fast-safe-stringify@2.0.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/fastest-levenshtein@1.0.16", + "dependsOn": [] + }, + { + "ref": "pkg:npm/fastq@1.11.0", + "dependsOn": ["pkg:npm/reusify@1.0.4"] + }, + { + "ref": "pkg:npm/fault@1.0.4", + "dependsOn": ["pkg:npm/format@0.2.2"] + }, + { + "ref": "pkg:npm/fb-watchman@2.0.1", + "dependsOn": ["pkg:npm/bser@2.1.1"] + }, + { + "ref": "pkg:npm/fbemitter@3.0.0", + "dependsOn": ["pkg:npm/fbjs@3.0.4"] + }, + { + "ref": "pkg:npm/fbjs-css-vars@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/fbjs@3.0.4", + "dependsOn": [ + "pkg:npm/cross-fetch@3.1.5", + "pkg:npm/fbjs-css-vars@1.0.2", + "pkg:npm/loose-envify@1.4.0", + "pkg:npm/object-assign@4.1.1", + "pkg:npm/promise@7.3.1", + "pkg:npm/setimmediate@1.0.5", + "pkg:npm/ua-parser-js@0.7.33" + ] + }, + { + "ref": "pkg:npm/file-entry-cache@6.0.1", + "dependsOn": ["pkg:npm/flat-cache@3.0.4"] + }, + { + "ref": "pkg:npm/file-loader@6.2.0", + "dependsOn": ["pkg:npm/loader-utils@2.0.4", "pkg:npm/schema-utils@3.1.1"] + }, + { + "ref": "pkg:npm/fill-range@7.0.1", + "dependsOn": ["pkg:npm/to-regex-range@5.0.1"] + }, + { + "ref": "pkg:npm/find-cache-dir@3.3.1", + "dependsOn": [ + "pkg:npm/commondir@1.0.1", + "pkg:npm/make-dir@3.1.0", + "pkg:npm/pkg-dir@4.2.0" + ] + }, + { + "ref": "pkg:npm/find-cache-dir@3.3.2", + "dependsOn": [ + "pkg:npm/commondir@1.0.1", + "pkg:npm/make-dir@3.1.0", + "pkg:npm/pkg-dir@4.2.0" + ] + }, + { + "ref": "pkg:npm/find-root@1.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/find-up@4.1.0", + "dependsOn": ["pkg:npm/locate-path@5.0.0", "pkg:npm/path-exists@4.0.0"] + }, + { + "ref": "pkg:npm/find-up@5.0.0", + "dependsOn": ["pkg:npm/locate-path@6.0.0", "pkg:npm/path-exists@4.0.0"] + }, + { + "ref": "pkg:npm/flat-cache@3.0.4", + "dependsOn": ["pkg:npm/flatted@3.1.1", "pkg:npm/rimraf@3.0.2"] + }, + { + "ref": "pkg:npm/flatted@3.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/flux@4.0.3", + "dependsOn": ["pkg:npm/fbemitter@3.0.0", "pkg:npm/fbjs@3.0.4"] + }, + { + "ref": "pkg:npm/focus-lock@0.11.6", + "dependsOn": ["pkg:npm/tslib@2.3.1"] + }, + { + "ref": "pkg:npm/follow-redirects@1.15.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/for-each@0.3.3", + "dependsOn": ["pkg:npm/is-callable@1.2.7"] + }, + { + "ref": "pkg:npm/foreach@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/form-data@3.0.1", + "dependsOn": [ + "pkg:npm/asynckit@0.4.0", + "pkg:npm/combined-stream@1.0.8", + "pkg:npm/mime-types@2.1.35" + ] + }, + { + "ref": "pkg:npm/form-data@4.0.0", + "dependsOn": [ + "pkg:npm/asynckit@0.4.0", + "pkg:npm/combined-stream@1.0.8", + "pkg:npm/mime-types@2.1.35" + ] + }, + { + "ref": "pkg:npm/format@0.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/framer-motion@6.3.11", + "dependsOn": [ + "pkg:npm/framesync@6.0.1", + "pkg:npm/hey-listen@1.0.8", + "pkg:npm/popmotion@11.0.3", + "pkg:npm/style-value-types@5.0.0", + "pkg:npm/tslib@2.3.1" + ] + }, + { + "ref": "pkg:npm/framesync@5.3.0", + "dependsOn": ["pkg:npm/tslib@2.3.1"] + }, + { + "ref": "pkg:npm/framesync@6.0.1", + "dependsOn": ["pkg:npm/tslib@2.3.1"] + }, + { + "ref": "pkg:npm/fs-minipass@2.1.0", + "dependsOn": ["pkg:npm/minipass@3.1.3"] + }, + { + "ref": "pkg:npm/fs.realpath@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/fsevents@2.3.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/function-bind@1.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/function.prototype.name@1.1.5", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/es-abstract@1.20.1", + "pkg:npm/functions-have-names@1.2.3" + ] + }, + { + "ref": "pkg:npm/functional-red-black-tree@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/functions-have-names@1.2.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/gensync@1.0.0-beta.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/get-caller-file@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/get-intrinsic@1.1.1", + "dependsOn": [ + "pkg:npm/function-bind@1.1.1", + "pkg:npm/has-symbols@1.0.2", + "pkg:npm/has@1.0.3" + ] + }, + { + "ref": "pkg:npm/get-intrinsic@1.2.0", + "dependsOn": [ + "pkg:npm/function-bind@1.1.1", + "pkg:npm/has-symbols@1.0.3", + "pkg:npm/has@1.0.3" + ] + }, + { + "ref": "pkg:npm/get-nonce@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/get-npm-tarball-url@2.0.2", + "dependsOn": ["pkg:npm/normalize-registry-url@1.0.0"] + }, + { + "ref": "pkg:npm/get-package-type@0.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/get-stream@6.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/get-symbol-description@1.0.0", + "dependsOn": ["pkg:npm/call-bind@1.0.2", "pkg:npm/get-intrinsic@1.1.1"] + }, + { + "ref": "pkg:npm/glob-parent@5.1.2", + "dependsOn": ["pkg:npm/is-glob@4.0.3"] + }, + { + "ref": "pkg:npm/glob-parent@6.0.2", + "dependsOn": ["pkg:npm/is-glob@4.0.3"] + }, + { + "ref": "pkg:npm/glob-to-regexp@0.4.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/glob@7.1.7", + "dependsOn": [ + "pkg:npm/fs.realpath@1.0.0", + "pkg:npm/inflight@1.0.6", + "pkg:npm/inherits@2.0.4", + "pkg:npm/minimatch@3.1.2", + "pkg:npm/once@1.4.0", + "pkg:npm/path-is-absolute@1.0.1" + ] + }, + { + "ref": "pkg:npm/glob@7.2.0", + "dependsOn": [ + "pkg:npm/fs.realpath@1.0.0", + "pkg:npm/inflight@1.0.6", + "pkg:npm/inherits@2.0.4", + "pkg:npm/minimatch@3.1.2", + "pkg:npm/once@1.4.0", + "pkg:npm/path-is-absolute@1.0.1" + ] + }, + { + "ref": "pkg:npm/global-modules@2.0.0", + "dependsOn": ["pkg:npm/global-prefix@3.0.0"] + }, + { + "ref": "pkg:npm/global-prefix@3.0.0", + "dependsOn": [ + "pkg:npm/ini@1.3.8", + "pkg:npm/kind-of@6.0.3", + "pkg:npm/which@1.3.1" + ] + }, + { + "ref": "pkg:npm/globals@11.12.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/globals@13.15.0", + "dependsOn": ["pkg:npm/type-fest@0.20.2"] + }, + { + "ref": "pkg:npm/globalthis@1.0.3", + "dependsOn": ["pkg:npm/define-properties@1.1.3"] + }, + { + "ref": "pkg:npm/globalyzer@0.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/globby@11.1.0", + "dependsOn": [ + "pkg:npm/array-union@2.1.0", + "pkg:npm/dir-glob@3.0.1", + "pkg:npm/fast-glob@3.3.0", + "pkg:npm/ignore@5.2.4", + "pkg:npm/merge2@1.4.1", + "pkg:npm/slash@3.0.0" + ] + }, + { + "ref": "pkg:npm/globby@6.1.0", + "dependsOn": [ + "pkg:npm/array-union@1.0.2", + "pkg:npm/glob@7.1.7", + "pkg:npm/object-assign@4.1.1", + "pkg:npm/pify@2.3.0", + "pkg:npm/pinkie-promise@2.0.1" + ] + }, + { + "ref": "pkg:npm/globjoin@0.1.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/globrex@0.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/gopd@1.0.1", + "dependsOn": ["pkg:npm/get-intrinsic@1.2.0"] + }, + { + "ref": "pkg:npm/graceful-fs@4.2.9", + "dependsOn": [] + }, + { + "ref": "pkg:npm/graphlib@2.1.8", + "dependsOn": ["pkg:npm/lodash@4.17.21"] + }, + { + "ref": "pkg:npm/hard-rejection@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/has-bigints@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/has-bigints@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/has-flag@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/has-flag@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/has-property-descriptors@1.0.0", + "dependsOn": ["pkg:npm/get-intrinsic@1.1.1"] + }, + { + "ref": "pkg:npm/has-proto@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/has-symbols@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/has-symbols@1.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/has-tostringtag@1.0.0", + "dependsOn": ["pkg:npm/has-symbols@1.0.2"] + }, + { + "ref": "pkg:npm/has@1.0.3", + "dependsOn": ["pkg:npm/function-bind@1.1.1"] + }, + { + "ref": "pkg:npm/hast-util-parse-selector@2.2.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/hast-util-whitespace@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/hastscript@6.0.0", + "dependsOn": [ + "pkg:npm/@types/hast@2.3.4", + "pkg:npm/comma-separated-tokens@1.0.8", + "pkg:npm/hast-util-parse-selector@2.2.5", + "pkg:npm/property-information@5.6.0", + "pkg:npm/space-separated-tokens@1.1.5" + ] + }, + { + "ref": "pkg:npm/hey-listen@1.0.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/highlight.js@10.7.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/history@5.3.0", + "dependsOn": ["pkg:npm/@babel/runtime@7.17.9"] + }, + { + "ref": "pkg:npm/hoist-non-react-statics@3.3.2", + "dependsOn": ["pkg:npm/react-is@16.13.1"] + }, + { + "ref": "pkg:npm/hosted-git-info@4.0.2", + "dependsOn": ["pkg:npm/lru-cache@6.0.0"] + }, + { + "ref": "pkg:npm/html-encoding-sniffer@2.0.1", + "dependsOn": ["pkg:npm/whatwg-encoding@1.0.5"] + }, + { + "ref": "pkg:npm/html-escaper@2.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/html-tags@3.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/htmlparser2@3.8.3", + "dependsOn": [ + "pkg:npm/domelementtype@1.3.1", + "pkg:npm/domhandler@2.3.0", + "pkg:npm/domutils@1.5.1", + "pkg:npm/entities@1.0.0", + "pkg:npm/readable-stream@1.1.13" + ] + }, + { + "ref": "pkg:npm/htmlparser2@6.1.0", + "dependsOn": [ + "pkg:npm/domelementtype@2.2.0", + "pkg:npm/domhandler@4.2.0", + "pkg:npm/domutils@2.7.0", + "pkg:npm/entities@2.2.0" + ] + }, + { + "ref": "pkg:npm/http-proxy-agent@4.0.1", + "dependsOn": [ + "pkg:npm/@tootallnate/once@1.1.2", + "pkg:npm/agent-base@6.0.2", + "pkg:npm/debug@4.3.4" + ] + }, + { + "ref": "pkg:npm/http2-client@1.3.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/https-proxy-agent@5.0.0", + "dependsOn": ["pkg:npm/agent-base@6.0.2", "pkg:npm/debug@4.3.4"] + }, + { + "ref": "pkg:npm/human-signals@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/iconv-lite@0.4.24", + "dependsOn": [] + }, + { + "ref": "pkg:npm/icss-utils@5.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ignore@5.2.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/import-fresh@3.3.0", + "dependsOn": ["pkg:npm/parent-module@1.0.1", "pkg:npm/resolve-from@4.0.0"] + }, + { + "ref": "pkg:npm/import-lazy@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/import-local@3.0.3", + "dependsOn": ["pkg:npm/pkg-dir@4.2.0", "pkg:npm/resolve-cwd@3.0.0"] + }, + { + "ref": "pkg:npm/imports-loader@1.2.0", + "dependsOn": [ + "pkg:npm/loader-utils@2.0.4", + "pkg:npm/schema-utils@3.1.1", + "pkg:npm/source-map@0.6.1", + "pkg:npm/strip-comments@2.0.1" + ] + }, + { + "ref": "pkg:npm/imurmurhash@0.1.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/indent-string@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/indent-string@5.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/infer-owner@1.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/inflight@1.0.6", + "dependsOn": ["pkg:npm/once@1.4.0", "pkg:npm/wrappy@1.0.2"] + }, + { + "ref": "pkg:npm/inherits@2.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ini@1.3.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/inline-style-parser@0.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/internal-slot@1.0.3", + "dependsOn": [ + "pkg:npm/get-intrinsic@1.1.1", + "pkg:npm/has@1.0.3", + "pkg:npm/side-channel@1.0.4" + ] + }, + { + "ref": "pkg:npm/internal-slot@1.0.5", + "dependsOn": [ + "pkg:npm/get-intrinsic@1.2.0", + "pkg:npm/has@1.0.3", + "pkg:npm/side-channel@1.0.4" + ] + }, + { + "ref": "pkg:npm/internmap@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/interpret@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/invariant@2.2.4", + "dependsOn": ["pkg:npm/loose-envify@1.4.0"] + }, + { + "ref": "pkg:npm/is-alphabetical@1.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-alphanumerical@1.0.4", + "dependsOn": ["pkg:npm/is-alphabetical@1.0.4", "pkg:npm/is-decimal@1.0.4"] + }, + { + "ref": "pkg:npm/is-array-buffer@3.0.2", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/get-intrinsic@1.2.0", + "pkg:npm/is-typed-array@1.1.10" + ] + }, + { + "ref": "pkg:npm/is-arrayish@0.2.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-arrayish@0.3.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-bigint@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-boolean-object@1.1.1", + "dependsOn": ["pkg:npm/call-bind@1.0.2"] + }, + { + "ref": "pkg:npm/is-buffer@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-callable@1.2.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-callable@1.2.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-callable@1.2.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-core-module@2.11.0", + "dependsOn": ["pkg:npm/has@1.0.3"] + }, + { + "ref": "pkg:npm/is-core-module@2.4.0", + "dependsOn": ["pkg:npm/has@1.0.3"] + }, + { + "ref": "pkg:npm/is-core-module@2.12.1", + "dependsOn": ["pkg:npm/has@1.0.3"] + }, + { + "ref": "pkg:npm/is-core-module@2.9.0", + "dependsOn": ["pkg:npm/has@1.0.3"] + }, + { + "ref": "pkg:npm/is-date-object@1.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-decimal@1.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-extglob@2.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-fullwidth-code-point@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-generator-fn@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-glob@4.0.1", + "dependsOn": ["pkg:npm/is-extglob@2.1.1"] + }, + { + "ref": "pkg:npm/is-glob@4.0.3", + "dependsOn": ["pkg:npm/is-extglob@2.1.1"] + }, + { + "ref": "pkg:npm/is-hexadecimal@1.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-negative-zero@2.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-negative-zero@2.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-number-object@1.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-number@7.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-path-cwd@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-path-in-cwd@2.1.0", + "dependsOn": ["pkg:npm/is-path-inside@2.1.0"] + }, + { + "ref": "pkg:npm/is-path-inside@2.1.0", + "dependsOn": ["pkg:npm/path-is-inside@1.0.2"] + }, + { + "ref": "pkg:npm/is-plain-obj@1.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-plain-obj@4.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-plain-object@2.0.4", + "dependsOn": ["pkg:npm/isobject@3.0.1"] + }, + { + "ref": "pkg:npm/is-plain-object@5.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-potential-custom-element-name@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-regex@1.1.3", + "dependsOn": ["pkg:npm/call-bind@1.0.2", "pkg:npm/has-symbols@1.0.2"] + }, + { + "ref": "pkg:npm/is-regex@1.1.4", + "dependsOn": ["pkg:npm/call-bind@1.0.2", "pkg:npm/has-tostringtag@1.0.0"] + }, + { + "ref": "pkg:npm/is-shared-array-buffer@1.0.2", + "dependsOn": ["pkg:npm/call-bind@1.0.2"] + }, + { + "ref": "pkg:npm/is-stream@2.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-string@1.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-string@1.0.7", + "dependsOn": ["pkg:npm/has-tostringtag@1.0.0"] + }, + { + "ref": "pkg:npm/is-symbol@1.0.4", + "dependsOn": ["pkg:npm/has-symbols@1.0.2"] + }, + { + "ref": "pkg:npm/is-typed-array@1.1.10", + "dependsOn": [ + "pkg:npm/available-typed-arrays@1.0.5", + "pkg:npm/call-bind@1.0.2", + "pkg:npm/for-each@0.3.3", + "pkg:npm/gopd@1.0.1", + "pkg:npm/has-tostringtag@1.0.0" + ] + }, + { + "ref": "pkg:npm/is-typedarray@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-weakref@1.0.2", + "dependsOn": ["pkg:npm/call-bind@1.0.2"] + }, + { + "ref": "pkg:npm/isarray@0.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/isexe@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/isobject@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/istanbul-lib-coverage@3.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/istanbul-lib-instrument@5.1.0", + "dependsOn": [ + "pkg:npm/@babel/core@7.16.0", + "pkg:npm/@babel/parser@7.16.2", + "pkg:npm/@istanbuljs/schema@0.1.3", + "pkg:npm/istanbul-lib-coverage@3.2.0", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/istanbul-lib-report@3.0.0", + "dependsOn": [ + "pkg:npm/istanbul-lib-coverage@3.2.0", + "pkg:npm/make-dir@3.1.0", + "pkg:npm/supports-color@7.2.0" + ] + }, + { + "ref": "pkg:npm/istanbul-lib-source-maps@4.0.1", + "dependsOn": [ + "pkg:npm/debug@4.3.4", + "pkg:npm/istanbul-lib-coverage@3.2.0", + "pkg:npm/source-map@0.6.1" + ] + }, + { + "ref": "pkg:npm/istanbul-reports@3.1.4", + "dependsOn": [ + "pkg:npm/html-escaper@2.0.2", + "pkg:npm/istanbul-lib-report@3.0.0" + ] + }, + { + "ref": "pkg:npm/jest-canvas-mock@2.5.1", + "dependsOn": ["pkg:npm/cssfontparser@1.2.1", "pkg:npm/moo-color@1.0.3"] + }, + { + "ref": "pkg:npm/jest-changed-files@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/execa@5.1.1", + "pkg:npm/throat@6.0.1" + ] + }, + { + "ref": "pkg:npm/jest-circus@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/environment@27.5.1", + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/chalk@4.1.1", + "pkg:npm/co@4.6.0", + "pkg:npm/dedent@0.7.0", + "pkg:npm/expect@27.5.1", + "pkg:npm/is-generator-fn@2.1.0", + "pkg:npm/jest-each@27.5.1", + "pkg:npm/jest-matcher-utils@27.5.1", + "pkg:npm/jest-message-util@27.5.1", + "pkg:npm/jest-runtime@27.5.1", + "pkg:npm/jest-snapshot@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/pretty-format@27.5.1", + "pkg:npm/slash@3.0.0", + "pkg:npm/stack-utils@2.0.5", + "pkg:npm/throat@6.0.1" + ] + }, + { + "ref": "pkg:npm/jest-cli@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/core@27.5.1", + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/exit@0.1.2", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/import-local@3.0.3", + "pkg:npm/jest-config@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/jest-validate@27.5.1", + "pkg:npm/prompts@2.4.2", + "pkg:npm/yargs@16.2.0" + ] + }, + { + "ref": "pkg:npm/jest-config@27.5.1", + "dependsOn": [ + "pkg:npm/@babel/core@7.17.2", + "pkg:npm/@jest/test-sequencer@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/babel-jest@27.5.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/ci-info@3.2.0", + "pkg:npm/deepmerge@4.2.2", + "pkg:npm/glob@7.1.7", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-circus@27.5.1", + "pkg:npm/jest-environment-jsdom@27.5.1", + "pkg:npm/jest-environment-node@27.5.1", + "pkg:npm/jest-get-type@27.5.1", + "pkg:npm/jest-jasmine2@27.5.1", + "pkg:npm/jest-regex-util@27.5.1", + "pkg:npm/jest-resolve@27.5.1", + "pkg:npm/jest-runner@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/jest-validate@27.5.1", + "pkg:npm/micromatch@4.0.5", + "pkg:npm/parse-json@5.2.0", + "pkg:npm/pretty-format@27.5.1", + "pkg:npm/slash@3.0.0", + "pkg:npm/strip-json-comments@3.1.1" + ] + }, + { + "ref": "pkg:npm/jest-diff@27.3.1", + "dependsOn": [ + "pkg:npm/chalk@4.1.1", + "pkg:npm/diff-sequences@27.0.6", + "pkg:npm/jest-get-type@27.3.1", + "pkg:npm/pretty-format@27.3.1" + ] + }, + { + "ref": "pkg:npm/jest-diff@27.5.1", + "dependsOn": [ + "pkg:npm/chalk@4.1.1", + "pkg:npm/diff-sequences@27.5.1", + "pkg:npm/jest-get-type@27.5.1", + "pkg:npm/pretty-format@27.5.1" + ] + }, + { + "ref": "pkg:npm/jest-docblock@27.5.1", + "dependsOn": ["pkg:npm/detect-newline@3.1.0"] + }, + { + "ref": "pkg:npm/jest-each@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/jest-get-type@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/pretty-format@27.5.1" + ] + }, + { + "ref": "pkg:npm/jest-environment-jsdom@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/environment@27.5.1", + "pkg:npm/@jest/fake-timers@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/jest-mock@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/jsdom@16.7.0" + ] + }, + { + "ref": "pkg:npm/jest-environment-node@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/environment@27.5.1", + "pkg:npm/@jest/fake-timers@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/jest-mock@27.5.1", + "pkg:npm/jest-util@27.5.1" + ] + }, + { + "ref": "pkg:npm/jest-get-type@27.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/jest-get-type@27.5.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/jest-haste-map@27.3.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.2.5", + "pkg:npm/@types/graceful-fs@4.1.5", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/anymatch@3.1.2", + "pkg:npm/fb-watchman@2.0.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-regex-util@27.0.6", + "pkg:npm/jest-serializer@27.0.6", + "pkg:npm/jest-util@27.3.1", + "pkg:npm/jest-worker@27.3.1", + "pkg:npm/micromatch@4.0.5", + "pkg:npm/walker@1.0.8" + ] + }, + { + "ref": "pkg:npm/jest-haste-map@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/graceful-fs@4.1.5", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/anymatch@3.1.2", + "pkg:npm/fb-watchman@2.0.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-regex-util@27.5.1", + "pkg:npm/jest-serializer@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/jest-worker@27.5.1", + "pkg:npm/micromatch@4.0.5", + "pkg:npm/walker@1.0.8" + ] + }, + { + "ref": "pkg:npm/jest-jasmine2@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/environment@27.5.1", + "pkg:npm/@jest/source-map@27.5.1", + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/chalk@4.1.1", + "pkg:npm/co@4.6.0", + "pkg:npm/expect@27.5.1", + "pkg:npm/is-generator-fn@2.1.0", + "pkg:npm/jest-each@27.5.1", + "pkg:npm/jest-matcher-utils@27.5.1", + "pkg:npm/jest-message-util@27.5.1", + "pkg:npm/jest-runtime@27.5.1", + "pkg:npm/jest-snapshot@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/pretty-format@27.5.1", + "pkg:npm/throat@6.0.1" + ] + }, + { + "ref": "pkg:npm/jest-leak-detector@27.5.1", + "dependsOn": [ + "pkg:npm/jest-get-type@27.5.1", + "pkg:npm/pretty-format@27.5.1" + ] + }, + { + "ref": "pkg:npm/jest-matcher-utils@27.5.1", + "dependsOn": [ + "pkg:npm/chalk@4.1.1", + "pkg:npm/jest-diff@27.5.1", + "pkg:npm/jest-get-type@27.5.1", + "pkg:npm/pretty-format@27.5.1" + ] + }, + { + "ref": "pkg:npm/jest-message-util@27.5.1", + "dependsOn": [ + "pkg:npm/@babel/code-frame@7.16.0", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/stack-utils@2.0.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/micromatch@4.0.5", + "pkg:npm/pretty-format@27.5.1", + "pkg:npm/slash@3.0.0", + "pkg:npm/stack-utils@2.0.5" + ] + }, + { + "ref": "pkg:npm/jest-mock@27.5.1", + "dependsOn": ["pkg:npm/@jest/types@27.5.1", "pkg:npm/@types/node@15.12.2"] + }, + { + "ref": "pkg:npm/jest-pnp-resolver@1.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/jest-regex-util@27.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/jest-regex-util@27.5.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/jest-resolve-dependencies@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/jest-regex-util@27.5.1", + "pkg:npm/jest-snapshot@27.5.1" + ] + }, + { + "ref": "pkg:npm/jest-resolve@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-haste-map@27.5.1", + "pkg:npm/jest-pnp-resolver@1.2.2", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/jest-validate@27.5.1", + "pkg:npm/resolve.exports@1.1.0", + "pkg:npm/resolve@1.20.0", + "pkg:npm/slash@3.0.0" + ] + }, + { + "ref": "pkg:npm/jest-runner@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/console@27.5.1", + "pkg:npm/@jest/environment@27.5.1", + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/@jest/transform@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/chalk@4.1.1", + "pkg:npm/emittery@0.8.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-docblock@27.5.1", + "pkg:npm/jest-environment-jsdom@27.5.1", + "pkg:npm/jest-environment-node@27.5.1", + "pkg:npm/jest-haste-map@27.5.1", + "pkg:npm/jest-leak-detector@27.5.1", + "pkg:npm/jest-message-util@27.5.1", + "pkg:npm/jest-resolve@27.5.1", + "pkg:npm/jest-runtime@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/jest-worker@27.5.1", + "pkg:npm/source-map-support@0.5.21", + "pkg:npm/throat@6.0.1" + ] + }, + { + "ref": "pkg:npm/jest-runtime@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/environment@27.5.1", + "pkg:npm/@jest/fake-timers@27.5.1", + "pkg:npm/@jest/globals@27.5.1", + "pkg:npm/@jest/source-map@27.5.1", + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/@jest/transform@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/cjs-module-lexer@1.2.2", + "pkg:npm/collect-v8-coverage@1.0.1", + "pkg:npm/execa@5.1.1", + "pkg:npm/glob@7.1.7", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-haste-map@27.5.1", + "pkg:npm/jest-message-util@27.5.1", + "pkg:npm/jest-mock@27.5.1", + "pkg:npm/jest-regex-util@27.5.1", + "pkg:npm/jest-resolve@27.5.1", + "pkg:npm/jest-snapshot@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/slash@3.0.0", + "pkg:npm/strip-bom@4.0.0" + ] + }, + { + "ref": "pkg:npm/jest-serializer@27.0.6", + "dependsOn": ["pkg:npm/@types/node@15.12.2", "pkg:npm/graceful-fs@4.2.9"] + }, + { + "ref": "pkg:npm/jest-serializer@27.5.1", + "dependsOn": ["pkg:npm/@types/node@15.12.2", "pkg:npm/graceful-fs@4.2.9"] + }, + { + "ref": "pkg:npm/jest-snapshot@27.5.1", + "dependsOn": [ + "pkg:npm/@babel/core@7.16.0", + "pkg:npm/@babel/generator@7.16.0", + "pkg:npm/@babel/plugin-syntax-typescript@7.16.0", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.16.0", + "pkg:npm/@jest/transform@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/babel__traverse@7.14.2", + "pkg:npm/@types/prettier@2.4.1", + "pkg:npm/babel-preset-current-node-syntax@1.0.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/expect@27.5.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-diff@27.5.1", + "pkg:npm/jest-get-type@27.5.1", + "pkg:npm/jest-haste-map@27.5.1", + "pkg:npm/jest-matcher-utils@27.5.1", + "pkg:npm/jest-message-util@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/natural-compare@1.4.0", + "pkg:npm/pretty-format@27.5.1", + "pkg:npm/semver@7.5.4" + ] + }, + { + "ref": "pkg:npm/jest-util@27.3.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.2.5", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/chalk@4.1.1", + "pkg:npm/ci-info@3.2.0", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/picomatch@2.3.0" + ] + }, + { + "ref": "pkg:npm/jest-util@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/chalk@4.1.1", + "pkg:npm/ci-info@3.2.0", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/picomatch@2.3.0" + ] + }, + { + "ref": "pkg:npm/jest-validate@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/camelcase@6.2.0", + "pkg:npm/chalk@4.1.1", + "pkg:npm/jest-get-type@27.5.1", + "pkg:npm/leven@3.1.0", + "pkg:npm/pretty-format@27.5.1" + ] + }, + { + "ref": "pkg:npm/jest-watcher@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/ansi-escapes@4.3.2", + "pkg:npm/chalk@4.1.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/string-length@4.0.2" + ] + }, + { + "ref": "pkg:npm/jest-worker@26.6.2", + "dependsOn": [ + "pkg:npm/@types/node@15.12.2", + "pkg:npm/merge-stream@2.0.0", + "pkg:npm/supports-color@7.2.0" + ] + }, + { + "ref": "pkg:npm/jest-worker@27.3.1", + "dependsOn": [ + "pkg:npm/@types/node@15.12.2", + "pkg:npm/merge-stream@2.0.0", + "pkg:npm/supports-color@8.1.1" + ] + }, + { + "ref": "pkg:npm/jest-worker@27.5.1", + "dependsOn": [ + "pkg:npm/@types/node@15.12.2", + "pkg:npm/merge-stream@2.0.0", + "pkg:npm/supports-color@8.1.1" + ] + }, + { + "ref": "pkg:npm/jest@27.3.1", + "dependsOn": [ + "pkg:npm/@jest/core@27.5.1", + "pkg:npm/import-local@3.0.3", + "pkg:npm/jest-cli@27.5.1" + ] + }, + { + "ref": "pkg:npm/jquery@3.6.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/js-levenshtein@1.1.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/js-sha3@0.8.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/js-tokens@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/js-yaml@3.14.1", + "dependsOn": ["pkg:npm/argparse@1.0.10", "pkg:npm/esprima@4.0.1"] + }, + { + "ref": "pkg:npm/js-yaml@4.1.0", + "dependsOn": ["pkg:npm/argparse@2.0.1"] + }, + { + "ref": "pkg:npm/jsdom@16.7.0", + "dependsOn": [ + "pkg:npm/abab@2.0.5", + "pkg:npm/acorn-globals@6.0.0", + "pkg:npm/acorn@8.7.1", + "pkg:npm/cssom@0.4.4", + "pkg:npm/cssstyle@2.3.0", + "pkg:npm/data-urls@2.0.0", + "pkg:npm/decimal.js@10.3.1", + "pkg:npm/domexception@2.0.1", + "pkg:npm/escodegen@2.0.0", + "pkg:npm/form-data@3.0.1", + "pkg:npm/html-encoding-sniffer@2.0.1", + "pkg:npm/http-proxy-agent@4.0.1", + "pkg:npm/https-proxy-agent@5.0.0", + "pkg:npm/is-potential-custom-element-name@1.0.1", + "pkg:npm/nwsapi@2.2.0", + "pkg:npm/parse5@6.0.1", + "pkg:npm/saxes@5.0.1", + "pkg:npm/symbol-tree@3.2.4", + "pkg:npm/tough-cookie@4.1.3", + "pkg:npm/w3c-hr-time@1.0.2", + "pkg:npm/w3c-xmlserializer@2.0.0", + "pkg:npm/webidl-conversions@6.1.0", + "pkg:npm/whatwg-encoding@1.0.5", + "pkg:npm/whatwg-mimetype@2.3.0", + "pkg:npm/whatwg-url@8.7.0", + "pkg:npm/ws@7.5.5", + "pkg:npm/xml-name-validator@3.0.0" + ] + }, + { + "ref": "pkg:npm/jsesc@2.5.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/jsesc@0.5.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/jshint@2.13.4", + "dependsOn": [ + "pkg:npm/cli@1.0.1", + "pkg:npm/console-browserify@1.1.0", + "pkg:npm/exit@0.1.2", + "pkg:npm/htmlparser2@3.8.3", + "pkg:npm/lodash@4.17.21", + "pkg:npm/minimatch@3.0.8", + "pkg:npm/strip-json-comments@1.0.4" + ] + }, + { + "ref": "pkg:npm/json-parse-even-better-errors@2.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/json-pointer@0.6.2", + "dependsOn": ["pkg:npm/foreach@2.0.5"] + }, + { + "ref": "pkg:npm/json-schema-traverse@0.4.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/json-schema-traverse@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/json-stable-stringify-without-jsonify@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/json-stringify-safe@5.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/json5@1.0.2", + "dependsOn": ["pkg:npm/minimist@1.2.7"] + }, + { + "ref": "pkg:npm/json5@2.2.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/jsx-ast-utils@3.2.1", + "dependsOn": [ + "pkg:npm/array-includes@3.1.3", + "pkg:npm/object.assign@4.1.2" + ] + }, + { + "ref": "pkg:npm/jsx-ast-utils@3.3.0", + "dependsOn": [ + "pkg:npm/array-includes@3.1.5", + "pkg:npm/object.assign@4.1.2" + ] + }, + { + "ref": "pkg:npm/kind-of@6.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/kleur@3.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/kleur@4.1.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/known-css-properties@0.27.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/language-subtag-registry@0.3.21", + "dependsOn": [] + }, + { + "ref": "pkg:npm/language-tags@1.0.5", + "dependsOn": ["pkg:npm/language-subtag-registry@0.3.21"] + }, + { + "ref": "pkg:npm/leven@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/levn@0.4.1", + "dependsOn": ["pkg:npm/prelude-ls@1.2.1", "pkg:npm/type-check@0.4.0"] + }, + { + "ref": "pkg:npm/levn@0.3.0", + "dependsOn": ["pkg:npm/prelude-ls@1.1.2", "pkg:npm/type-check@0.3.2"] + }, + { + "ref": "pkg:npm/lilconfig@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lines-and-columns@1.1.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/loader-runner@4.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/loader-utils@2.0.4", + "dependsOn": [ + "pkg:npm/big.js@5.2.2", + "pkg:npm/emojis-list@3.0.0", + "pkg:npm/json5@2.2.1" + ] + }, + { + "ref": "pkg:npm/locate-path@5.0.0", + "dependsOn": ["pkg:npm/p-locate@4.1.0"] + }, + { + "ref": "pkg:npm/locate-path@6.0.0", + "dependsOn": ["pkg:npm/p-locate@5.0.0"] + }, + { + "ref": "pkg:npm/lodash.curry@4.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.debounce@4.0.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.difference@4.5.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.flow@3.5.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.isequal@4.5.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.memoize@4.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.merge@4.6.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.mergewith@4.6.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.set@4.3.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.truncate@4.4.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.uniq@4.5.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash@4.17.21", + "dependsOn": [] + }, + { + "ref": "pkg:npm/longest-streak@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/loose-envify@1.4.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lowlight@1.20.0", + "dependsOn": ["pkg:npm/fault@1.0.4", "pkg:npm/highlight.js@10.7.3"] + }, + { + "ref": "pkg:npm/lru-cache@6.0.0", + "dependsOn": ["pkg:npm/yallist@4.0.0"] + }, + { + "ref": "pkg:npm/lunr@2.3.9", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lz-string@1.4.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/make-dir@3.1.0", + "dependsOn": ["pkg:npm/semver@6.3.1"] + }, + { + "ref": "pkg:npm/makeerror@1.0.12", + "dependsOn": ["pkg:npm/tmpl@1.0.5"] + }, + { + "ref": "pkg:npm/map-obj@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/map-obj@4.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mark.js@8.11.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/markdown-table@3.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/marked@4.0.17", + "dependsOn": [] + }, + { + "ref": "pkg:npm/match-sorter@6.3.1", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.16.0", + "pkg:npm/remove-accents@0.4.2" + ] + }, + { + "ref": "pkg:npm/mathml-tag-names@2.1.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mdast-util-definitions@5.1.1", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/@types/unist@2.0.6", + "pkg:npm/unist-util-visit@4.1.1" + ] + }, + { + "ref": "pkg:npm/mdast-util-find-and-replace@2.2.1", + "dependsOn": [ + "pkg:npm/escape-string-regexp@5.0.0", + "pkg:npm/unist-util-is@5.1.1", + "pkg:npm/unist-util-visit-parents@5.1.1" + ] + }, + { + "ref": "pkg:npm/mdast-util-from-markdown@1.2.0", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/@types/unist@2.0.6", + "pkg:npm/decode-named-character-reference@1.0.2", + "pkg:npm/mdast-util-to-string@3.1.0", + "pkg:npm/micromark-util-decode-numeric-character-reference@1.0.0", + "pkg:npm/micromark-util-decode-string@1.0.2", + "pkg:npm/micromark-util-normalize-identifier@1.0.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/micromark@3.1.0", + "pkg:npm/unist-util-stringify-position@3.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/mdast-util-gfm-autolink-literal@1.0.2", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/ccount@2.0.1", + "pkg:npm/mdast-util-find-and-replace@2.2.1", + "pkg:npm/micromark-util-character@1.1.0" + ] + }, + { + "ref": "pkg:npm/mdast-util-gfm-footnote@1.0.1", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/mdast-util-to-markdown@1.3.0", + "pkg:npm/micromark-util-normalize-identifier@1.0.0" + ] + }, + { + "ref": "pkg:npm/mdast-util-gfm-strikethrough@1.0.2", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/mdast-util-to-markdown@1.3.0" + ] + }, + { + "ref": "pkg:npm/mdast-util-gfm-table@1.0.6", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/markdown-table@3.0.3", + "pkg:npm/mdast-util-from-markdown@1.2.0", + "pkg:npm/mdast-util-to-markdown@1.3.0" + ] + }, + { + "ref": "pkg:npm/mdast-util-gfm-task-list-item@1.0.1", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/mdast-util-to-markdown@1.3.0" + ] + }, + { + "ref": "pkg:npm/mdast-util-gfm@2.0.1", + "dependsOn": [ + "pkg:npm/mdast-util-from-markdown@1.2.0", + "pkg:npm/mdast-util-gfm-autolink-literal@1.0.2", + "pkg:npm/mdast-util-gfm-footnote@1.0.1", + "pkg:npm/mdast-util-gfm-strikethrough@1.0.2", + "pkg:npm/mdast-util-gfm-table@1.0.6", + "pkg:npm/mdast-util-gfm-task-list-item@1.0.1", + "pkg:npm/mdast-util-to-markdown@1.3.0" + ] + }, + { + "ref": "pkg:npm/mdast-util-to-hast@12.2.4", + "dependsOn": [ + "pkg:npm/@types/hast@2.3.4", + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/mdast-util-definitions@5.1.1", + "pkg:npm/micromark-util-sanitize-uri@1.1.0", + "pkg:npm/trim-lines@3.0.1", + "pkg:npm/unist-builder@3.0.0", + "pkg:npm/unist-util-generated@2.0.0", + "pkg:npm/unist-util-position@4.0.3", + "pkg:npm/unist-util-visit@4.1.1" + ] + }, + { + "ref": "pkg:npm/mdast-util-to-markdown@1.3.0", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/@types/unist@2.0.6", + "pkg:npm/longest-streak@3.1.0", + "pkg:npm/mdast-util-to-string@3.1.0", + "pkg:npm/micromark-util-decode-string@1.0.2", + "pkg:npm/unist-util-visit@4.1.1", + "pkg:npm/zwitch@2.0.4" + ] + }, + { + "ref": "pkg:npm/mdast-util-to-string@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mdn-data@2.0.14", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mdn-data@2.0.30", + "dependsOn": [] + }, + { + "ref": "pkg:npm/memoize-one@5.2.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/meow@10.1.5", + "dependsOn": [ + "pkg:npm/@types/minimist@1.2.2", + "pkg:npm/camelcase-keys@7.0.0", + "pkg:npm/decamelize-keys@1.1.0", + "pkg:npm/decamelize@5.0.1", + "pkg:npm/hard-rejection@2.1.0", + "pkg:npm/minimist-options@4.1.0", + "pkg:npm/normalize-package-data@3.0.3", + "pkg:npm/read-pkg-up@8.0.0", + "pkg:npm/redent@4.0.0", + "pkg:npm/trim-newlines@4.1.1", + "pkg:npm/type-fest@1.4.0", + "pkg:npm/yargs-parser@20.2.9" + ] + }, + { + "ref": "pkg:npm/merge-stream@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/merge2@1.4.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/micromark-core-commonmark@1.0.6", + "dependsOn": [ + "pkg:npm/decode-named-character-reference@1.0.2", + "pkg:npm/micromark-factory-destination@1.0.0", + "pkg:npm/micromark-factory-label@1.0.2", + "pkg:npm/micromark-factory-space@1.0.0", + "pkg:npm/micromark-factory-title@1.0.2", + "pkg:npm/micromark-factory-whitespace@1.0.0", + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-chunked@1.0.0", + "pkg:npm/micromark-util-classify-character@1.0.0", + "pkg:npm/micromark-util-html-tag-name@1.1.0", + "pkg:npm/micromark-util-normalize-identifier@1.0.0", + "pkg:npm/micromark-util-resolve-all@1.0.0", + "pkg:npm/micromark-util-subtokenize@1.0.2", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromark-extension-gfm-autolink-literal@1.0.3", + "dependsOn": [ + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-sanitize-uri@1.1.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromark-extension-gfm-footnote@1.0.4", + "dependsOn": [ + "pkg:npm/micromark-core-commonmark@1.0.6", + "pkg:npm/micromark-factory-space@1.0.0", + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-normalize-identifier@1.0.0", + "pkg:npm/micromark-util-sanitize-uri@1.1.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromark-extension-gfm-strikethrough@1.0.4", + "dependsOn": [ + "pkg:npm/micromark-util-chunked@1.0.0", + "pkg:npm/micromark-util-classify-character@1.0.0", + "pkg:npm/micromark-util-resolve-all@1.0.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromark-extension-gfm-table@1.0.5", + "dependsOn": [ + "pkg:npm/micromark-factory-space@1.0.0", + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromark-extension-gfm-tagfilter@1.0.1", + "dependsOn": ["pkg:npm/micromark-util-types@1.0.2"] + }, + { + "ref": "pkg:npm/micromark-extension-gfm-task-list-item@1.0.3", + "dependsOn": [ + "pkg:npm/micromark-factory-space@1.0.0", + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromark-extension-gfm@2.0.1", + "dependsOn": [ + "pkg:npm/micromark-extension-gfm-autolink-literal@1.0.3", + "pkg:npm/micromark-extension-gfm-footnote@1.0.4", + "pkg:npm/micromark-extension-gfm-strikethrough@1.0.4", + "pkg:npm/micromark-extension-gfm-table@1.0.5", + "pkg:npm/micromark-extension-gfm-tagfilter@1.0.1", + "pkg:npm/micromark-extension-gfm-task-list-item@1.0.3", + "pkg:npm/micromark-util-combine-extensions@1.0.0", + "pkg:npm/micromark-util-types@1.0.2" + ] + }, + { + "ref": "pkg:npm/micromark-factory-destination@1.0.0", + "dependsOn": [ + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2" + ] + }, + { + "ref": "pkg:npm/micromark-factory-label@1.0.2", + "dependsOn": [ + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromark-factory-space@1.0.0", + "dependsOn": [ + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-types@1.0.2" + ] + }, + { + "ref": "pkg:npm/micromark-factory-title@1.0.2", + "dependsOn": [ + "pkg:npm/micromark-factory-space@1.0.0", + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromark-factory-whitespace@1.0.0", + "dependsOn": [ + "pkg:npm/micromark-factory-space@1.0.0", + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2" + ] + }, + { + "ref": "pkg:npm/micromark-util-character@1.1.0", + "dependsOn": [ + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2" + ] + }, + { + "ref": "pkg:npm/micromark-util-chunked@1.0.0", + "dependsOn": ["pkg:npm/micromark-util-symbol@1.0.1"] + }, + { + "ref": "pkg:npm/micromark-util-classify-character@1.0.0", + "dependsOn": [ + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2" + ] + }, + { + "ref": "pkg:npm/micromark-util-combine-extensions@1.0.0", + "dependsOn": [ + "pkg:npm/micromark-util-chunked@1.0.0", + "pkg:npm/micromark-util-types@1.0.2" + ] + }, + { + "ref": "pkg:npm/micromark-util-decode-numeric-character-reference@1.0.0", + "dependsOn": ["pkg:npm/micromark-util-symbol@1.0.1"] + }, + { + "ref": "pkg:npm/micromark-util-decode-string@1.0.2", + "dependsOn": [ + "pkg:npm/decode-named-character-reference@1.0.2", + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-decode-numeric-character-reference@1.0.0", + "pkg:npm/micromark-util-symbol@1.0.1" + ] + }, + { + "ref": "pkg:npm/micromark-util-encode@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/micromark-util-html-tag-name@1.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/micromark-util-normalize-identifier@1.0.0", + "dependsOn": ["pkg:npm/micromark-util-symbol@1.0.1"] + }, + { + "ref": "pkg:npm/micromark-util-resolve-all@1.0.0", + "dependsOn": ["pkg:npm/micromark-util-types@1.0.2"] + }, + { + "ref": "pkg:npm/micromark-util-sanitize-uri@1.1.0", + "dependsOn": [ + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-encode@1.0.1", + "pkg:npm/micromark-util-symbol@1.0.1" + ] + }, + { + "ref": "pkg:npm/micromark-util-subtokenize@1.0.2", + "dependsOn": [ + "pkg:npm/micromark-util-chunked@1.0.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromark-util-symbol@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/micromark-util-types@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/micromark@3.1.0", + "dependsOn": [ + "pkg:npm/@types/debug@4.1.7", + "pkg:npm/debug@4.3.4", + "pkg:npm/decode-named-character-reference@1.0.2", + "pkg:npm/micromark-core-commonmark@1.0.6", + "pkg:npm/micromark-factory-space@1.0.0", + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-chunked@1.0.0", + "pkg:npm/micromark-util-combine-extensions@1.0.0", + "pkg:npm/micromark-util-decode-numeric-character-reference@1.0.0", + "pkg:npm/micromark-util-encode@1.0.1", + "pkg:npm/micromark-util-normalize-identifier@1.0.0", + "pkg:npm/micromark-util-resolve-all@1.0.0", + "pkg:npm/micromark-util-sanitize-uri@1.1.0", + "pkg:npm/micromark-util-subtokenize@1.0.2", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromatch@4.0.5", + "dependsOn": ["pkg:npm/braces@3.0.2", "pkg:npm/picomatch@2.3.1"] + }, + { + "ref": "pkg:npm/microseconds@0.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mime-db@1.52.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mime-types@2.1.35", + "dependsOn": ["pkg:npm/mime-db@1.52.0"] + }, + { + "ref": "pkg:npm/mime@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mimic-fn@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/min-indent@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mini-css-extract-plugin@1.6.2", + "dependsOn": [ + "pkg:npm/loader-utils@2.0.4", + "pkg:npm/schema-utils@3.1.1", + "pkg:npm/webpack-sources@1.4.3" + ] + }, + { + "ref": "pkg:npm/minimatch@3.1.2", + "dependsOn": ["pkg:npm/brace-expansion@1.1.11"] + }, + { + "ref": "pkg:npm/minimatch@5.1.0", + "dependsOn": ["pkg:npm/brace-expansion@2.0.1"] + }, + { + "ref": "pkg:npm/minimatch@3.0.8", + "dependsOn": ["pkg:npm/brace-expansion@1.1.11"] + }, + { + "ref": "pkg:npm/minimist-options@4.1.0", + "dependsOn": [ + "pkg:npm/arrify@1.0.1", + "pkg:npm/is-plain-obj@1.1.0", + "pkg:npm/kind-of@6.0.3" + ] + }, + { + "ref": "pkg:npm/minimist@1.2.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/minipass-collect@1.0.2", + "dependsOn": ["pkg:npm/minipass@3.1.3"] + }, + { + "ref": "pkg:npm/minipass-flush@1.0.5", + "dependsOn": ["pkg:npm/minipass@3.1.3"] + }, + { + "ref": "pkg:npm/minipass-pipeline@1.2.4", + "dependsOn": ["pkg:npm/minipass@3.1.3"] + }, + { + "ref": "pkg:npm/minipass@3.1.3", + "dependsOn": ["pkg:npm/yallist@4.0.0"] + }, + { + "ref": "pkg:npm/minizlib@2.1.2", + "dependsOn": ["pkg:npm/minipass@3.1.3", "pkg:npm/yallist@4.0.0"] + }, + { + "ref": "pkg:npm/mkdirp@1.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mobx-react-lite@3.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mobx-react@7.2.0", + "dependsOn": ["pkg:npm/mobx-react-lite@3.2.0"] + }, + { + "ref": "pkg:npm/moment-locales-webpack-plugin@1.2.0", + "dependsOn": ["pkg:npm/lodash.difference@4.5.0"] + }, + { + "ref": "pkg:npm/moment-timezone@0.4.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/moment-timezone@0.5.43", + "dependsOn": ["pkg:npm/moment@2.29.4"] + }, + { + "ref": "pkg:npm/moment@2.29.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/moo-color@1.0.3", + "dependsOn": ["pkg:npm/color-name@1.1.4"] + }, + { + "ref": "pkg:npm/mri@1.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ms@2.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ms@2.1.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/nano-time@1.0.0", + "dependsOn": ["pkg:npm/big-integer@1.6.51"] + }, + { + "ref": "pkg:npm/nanoid@3.3.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/natural-compare@1.4.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/needle@2.9.1", + "dependsOn": [ + "pkg:npm/debug@3.2.7", + "pkg:npm/iconv-lite@0.4.24", + "pkg:npm/sax@1.2.4" + ] + }, + { + "ref": "pkg:npm/neo-async@2.6.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/nock@13.2.4", + "dependsOn": [ + "pkg:npm/debug@4.3.4", + "pkg:npm/json-stringify-safe@5.0.1", + "pkg:npm/lodash.set@4.3.2", + "pkg:npm/propagate@2.0.1" + ] + }, + { + "ref": "pkg:npm/node-fetch-h2@2.3.0", + "dependsOn": ["pkg:npm/http2-client@1.3.3"] + }, + { + "ref": "pkg:npm/node-fetch@2.6.7", + "dependsOn": ["pkg:npm/whatwg-url@5.0.0"] + }, + { + "ref": "pkg:npm/node-int64@0.4.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/node-modules-regexp@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/node-readfiles@0.2.0", + "dependsOn": ["pkg:npm/es6-promise@3.3.1"] + }, + { + "ref": "pkg:npm/node-releases@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/normalize-package-data@3.0.3", + "dependsOn": [ + "pkg:npm/hosted-git-info@4.0.2", + "pkg:npm/is-core-module@2.12.1", + "pkg:npm/semver@7.5.4", + "pkg:npm/validate-npm-package-license@3.0.4" + ] + }, + { + "ref": "pkg:npm/normalize-path@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/normalize-registry-url@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/normalize-url@6.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/npm-run-path@4.0.1", + "dependsOn": ["pkg:npm/path-key@3.1.1"] + }, + { + "ref": "pkg:npm/nth-check@2.1.1", + "dependsOn": ["pkg:npm/boolbase@1.0.0"] + }, + { + "ref": "pkg:npm/nvd3@1.8.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/nwsapi@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/oas-kit-common@1.0.8", + "dependsOn": ["pkg:npm/fast-safe-stringify@2.0.7"] + }, + { + "ref": "pkg:npm/oas-linter@3.2.2", + "dependsOn": [ + "pkg:npm/@exodus/schemasafe@1.0.0-rc.3", + "pkg:npm/should@13.2.3", + "pkg:npm/yaml@1.10.2" + ] + }, + { + "ref": "pkg:npm/oas-resolver@2.5.5", + "dependsOn": [ + "pkg:npm/node-fetch-h2@2.3.0", + "pkg:npm/oas-kit-common@1.0.8", + "pkg:npm/reftools@1.1.8", + "pkg:npm/yaml@1.10.2", + "pkg:npm/yargs@17.0.1" + ] + }, + { + "ref": "pkg:npm/oas-schema-walker@1.1.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/oas-validator@5.0.6", + "dependsOn": [ + "pkg:npm/call-me-maybe@1.0.1", + "pkg:npm/oas-kit-common@1.0.8", + "pkg:npm/oas-linter@3.2.2", + "pkg:npm/oas-resolver@2.5.5", + "pkg:npm/oas-schema-walker@1.1.5", + "pkg:npm/reftools@1.1.8", + "pkg:npm/should@13.2.3", + "pkg:npm/yaml@1.10.2" + ] + }, + { + "ref": "pkg:npm/object-assign@4.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/object-inspect@1.10.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/object-inspect@1.12.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/object-inspect@1.12.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/object-inspect@1.11.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/object-keys@1.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/object.assign@4.1.2", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/has-symbols@1.0.2", + "pkg:npm/object-keys@1.1.1" + ] + }, + { + "ref": "pkg:npm/object.assign@4.1.4", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/has-symbols@1.0.3", + "pkg:npm/object-keys@1.1.1" + ] + }, + { + "ref": "pkg:npm/object.entries@1.1.5", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/es-abstract@1.20.1" + ] + }, + { + "ref": "pkg:npm/object.fromentries@2.0.5", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/es-abstract@1.20.1" + ] + }, + { + "ref": "pkg:npm/object.hasown@1.1.1", + "dependsOn": [ + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.20.1" + ] + }, + { + "ref": "pkg:npm/object.values@1.1.5", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/es-abstract@1.20.1" + ] + }, + { + "ref": "pkg:npm/object.values@1.1.6", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.21.2" + ] + }, + { + "ref": "pkg:npm/oblivious-set@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/once@1.4.0", + "dependsOn": ["pkg:npm/wrappy@1.0.2"] + }, + { + "ref": "pkg:npm/onetime@5.1.2", + "dependsOn": ["pkg:npm/mimic-fn@2.1.0"] + }, + { + "ref": "pkg:npm/openapi-sampler@1.3.0", + "dependsOn": [ + "pkg:npm/@types/json-schema@7.0.7", + "pkg:npm/json-pointer@0.6.2" + ] + }, + { + "ref": "pkg:npm/openapi-typescript@5.4.1", + "dependsOn": [ + "pkg:npm/js-yaml@4.1.0", + "pkg:npm/mime@3.0.0", + "pkg:npm/prettier@2.7.1", + "pkg:npm/tiny-glob@0.2.9", + "pkg:npm/undici@5.26.3", + "pkg:npm/yargs-parser@21.0.1" + ] + }, + { + "ref": "pkg:npm/optionator@0.8.3", + "dependsOn": [ + "pkg:npm/deep-is@0.1.4", + "pkg:npm/fast-levenshtein@2.0.6", + "pkg:npm/levn@0.3.0", + "pkg:npm/prelude-ls@1.1.2", + "pkg:npm/type-check@0.3.2", + "pkg:npm/word-wrap@1.2.4" + ] + }, + { + "ref": "pkg:npm/optionator@0.9.1", + "dependsOn": [ + "pkg:npm/deep-is@0.1.4", + "pkg:npm/fast-levenshtein@2.0.6", + "pkg:npm/levn@0.4.1", + "pkg:npm/prelude-ls@1.2.1", + "pkg:npm/type-check@0.4.0", + "pkg:npm/word-wrap@1.2.4" + ] + }, + { + "ref": "pkg:npm/p-limit@2.3.0", + "dependsOn": ["pkg:npm/p-try@2.2.0"] + }, + { + "ref": "pkg:npm/p-limit@3.1.0", + "dependsOn": ["pkg:npm/yocto-queue@0.1.0"] + }, + { + "ref": "pkg:npm/p-locate@4.1.0", + "dependsOn": ["pkg:npm/p-limit@2.3.0"] + }, + { + "ref": "pkg:npm/p-locate@5.0.0", + "dependsOn": ["pkg:npm/p-limit@3.1.0"] + }, + { + "ref": "pkg:npm/p-map@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/p-map@4.0.0", + "dependsOn": ["pkg:npm/aggregate-error@3.1.0"] + }, + { + "ref": "pkg:npm/p-try@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/parent-module@1.0.1", + "dependsOn": ["pkg:npm/callsites@3.1.0"] + }, + { + "ref": "pkg:npm/parse-entities@2.0.0", + "dependsOn": [ + "pkg:npm/character-entities-legacy@1.1.4", + "pkg:npm/character-entities@1.2.4", + "pkg:npm/character-reference-invalid@1.1.4", + "pkg:npm/is-alphanumerical@1.0.4", + "pkg:npm/is-decimal@1.0.4", + "pkg:npm/is-hexadecimal@1.0.4" + ] + }, + { + "ref": "pkg:npm/parse-json@5.2.0", + "dependsOn": [ + "pkg:npm/@babel/code-frame@7.14.5", + "pkg:npm/error-ex@1.3.2", + "pkg:npm/json-parse-even-better-errors@2.3.1", + "pkg:npm/lines-and-columns@1.1.6" + ] + }, + { + "ref": "pkg:npm/parse5@6.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/path-browserify@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/path-exists@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/path-is-absolute@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/path-is-inside@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/path-key@3.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/path-parse@1.0.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/path-type@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/perfect-scrollbar@1.5.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/picocolors@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/picomatch@2.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/picomatch@2.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/pify@2.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/pify@4.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/pinkie-promise@2.0.1", + "dependsOn": ["pkg:npm/pinkie@2.0.4"] + }, + { + "ref": "pkg:npm/pinkie@2.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/pirates@4.0.1", + "dependsOn": ["pkg:npm/node-modules-regexp@1.0.0"] + }, + { + "ref": "pkg:npm/pirates@4.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/pkg-dir@4.2.0", + "dependsOn": ["pkg:npm/find-up@4.1.0"] + }, + { + "ref": "pkg:npm/pluralize@8.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/polished@4.1.3", + "dependsOn": ["pkg:npm/@babel/runtime@7.14.6"] + }, + { + "ref": "pkg:npm/popmotion@11.0.3", + "dependsOn": [ + "pkg:npm/framesync@6.0.1", + "pkg:npm/hey-listen@1.0.8", + "pkg:npm/style-value-types@5.0.0", + "pkg:npm/tslib@2.3.1" + ] + }, + { + "ref": "pkg:npm/postcss-calc@8.2.4", + "dependsOn": [ + "pkg:npm/postcss-selector-parser@6.0.13", + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-colormin@5.3.0", + "dependsOn": [ + "pkg:npm/browserslist@4.20.4", + "pkg:npm/caniuse-api@3.0.0", + "pkg:npm/colord@2.9.3", + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-convert-values@5.1.2", + "dependsOn": [ + "pkg:npm/browserslist@4.20.4", + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-discard-comments@5.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/postcss-discard-duplicates@5.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/postcss-discard-empty@5.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/postcss-discard-overridden@5.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/postcss-merge-longhand@5.1.5", + "dependsOn": [ + "pkg:npm/postcss-value-parser@4.2.0", + "pkg:npm/stylehacks@5.1.0" + ] + }, + { + "ref": "pkg:npm/postcss-merge-rules@5.1.2", + "dependsOn": [ + "pkg:npm/browserslist@4.20.4", + "pkg:npm/caniuse-api@3.0.0", + "pkg:npm/cssnano-utils@3.1.0", + "pkg:npm/postcss-selector-parser@6.0.13" + ] + }, + { + "ref": "pkg:npm/postcss-minify-font-values@5.1.0", + "dependsOn": ["pkg:npm/postcss-value-parser@4.2.0"] + }, + { + "ref": "pkg:npm/postcss-minify-gradients@5.1.1", + "dependsOn": [ + "pkg:npm/colord@2.9.3", + "pkg:npm/cssnano-utils@3.1.0", + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-minify-params@5.1.3", + "dependsOn": [ + "pkg:npm/browserslist@4.20.4", + "pkg:npm/cssnano-utils@3.1.0", + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-minify-selectors@5.2.1", + "dependsOn": ["pkg:npm/postcss-selector-parser@6.0.13"] + }, + { + "ref": "pkg:npm/postcss-modules-extract-imports@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/postcss-modules-local-by-default@4.0.0", + "dependsOn": [ + "pkg:npm/icss-utils@5.1.0", + "pkg:npm/postcss-selector-parser@6.0.13", + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-modules-scope@3.0.0", + "dependsOn": ["pkg:npm/postcss-selector-parser@6.0.13"] + }, + { + "ref": "pkg:npm/postcss-modules-values@4.0.0", + "dependsOn": ["pkg:npm/icss-utils@5.1.0"] + }, + { + "ref": "pkg:npm/postcss-normalize-charset@5.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/postcss-normalize-display-values@5.1.0", + "dependsOn": ["pkg:npm/postcss-value-parser@4.2.0"] + }, + { + "ref": "pkg:npm/postcss-normalize-positions@5.1.0", + "dependsOn": ["pkg:npm/postcss-value-parser@4.2.0"] + }, + { + "ref": "pkg:npm/postcss-normalize-repeat-style@5.1.0", + "dependsOn": ["pkg:npm/postcss-value-parser@4.2.0"] + }, + { + "ref": "pkg:npm/postcss-normalize-string@5.1.0", + "dependsOn": ["pkg:npm/postcss-value-parser@4.2.0"] + }, + { + "ref": "pkg:npm/postcss-normalize-timing-functions@5.1.0", + "dependsOn": ["pkg:npm/postcss-value-parser@4.2.0"] + }, + { + "ref": "pkg:npm/postcss-normalize-unicode@5.1.0", + "dependsOn": [ + "pkg:npm/browserslist@4.20.4", + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-normalize-url@5.1.0", + "dependsOn": [ + "pkg:npm/normalize-url@6.1.0", + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-normalize-whitespace@5.1.1", + "dependsOn": ["pkg:npm/postcss-value-parser@4.2.0"] + }, + { + "ref": "pkg:npm/postcss-ordered-values@5.1.2", + "dependsOn": [ + "pkg:npm/cssnano-utils@3.1.0", + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-reduce-initial@5.1.0", + "dependsOn": ["pkg:npm/browserslist@4.20.4", "pkg:npm/caniuse-api@3.0.0"] + }, + { + "ref": "pkg:npm/postcss-reduce-transforms@5.1.0", + "dependsOn": ["pkg:npm/postcss-value-parser@4.2.0"] + }, + { + "ref": "pkg:npm/postcss-resolve-nested-selector@0.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/postcss-safe-parser@6.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/postcss-selector-parser@6.0.13", + "dependsOn": ["pkg:npm/cssesc@3.0.0", "pkg:npm/util-deprecate@1.0.2"] + }, + { + "ref": "pkg:npm/postcss-svgo@5.1.0", + "dependsOn": ["pkg:npm/postcss-value-parser@4.2.0", "pkg:npm/svgo@2.8.0"] + }, + { + "ref": "pkg:npm/postcss-unique-selectors@5.1.1", + "dependsOn": ["pkg:npm/postcss-selector-parser@6.0.13"] + }, + { + "ref": "pkg:npm/postcss-value-parser@4.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/postcss@8.4.31", + "dependsOn": [ + "pkg:npm/nanoid@3.3.6", + "pkg:npm/picocolors@1.0.0", + "pkg:npm/source-map-js@1.0.2" + ] + }, + { + "ref": "pkg:npm/prelude-ls@1.2.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/prelude-ls@1.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/prettier@2.7.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/prettier@2.8.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/pretty-format@27.3.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.2.5", + "pkg:npm/ansi-regex@5.0.1", + "pkg:npm/ansi-styles@5.2.0", + "pkg:npm/react-is@17.0.2" + ] + }, + { + "ref": "pkg:npm/pretty-format@27.5.1", + "dependsOn": [ + "pkg:npm/ansi-regex@5.0.1", + "pkg:npm/ansi-styles@5.2.0", + "pkg:npm/react-is@17.0.2" + ] + }, + { + "ref": "pkg:npm/prismjs@1.28.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/prismjs@1.27.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/promise-inflight@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/promise@7.3.1", + "dependsOn": ["pkg:npm/asap@2.0.6"] + }, + { + "ref": "pkg:npm/prompts@2.4.2", + "dependsOn": ["pkg:npm/kleur@3.0.3", "pkg:npm/sisteransi@1.0.5"] + }, + { + "ref": "pkg:npm/prop-types@15.8.1", + "dependsOn": [ + "pkg:npm/loose-envify@1.4.0", + "pkg:npm/object-assign@4.1.1", + "pkg:npm/react-is@16.13.1" + ] + }, + { + "ref": "pkg:npm/prop-types@15.7.2", + "dependsOn": [ + "pkg:npm/loose-envify@1.4.0", + "pkg:npm/object-assign@4.1.1", + "pkg:npm/react-is@16.13.1" + ] + }, + { + "ref": "pkg:npm/propagate@2.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/property-information@5.6.0", + "dependsOn": ["pkg:npm/xtend@4.0.2"] + }, + { + "ref": "pkg:npm/property-information@6.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/proxy-from-env@1.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/psl@1.8.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/punycode@2.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/pure-color@1.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/querystringify@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/queue-microtask@1.2.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/quick-lru@5.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/randombytes@2.1.0", + "dependsOn": ["pkg:npm/safe-buffer@5.2.1"] + }, + { + "ref": "pkg:npm/react-base16-styling@0.6.0", + "dependsOn": [ + "pkg:npm/base16@1.0.0", + "pkg:npm/lodash.curry@4.1.1", + "pkg:npm/lodash.flow@3.5.0", + "pkg:npm/pure-color@1.3.0" + ] + }, + { + "ref": "pkg:npm/react-clientside-effect@1.2.6", + "dependsOn": ["pkg:npm/@babel/runtime@7.17.2"] + }, + { + "ref": "pkg:npm/react-dom@18.1.0", + "dependsOn": ["pkg:npm/loose-envify@1.4.0", "pkg:npm/scheduler@0.22.0"] + }, + { + "ref": "pkg:npm/react-fast-compare@3.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/react-focus-lock@2.9.4", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.17.2", + "pkg:npm/focus-lock@0.11.6", + "pkg:npm/prop-types@15.8.1", + "pkg:npm/react-clientside-effect@1.2.6", + "pkg:npm/use-callback-ref@1.3.0", + "pkg:npm/use-sidecar@1.1.2" + ] + }, + { + "ref": "pkg:npm/react-icons@4.9.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/react-is@16.13.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/react-is@17.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/react-is@18.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/react-json-view@1.21.3", + "dependsOn": [ + "pkg:npm/flux@4.0.3", + "pkg:npm/react-base16-styling@0.6.0", + "pkg:npm/react-lifecycles-compat@3.0.4", + "pkg:npm/react-textarea-autosize@8.3.4" + ] + }, + { + "ref": "pkg:npm/react-lifecycles-compat@3.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/react-markdown@8.0.4", + "dependsOn": [ + "pkg:npm/@types/hast@2.3.4", + "pkg:npm/@types/prop-types@15.7.5", + "pkg:npm/@types/unist@2.0.6", + "pkg:npm/comma-separated-tokens@2.0.3", + "pkg:npm/hast-util-whitespace@2.0.0", + "pkg:npm/prop-types@15.8.1", + "pkg:npm/property-information@6.2.0", + "pkg:npm/react-is@18.2.0", + "pkg:npm/remark-parse@10.0.1", + "pkg:npm/remark-rehype@10.1.0", + "pkg:npm/space-separated-tokens@2.0.2", + "pkg:npm/style-to-object@0.3.0", + "pkg:npm/unified@10.1.2", + "pkg:npm/unist-util-visit@4.1.1", + "pkg:npm/vfile@5.3.6" + ] + }, + { + "ref": "pkg:npm/react-query@3.39.1", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.17.2", + "pkg:npm/broadcast-channel@3.7.0", + "pkg:npm/match-sorter@6.3.1" + ] + }, + { + "ref": "pkg:npm/react-remove-scroll-bar@2.3.3", + "dependsOn": [ + "pkg:npm/react-style-singleton@2.2.1", + "pkg:npm/tslib@2.4.0" + ] + }, + { + "ref": "pkg:npm/react-remove-scroll@2.5.5", + "dependsOn": [ + "pkg:npm/react-remove-scroll-bar@2.3.3", + "pkg:npm/react-style-singleton@2.2.1", + "pkg:npm/tslib@2.3.1", + "pkg:npm/use-callback-ref@1.3.0", + "pkg:npm/use-sidecar@1.1.2" + ] + }, + { + "ref": "pkg:npm/react-router-dom@6.3.0", + "dependsOn": ["pkg:npm/history@5.3.0", "pkg:npm/react-router@6.3.0"] + }, + { + "ref": "pkg:npm/react-router@6.3.0", + "dependsOn": ["pkg:npm/history@5.3.0"] + }, + { + "ref": "pkg:npm/react-select@5.3.2", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.18.3", + "pkg:npm/@emotion/cache@11.9.3", + "pkg:npm/@emotion/react@11.9.3", + "pkg:npm/@types/react-transition-group@4.4.5", + "pkg:npm/memoize-one@5.2.1", + "pkg:npm/prop-types@15.8.1", + "pkg:npm/react-transition-group@4.4.2" + ] + }, + { + "ref": "pkg:npm/react-style-singleton@2.2.1", + "dependsOn": [ + "pkg:npm/get-nonce@1.0.1", + "pkg:npm/invariant@2.2.4", + "pkg:npm/tslib@2.4.0" + ] + }, + { + "ref": "pkg:npm/react-syntax-highlighter@15.5.0", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.21.5", + "pkg:npm/highlight.js@10.7.3", + "pkg:npm/lowlight@1.20.0", + "pkg:npm/prismjs@1.28.0", + "pkg:npm/refractor@3.6.0" + ] + }, + { + "ref": "pkg:npm/react-table@7.8.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/react-tabs@3.2.2", + "dependsOn": ["pkg:npm/clsx@1.1.1", "pkg:npm/prop-types@15.7.2"] + }, + { + "ref": "pkg:npm/react-textarea-autosize@8.3.4", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.15.4", + "pkg:npm/use-composed-ref@1.3.0", + "pkg:npm/use-latest@1.2.1" + ] + }, + { + "ref": "pkg:npm/react-transition-group@4.4.2", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.17.2", + "pkg:npm/dom-helpers@5.2.1", + "pkg:npm/loose-envify@1.4.0", + "pkg:npm/prop-types@15.8.1" + ] + }, + { + "ref": "pkg:npm/react@18.1.0", + "dependsOn": ["pkg:npm/loose-envify@1.4.0"] + }, + { + "ref": "pkg:npm/reactflow@11.7.4", + "dependsOn": [ + "pkg:npm/@reactflow/background@11.2.4", + "pkg:npm/@reactflow/controls@11.1.15", + "pkg:npm/@reactflow/core@11.7.4", + "pkg:npm/@reactflow/minimap@11.5.4", + "pkg:npm/@reactflow/node-resizer@2.1.1", + "pkg:npm/@reactflow/node-toolbar@1.2.3" + ] + }, + { + "ref": "pkg:npm/read-pkg-up@8.0.0", + "dependsOn": [ + "pkg:npm/find-up@5.0.0", + "pkg:npm/read-pkg@6.0.0", + "pkg:npm/type-fest@1.4.0" + ] + }, + { + "ref": "pkg:npm/read-pkg@6.0.0", + "dependsOn": [ + "pkg:npm/@types/normalize-package-data@2.4.0", + "pkg:npm/normalize-package-data@3.0.3", + "pkg:npm/parse-json@5.2.0", + "pkg:npm/type-fest@1.4.0" + ] + }, + { + "ref": "pkg:npm/readable-stream@1.1.13", + "dependsOn": [ + "pkg:npm/core-util-is@1.0.2", + "pkg:npm/inherits@2.0.4", + "pkg:npm/isarray@0.0.1", + "pkg:npm/string_decoder@0.10.31" + ] + }, + { + "ref": "pkg:npm/rechoir@0.7.1", + "dependsOn": ["pkg:npm/resolve@1.22.0"] + }, + { + "ref": "pkg:npm/redent@3.0.0", + "dependsOn": ["pkg:npm/indent-string@4.0.0", "pkg:npm/strip-indent@3.0.0"] + }, + { + "ref": "pkg:npm/redent@4.0.0", + "dependsOn": ["pkg:npm/indent-string@5.0.0", "pkg:npm/strip-indent@4.0.0"] + }, + { + "ref": "pkg:npm/redoc@2.0.0-rc.72", + "dependsOn": [ + "pkg:npm/@redocly/openapi-core@1.0.0-beta.102", + "pkg:npm/classnames@2.3.1", + "pkg:npm/decko@1.2.0", + "pkg:npm/dompurify@2.2.9", + "pkg:npm/eventemitter3@4.0.7", + "pkg:npm/json-pointer@0.6.2", + "pkg:npm/lunr@2.3.9", + "pkg:npm/mark.js@8.11.1", + "pkg:npm/marked@4.0.17", + "pkg:npm/mobx-react@7.2.0", + "pkg:npm/openapi-sampler@1.3.0", + "pkg:npm/path-browserify@1.0.1", + "pkg:npm/perfect-scrollbar@1.5.1", + "pkg:npm/polished@4.1.3", + "pkg:npm/prismjs@1.28.0", + "pkg:npm/prop-types@15.8.1", + "pkg:npm/react-tabs@3.2.2", + "pkg:npm/slugify@1.4.7", + "pkg:npm/stickyfill@1.1.1", + "pkg:npm/style-loader@3.3.1", + "pkg:npm/swagger2openapi@7.0.6", + "pkg:npm/url-template@2.0.8" + ] + }, + { + "ref": "pkg:npm/refractor@3.6.0", + "dependsOn": [ + "pkg:npm/hastscript@6.0.0", + "pkg:npm/parse-entities@2.0.0", + "pkg:npm/prismjs@1.27.0" + ] + }, + { + "ref": "pkg:npm/reftools@1.1.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/regenerate-unicode-properties@9.0.0", + "dependsOn": ["pkg:npm/regenerate@1.4.2"] + }, + { + "ref": "pkg:npm/regenerate@1.4.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/regenerator-runtime@0.13.11", + "dependsOn": [] + }, + { + "ref": "pkg:npm/regenerator-runtime@0.13.9", + "dependsOn": [] + }, + { + "ref": "pkg:npm/regenerator-transform@0.14.5", + "dependsOn": ["pkg:npm/@babel/runtime@7.16.0"] + }, + { + "ref": "pkg:npm/regexp.prototype.flags@1.4.3", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/functions-have-names@1.2.3" + ] + }, + { + "ref": "pkg:npm/regexpp@3.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/regexpu-core@4.8.0", + "dependsOn": [ + "pkg:npm/regenerate-unicode-properties@9.0.0", + "pkg:npm/regenerate@1.4.2", + "pkg:npm/regjsgen@0.5.2", + "pkg:npm/regjsparser@0.7.0", + "pkg:npm/unicode-match-property-ecmascript@2.0.0", + "pkg:npm/unicode-match-property-value-ecmascript@2.0.0" + ] + }, + { + "ref": "pkg:npm/regjsgen@0.5.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/regjsparser@0.7.0", + "dependsOn": ["pkg:npm/jsesc@0.5.0"] + }, + { + "ref": "pkg:npm/remark-gfm@3.0.1", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/mdast-util-gfm@2.0.1", + "pkg:npm/micromark-extension-gfm@2.0.1", + "pkg:npm/unified@10.1.2" + ] + }, + { + "ref": "pkg:npm/remark-parse@10.0.1", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/mdast-util-from-markdown@1.2.0", + "pkg:npm/unified@10.1.2" + ] + }, + { + "ref": "pkg:npm/remark-rehype@10.1.0", + "dependsOn": [ + "pkg:npm/@types/hast@2.3.4", + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/mdast-util-to-hast@12.2.4", + "pkg:npm/unified@10.1.2" + ] + }, + { + "ref": "pkg:npm/remove-accents@0.4.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/require-directory@2.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/require-from-string@2.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/requires-port@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/resolve-cwd@3.0.0", + "dependsOn": ["pkg:npm/resolve-from@5.0.0"] + }, + { + "ref": "pkg:npm/resolve-from@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/resolve-from@5.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/resolve.exports@1.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/resolve@1.20.0", + "dependsOn": ["pkg:npm/is-core-module@2.4.0", "pkg:npm/path-parse@1.0.7"] + }, + { + "ref": "pkg:npm/resolve@1.22.2", + "dependsOn": [ + "pkg:npm/is-core-module@2.11.0", + "pkg:npm/path-parse@1.0.7", + "pkg:npm/supports-preserve-symlinks-flag@1.0.0" + ] + }, + { + "ref": "pkg:npm/resolve@1.22.0", + "dependsOn": [ + "pkg:npm/is-core-module@2.9.0", + "pkg:npm/path-parse@1.0.7", + "pkg:npm/supports-preserve-symlinks-flag@1.0.0" + ] + }, + { + "ref": "pkg:npm/resolve@2.0.0-next.3", + "dependsOn": ["pkg:npm/is-core-module@2.4.0", "pkg:npm/path-parse@1.0.7"] + }, + { + "ref": "pkg:npm/reusify@1.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/rimraf@3.0.2", + "dependsOn": ["pkg:npm/glob@7.1.7"] + }, + { + "ref": "pkg:npm/rimraf@2.7.1", + "dependsOn": ["pkg:npm/glob@7.1.7"] + }, + { + "ref": "pkg:npm/run-parallel@1.2.0", + "dependsOn": ["pkg:npm/queue-microtask@1.2.3"] + }, + { + "ref": "pkg:npm/rw@1.3.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/sade@1.8.1", + "dependsOn": ["pkg:npm/mri@1.2.0"] + }, + { + "ref": "pkg:npm/safe-buffer@5.2.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/safe-buffer@5.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/safe-regex-test@1.0.0", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/get-intrinsic@1.2.0", + "pkg:npm/is-regex@1.1.4" + ] + }, + { + "ref": "pkg:npm/safer-buffer@2.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/sax@1.2.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/saxes@5.0.1", + "dependsOn": ["pkg:npm/xmlchars@2.2.0"] + }, + { + "ref": "pkg:npm/scheduler@0.22.0", + "dependsOn": ["pkg:npm/loose-envify@1.4.0"] + }, + { + "ref": "pkg:npm/schema-utils@2.7.1", + "dependsOn": [ + "pkg:npm/@types/json-schema@7.0.7", + "pkg:npm/ajv-keywords@3.5.2", + "pkg:npm/ajv@6.12.6" + ] + }, + { + "ref": "pkg:npm/schema-utils@3.1.1", + "dependsOn": [ + "pkg:npm/@types/json-schema@7.0.11", + "pkg:npm/ajv-keywords@3.5.2", + "pkg:npm/ajv@6.12.6" + ] + }, + { + "ref": "pkg:npm/schema-utils@4.0.0", + "dependsOn": [ + "pkg:npm/@types/json-schema@7.0.11", + "pkg:npm/ajv-formats@2.1.1", + "pkg:npm/ajv-keywords@5.1.0", + "pkg:npm/ajv@8.11.0" + ] + }, + { + "ref": "pkg:npm/semver@7.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/semver@6.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/semver@7.5.4", + "dependsOn": ["pkg:npm/lru-cache@6.0.0"] + }, + { + "ref": "pkg:npm/serialize-javascript@5.0.1", + "dependsOn": ["pkg:npm/randombytes@2.1.0"] + }, + { + "ref": "pkg:npm/serialize-javascript@6.0.0", + "dependsOn": ["pkg:npm/randombytes@2.1.0"] + }, + { + "ref": "pkg:npm/setimmediate@1.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/shallow-clone@3.0.1", + "dependsOn": ["pkg:npm/kind-of@6.0.3"] + }, + { + "ref": "pkg:npm/shebang-command@2.0.0", + "dependsOn": ["pkg:npm/shebang-regex@3.0.0"] + }, + { + "ref": "pkg:npm/shebang-regex@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/should-equal@2.0.0", + "dependsOn": ["pkg:npm/should-type@1.4.0"] + }, + { + "ref": "pkg:npm/should-format@3.0.3", + "dependsOn": [ + "pkg:npm/should-type-adaptors@1.1.0", + "pkg:npm/should-type@1.4.0" + ] + }, + { + "ref": "pkg:npm/should-type-adaptors@1.1.0", + "dependsOn": ["pkg:npm/should-type@1.4.0", "pkg:npm/should-util@1.0.1"] + }, + { + "ref": "pkg:npm/should-type@1.4.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/should-util@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/should@13.2.3", + "dependsOn": [ + "pkg:npm/should-equal@2.0.0", + "pkg:npm/should-format@3.0.3", + "pkg:npm/should-type-adaptors@1.1.0", + "pkg:npm/should-type@1.4.0", + "pkg:npm/should-util@1.0.1" + ] + }, + { + "ref": "pkg:npm/side-channel@1.0.4", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/get-intrinsic@1.1.1", + "pkg:npm/object-inspect@1.11.0" + ] + }, + { + "ref": "pkg:npm/signal-exit@3.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/signal-exit@3.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/signal-exit@4.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/simple-swizzle@0.2.2", + "dependsOn": ["pkg:npm/is-arrayish@0.3.2"] + }, + { + "ref": "pkg:npm/sisteransi@1.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/slash@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/slice-ansi@4.0.0", + "dependsOn": [ + "pkg:npm/ansi-styles@4.3.0", + "pkg:npm/astral-regex@2.0.0", + "pkg:npm/is-fullwidth-code-point@3.0.0" + ] + }, + { + "ref": "pkg:npm/slugify@1.4.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/source-list-map@2.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/source-map-js@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/source-map-resolve@0.6.0", + "dependsOn": ["pkg:npm/atob@2.1.2", "pkg:npm/decode-uri-component@0.2.2"] + }, + { + "ref": "pkg:npm/source-map-support@0.5.21", + "dependsOn": ["pkg:npm/buffer-from@1.1.2", "pkg:npm/source-map@0.6.1"] + }, + { + "ref": "pkg:npm/source-map@0.5.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/source-map@0.6.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/source-map@0.7.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/space-separated-tokens@1.1.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/space-separated-tokens@2.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/spdx-correct@3.1.1", + "dependsOn": [ + "pkg:npm/spdx-expression-parse@3.0.1", + "pkg:npm/spdx-license-ids@3.0.9" + ] + }, + { + "ref": "pkg:npm/spdx-exceptions@2.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/spdx-expression-parse@3.0.1", + "dependsOn": [ + "pkg:npm/spdx-exceptions@2.3.0", + "pkg:npm/spdx-license-ids@3.0.9" + ] + }, + { + "ref": "pkg:npm/spdx-expression-validate@2.0.0", + "dependsOn": ["pkg:npm/spdx-expression-parse@3.0.1"] + }, + { + "ref": "pkg:npm/spdx-license-ids@3.0.9", + "dependsOn": [] + }, + { + "ref": "pkg:npm/sprintf-js@1.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ssri@8.0.1", + "dependsOn": ["pkg:npm/minipass@3.1.3"] + }, + { + "ref": "pkg:npm/stable@0.1.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/stack-utils@2.0.5", + "dependsOn": ["pkg:npm/escape-string-regexp@2.0.0"] + }, + { + "ref": "pkg:npm/stickyfill@1.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/string-length@4.0.2", + "dependsOn": ["pkg:npm/char-regex@1.0.2", "pkg:npm/strip-ansi@6.0.1"] + }, + { + "ref": "pkg:npm/string-width@4.2.3", + "dependsOn": [ + "pkg:npm/emoji-regex@8.0.0", + "pkg:npm/is-fullwidth-code-point@3.0.0", + "pkg:npm/strip-ansi@6.0.1" + ] + }, + { + "ref": "pkg:npm/string.prototype.matchall@4.0.7", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/es-abstract@1.20.1", + "pkg:npm/get-intrinsic@1.1.1", + "pkg:npm/has-symbols@1.0.3", + "pkg:npm/internal-slot@1.0.3", + "pkg:npm/regexp.prototype.flags@1.4.3", + "pkg:npm/side-channel@1.0.4" + ] + }, + { + "ref": "pkg:npm/string.prototype.trim@1.2.7", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.21.2" + ] + }, + { + "ref": "pkg:npm/string.prototype.trimend@1.0.4", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3" + ] + }, + { + "ref": "pkg:npm/string.prototype.trimend@1.0.5", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.20.1" + ] + }, + { + "ref": "pkg:npm/string.prototype.trimend@1.0.6", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.21.2" + ] + }, + { + "ref": "pkg:npm/string.prototype.trimstart@1.0.4", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3" + ] + }, + { + "ref": "pkg:npm/string.prototype.trimstart@1.0.5", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.20.1" + ] + }, + { + "ref": "pkg:npm/string.prototype.trimstart@1.0.6", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.21.2" + ] + }, + { + "ref": "pkg:npm/string_decoder@0.10.31", + "dependsOn": [] + }, + { + "ref": "pkg:npm/strip-ansi@6.0.1", + "dependsOn": ["pkg:npm/ansi-regex@5.0.1"] + }, + { + "ref": "pkg:npm/strip-bom@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/strip-bom@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/strip-comments@2.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/strip-final-newline@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/strip-indent@3.0.0", + "dependsOn": ["pkg:npm/min-indent@1.0.1"] + }, + { + "ref": "pkg:npm/strip-indent@4.0.0", + "dependsOn": ["pkg:npm/min-indent@1.0.1"] + }, + { + "ref": "pkg:npm/strip-json-comments@1.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/strip-json-comments@3.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/style-loader@1.3.0", + "dependsOn": ["pkg:npm/loader-utils@2.0.4", "pkg:npm/schema-utils@2.7.1"] + }, + { + "ref": "pkg:npm/style-loader@3.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/style-search@0.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/style-to-object@0.3.0", + "dependsOn": ["pkg:npm/inline-style-parser@0.1.1"] + }, + { + "ref": "pkg:npm/style-value-types@5.0.0", + "dependsOn": ["pkg:npm/hey-listen@1.0.8", "pkg:npm/tslib@2.3.1"] + }, + { + "ref": "pkg:npm/stylehacks@5.1.0", + "dependsOn": [ + "pkg:npm/browserslist@4.20.4", + "pkg:npm/postcss-selector-parser@6.0.13" + ] + }, + { + "ref": "pkg:npm/stylelint-config-prettier@9.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/stylelint-config-recommended@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/stylelint-config-standard@20.0.0", + "dependsOn": ["pkg:npm/stylelint-config-recommended@3.0.0"] + }, + { + "ref": "pkg:npm/stylelint@15.10.1", + "dependsOn": [ + "pkg:npm/@csstools/css-parser-algorithms@2.3.0", + "pkg:npm/@csstools/css-tokenizer@2.1.1", + "pkg:npm/@csstools/media-query-list-parser@2.1.2", + "pkg:npm/@csstools/selector-specificity@3.0.0", + "pkg:npm/balanced-match@2.0.0", + "pkg:npm/colord@2.9.3", + "pkg:npm/cosmiconfig@8.2.0", + "pkg:npm/css-functions-list@3.1.0", + "pkg:npm/css-tree@2.3.1", + "pkg:npm/debug@4.3.4", + "pkg:npm/fast-glob@3.3.0", + "pkg:npm/fastest-levenshtein@1.0.16", + "pkg:npm/file-entry-cache@6.0.1", + "pkg:npm/global-modules@2.0.0", + "pkg:npm/globby@11.1.0", + "pkg:npm/globjoin@0.1.4", + "pkg:npm/html-tags@3.3.1", + "pkg:npm/ignore@5.2.4", + "pkg:npm/import-lazy@4.0.0", + "pkg:npm/imurmurhash@0.1.4", + "pkg:npm/is-plain-object@5.0.0", + "pkg:npm/known-css-properties@0.27.0", + "pkg:npm/mathml-tag-names@2.1.3", + "pkg:npm/meow@10.1.5", + "pkg:npm/micromatch@4.0.5", + "pkg:npm/normalize-path@3.0.0", + "pkg:npm/picocolors@1.0.0", + "pkg:npm/postcss-resolve-nested-selector@0.1.1", + "pkg:npm/postcss-safe-parser@6.0.0", + "pkg:npm/postcss-selector-parser@6.0.13", + "pkg:npm/postcss-value-parser@4.2.0", + "pkg:npm/postcss@8.4.31", + "pkg:npm/resolve-from@5.0.0", + "pkg:npm/string-width@4.2.3", + "pkg:npm/strip-ansi@6.0.1", + "pkg:npm/style-search@0.1.0", + "pkg:npm/supports-hyperlinks@3.0.0", + "pkg:npm/svg-tags@1.0.0", + "pkg:npm/table@6.8.1", + "pkg:npm/write-file-atomic@5.0.1" + ] + }, + { + "ref": "pkg:npm/stylis@4.0.13", + "dependsOn": [] + }, + { + "ref": "pkg:npm/stylis@4.0.10", + "dependsOn": [] + }, + { + "ref": "pkg:npm/supports-color@5.5.0", + "dependsOn": ["pkg:npm/has-flag@3.0.0"] + }, + { + "ref": "pkg:npm/supports-color@7.2.0", + "dependsOn": ["pkg:npm/has-flag@4.0.0"] + }, + { + "ref": "pkg:npm/supports-color@8.1.1", + "dependsOn": ["pkg:npm/has-flag@4.0.0"] + }, + { + "ref": "pkg:npm/supports-hyperlinks@2.2.0", + "dependsOn": ["pkg:npm/has-flag@4.0.0", "pkg:npm/supports-color@7.2.0"] + }, + { + "ref": "pkg:npm/supports-hyperlinks@3.0.0", + "dependsOn": ["pkg:npm/has-flag@4.0.0", "pkg:npm/supports-color@7.2.0"] + }, + { + "ref": "pkg:npm/supports-preserve-symlinks-flag@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/svg-tags@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/svgo@2.8.0", + "dependsOn": [ + "pkg:npm/@trysound/sax@0.2.0", + "pkg:npm/commander@7.2.0", + "pkg:npm/css-select@4.3.0", + "pkg:npm/css-tree@1.1.3", + "pkg:npm/csso@4.2.0", + "pkg:npm/picocolors@1.0.0", + "pkg:npm/stable@0.1.8" + ] + }, + { + "ref": "pkg:npm/swagger-ui-dist@4.1.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/swagger2openapi@7.0.6", + "dependsOn": [ + "pkg:npm/call-me-maybe@1.0.1", + "pkg:npm/node-fetch-h2@2.3.0", + "pkg:npm/node-fetch@2.6.7", + "pkg:npm/node-readfiles@0.2.0", + "pkg:npm/oas-kit-common@1.0.8", + "pkg:npm/oas-resolver@2.5.5", + "pkg:npm/oas-schema-walker@1.1.5", + "pkg:npm/oas-validator@5.0.6", + "pkg:npm/reftools@1.1.8", + "pkg:npm/yaml@1.10.2", + "pkg:npm/yargs@17.0.1" + ] + }, + { + "ref": "pkg:npm/symbol-tree@3.2.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/table@6.8.1", + "dependsOn": [ + "pkg:npm/ajv@8.6.0", + "pkg:npm/lodash.truncate@4.4.2", + "pkg:npm/slice-ansi@4.0.0", + "pkg:npm/string-width@4.2.3", + "pkg:npm/strip-ansi@6.0.1" + ] + }, + { + "ref": "pkg:npm/tapable@2.2.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/tar@6.1.11", + "dependsOn": [ + "pkg:npm/chownr@2.0.0", + "pkg:npm/fs-minipass@2.1.0", + "pkg:npm/minipass@3.1.3", + "pkg:npm/minizlib@2.1.2", + "pkg:npm/mkdirp@1.0.4", + "pkg:npm/yallist@4.0.0" + ] + }, + { + "ref": "pkg:npm/terminal-link@2.1.1", + "dependsOn": [ + "pkg:npm/ansi-escapes@4.3.2", + "pkg:npm/supports-hyperlinks@2.2.0" + ] + }, + { + "ref": "pkg:npm/terser-webpack-plugin@4.2.3", + "dependsOn": [ + "pkg:npm/cacache@15.2.0", + "pkg:npm/find-cache-dir@3.3.1", + "pkg:npm/jest-worker@26.6.2", + "pkg:npm/p-limit@3.1.0", + "pkg:npm/schema-utils@3.1.1", + "pkg:npm/serialize-javascript@5.0.1", + "pkg:npm/source-map@0.6.1", + "pkg:npm/terser@5.14.2", + "pkg:npm/webpack-sources@1.4.3" + ] + }, + { + "ref": "pkg:npm/terser-webpack-plugin@5.3.3", + "dependsOn": [ + "pkg:npm/@jridgewell/trace-mapping@0.3.13", + "pkg:npm/jest-worker@27.5.1", + "pkg:npm/schema-utils@3.1.1", + "pkg:npm/serialize-javascript@6.0.0", + "pkg:npm/terser@5.14.2" + ] + }, + { + "ref": "pkg:npm/terser@5.14.2", + "dependsOn": [ + "pkg:npm/@jridgewell/source-map@0.3.2", + "pkg:npm/acorn@8.7.1", + "pkg:npm/commander@2.20.3", + "pkg:npm/source-map-support@0.5.21" + ] + }, + { + "ref": "pkg:npm/test-exclude@6.0.0", + "dependsOn": [ + "pkg:npm/@istanbuljs/schema@0.1.3", + "pkg:npm/glob@7.1.7", + "pkg:npm/minimatch@3.1.2" + ] + }, + { + "ref": "pkg:npm/text-table@0.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/throat@6.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/tiny-glob@0.2.9", + "dependsOn": ["pkg:npm/globalyzer@0.1.0", "pkg:npm/globrex@0.1.2"] + }, + { + "ref": "pkg:npm/tiny-invariant@1.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/tmpl@1.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/to-fast-properties@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/to-regex-range@5.0.1", + "dependsOn": ["pkg:npm/is-number@7.0.0"] + }, + { + "ref": "pkg:npm/toggle-selection@1.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/tough-cookie@4.1.3", + "dependsOn": [ + "pkg:npm/psl@1.8.0", + "pkg:npm/punycode@2.1.1", + "pkg:npm/universalify@0.2.0", + "pkg:npm/url-parse@1.5.10" + ] + }, + { + "ref": "pkg:npm/tr46@2.1.0", + "dependsOn": ["pkg:npm/punycode@2.1.1"] + }, + { + "ref": "pkg:npm/tr46@0.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/trim-lines@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/trim-newlines@4.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/trough@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/tsconfig-paths@3.14.2", + "dependsOn": [ + "pkg:npm/@types/json5@0.0.29", + "pkg:npm/json5@1.0.2", + "pkg:npm/minimist@1.2.7", + "pkg:npm/strip-bom@3.0.0" + ] + }, + { + "ref": "pkg:npm/tslib@2.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/tslib@1.14.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/tslib@2.4.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/tslib@2.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/tsutils@3.21.0", + "dependsOn": ["pkg:npm/tslib@1.14.1"] + }, + { + "ref": "pkg:npm/type-check@0.4.0", + "dependsOn": ["pkg:npm/prelude-ls@1.2.1"] + }, + { + "ref": "pkg:npm/type-check@0.3.2", + "dependsOn": ["pkg:npm/prelude-ls@1.1.2"] + }, + { + "ref": "pkg:npm/type-detect@4.0.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/type-fest@0.20.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/type-fest@0.21.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/type-fest@1.4.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/type-fest@2.17.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/typed-array-length@1.0.4", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/for-each@0.3.3", + "pkg:npm/is-typed-array@1.1.10" + ] + }, + { + "ref": "pkg:npm/typedarray-to-buffer@3.1.5", + "dependsOn": ["pkg:npm/is-typedarray@1.0.0"] + }, + { + "ref": "pkg:npm/typescript@4.7.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ua-parser-js@0.7.33", + "dependsOn": [] + }, + { + "ref": "pkg:npm/unbox-primitive@1.0.1", + "dependsOn": [ + "pkg:npm/function-bind@1.1.1", + "pkg:npm/has-bigints@1.0.1", + "pkg:npm/has-symbols@1.0.2", + "pkg:npm/which-boxed-primitive@1.0.2" + ] + }, + { + "ref": "pkg:npm/unbox-primitive@1.0.2", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/has-bigints@1.0.2", + "pkg:npm/has-symbols@1.0.3", + "pkg:npm/which-boxed-primitive@1.0.2" + ] + }, + { + "ref": "pkg:npm/undici@5.26.3", + "dependsOn": ["pkg:npm/@fastify/busboy@2.0.0"] + }, + { + "ref": "pkg:npm/unicode-canonical-property-names-ecmascript@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/unicode-match-property-ecmascript@2.0.0", + "dependsOn": [ + "pkg:npm/unicode-canonical-property-names-ecmascript@2.0.0", + "pkg:npm/unicode-property-aliases-ecmascript@2.0.0" + ] + }, + { + "ref": "pkg:npm/unicode-match-property-value-ecmascript@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/unicode-property-aliases-ecmascript@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/unified@10.1.2", + "dependsOn": [ + "pkg:npm/@types/unist@2.0.6", + "pkg:npm/bail@2.0.2", + "pkg:npm/extend@3.0.2", + "pkg:npm/is-buffer@2.0.5", + "pkg:npm/is-plain-obj@4.1.0", + "pkg:npm/trough@2.1.0", + "pkg:npm/vfile@5.3.6" + ] + }, + { + "ref": "pkg:npm/unique-filename@1.1.1", + "dependsOn": ["pkg:npm/unique-slug@2.0.2"] + }, + { + "ref": "pkg:npm/unique-slug@2.0.2", + "dependsOn": ["pkg:npm/imurmurhash@0.1.4"] + }, + { + "ref": "pkg:npm/unist-builder@3.0.0", + "dependsOn": ["pkg:npm/@types/unist@2.0.6"] + }, + { + "ref": "pkg:npm/unist-util-generated@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/unist-util-is@5.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/unist-util-position@4.0.3", + "dependsOn": ["pkg:npm/@types/unist@2.0.6"] + }, + { + "ref": "pkg:npm/unist-util-stringify-position@3.0.2", + "dependsOn": ["pkg:npm/@types/unist@2.0.6"] + }, + { + "ref": "pkg:npm/unist-util-visit-parents@5.1.1", + "dependsOn": ["pkg:npm/@types/unist@2.0.6", "pkg:npm/unist-util-is@5.1.1"] + }, + { + "ref": "pkg:npm/unist-util-visit@4.1.1", + "dependsOn": [ + "pkg:npm/@types/unist@2.0.6", + "pkg:npm/unist-util-is@5.1.1", + "pkg:npm/unist-util-visit-parents@5.1.1" + ] + }, + { + "ref": "pkg:npm/universalify@0.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/unload@2.2.0", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.17.2", + "pkg:npm/detect-node@2.1.0" + ] + }, + { + "ref": "pkg:npm/uri-js@4.4.1", + "dependsOn": ["pkg:npm/punycode@2.1.1"] + }, + { + "ref": "pkg:npm/url-loader@4.1.0", + "dependsOn": [ + "pkg:npm/loader-utils@2.0.4", + "pkg:npm/mime-types@2.1.35", + "pkg:npm/schema-utils@2.7.1" + ] + }, + { + "ref": "pkg:npm/url-parse@1.5.10", + "dependsOn": [ + "pkg:npm/querystringify@2.2.0", + "pkg:npm/requires-port@1.0.0" + ] + }, + { + "ref": "pkg:npm/url-search-params-polyfill@8.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/url-template@2.0.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/use-callback-ref@1.3.0", + "dependsOn": ["pkg:npm/tslib@2.4.0"] + }, + { + "ref": "pkg:npm/use-composed-ref@1.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/use-isomorphic-layout-effect@1.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/use-latest@1.2.1", + "dependsOn": ["pkg:npm/use-isomorphic-layout-effect@1.1.2"] + }, + { + "ref": "pkg:npm/use-sidecar@1.1.2", + "dependsOn": ["pkg:npm/detect-node-es@1.1.0", "pkg:npm/tslib@2.4.0"] + }, + { + "ref": "pkg:npm/use-sync-external-store@1.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/util-deprecate@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/uvu@0.5.6", + "dependsOn": [ + "pkg:npm/dequal@2.0.3", + "pkg:npm/diff@5.1.0", + "pkg:npm/kleur@4.1.5", + "pkg:npm/sade@1.8.1" + ] + }, + { + "ref": "pkg:npm/v8-compile-cache@2.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/v8-to-istanbul@8.1.0", + "dependsOn": [ + "pkg:npm/@types/istanbul-lib-coverage@2.0.3", + "pkg:npm/convert-source-map@1.8.0", + "pkg:npm/source-map@0.7.3" + ] + }, + { + "ref": "pkg:npm/validate-npm-package-license@3.0.4", + "dependsOn": [ + "pkg:npm/spdx-correct@3.1.1", + "pkg:npm/spdx-expression-parse@3.0.1" + ] + }, + { + "ref": "pkg:npm/validator@13.9.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/vfile-message@3.1.3", + "dependsOn": [ + "pkg:npm/@types/unist@2.0.6", + "pkg:npm/unist-util-stringify-position@3.0.2" + ] + }, + { + "ref": "pkg:npm/vfile@5.3.6", + "dependsOn": [ + "pkg:npm/@types/unist@2.0.6", + "pkg:npm/is-buffer@2.0.5", + "pkg:npm/unist-util-stringify-position@3.0.2", + "pkg:npm/vfile-message@3.1.3" + ] + }, + { + "ref": "pkg:npm/w3c-hr-time@1.0.2", + "dependsOn": ["pkg:npm/browser-process-hrtime@1.0.0"] + }, + { + "ref": "pkg:npm/w3c-xmlserializer@2.0.0", + "dependsOn": ["pkg:npm/xml-name-validator@3.0.0"] + }, + { + "ref": "pkg:npm/walker@1.0.8", + "dependsOn": ["pkg:npm/makeerror@1.0.12"] + }, + { + "ref": "pkg:npm/watchpack@2.4.0", + "dependsOn": ["pkg:npm/glob-to-regexp@0.4.1", "pkg:npm/graceful-fs@4.2.9"] + }, + { + "ref": "pkg:npm/web-worker@1.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/webidl-conversions@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/webidl-conversions@5.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/webidl-conversions@6.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/webpack-cli@4.10.0", + "dependsOn": [ + "pkg:npm/@discoveryjs/json-ext@0.5.7", + "pkg:npm/@webpack-cli/configtest@1.2.0", + "pkg:npm/@webpack-cli/info@1.5.0", + "pkg:npm/@webpack-cli/serve@1.7.0", + "pkg:npm/colorette@2.0.19", + "pkg:npm/commander@7.2.0", + "pkg:npm/cross-spawn@7.0.3", + "pkg:npm/fastest-levenshtein@1.0.16", + "pkg:npm/import-local@3.0.3", + "pkg:npm/interpret@2.2.0", + "pkg:npm/rechoir@0.7.1", + "pkg:npm/webpack-merge@5.8.0" + ] + }, + { + "ref": "pkg:npm/webpack-license-plugin@4.2.2", + "dependsOn": [ + "pkg:npm/chalk@5.0.1", + "pkg:npm/get-npm-tarball-url@2.0.2", + "pkg:npm/lodash@4.17.21", + "pkg:npm/needle@2.9.1", + "pkg:npm/spdx-expression-validate@2.0.0", + "pkg:npm/webpack-sources@3.2.3" + ] + }, + { + "ref": "pkg:npm/webpack-manifest-plugin@4.1.1", + "dependsOn": ["pkg:npm/tapable@2.2.1", "pkg:npm/webpack-sources@2.3.1"] + }, + { + "ref": "pkg:npm/webpack-merge@5.8.0", + "dependsOn": ["pkg:npm/clone-deep@4.0.1", "pkg:npm/wildcard@2.0.0"] + }, + { + "ref": "pkg:npm/webpack-sources@1.4.3", + "dependsOn": ["pkg:npm/source-list-map@2.0.1", "pkg:npm/source-map@0.6.1"] + }, + { + "ref": "pkg:npm/webpack-sources@2.3.1", + "dependsOn": ["pkg:npm/source-list-map@2.0.1", "pkg:npm/source-map@0.6.1"] + }, + { + "ref": "pkg:npm/webpack-sources@3.2.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/webpack@5.76.0", + "dependsOn": [ + "pkg:npm/@types/eslint-scope@3.7.3", + "pkg:npm/@types/estree@0.0.51", + "pkg:npm/@webassemblyjs/ast@1.11.1", + "pkg:npm/@webassemblyjs/wasm-edit@1.11.1", + "pkg:npm/@webassemblyjs/wasm-parser@1.11.1", + "pkg:npm/acorn-import-assertions@1.8.0", + "pkg:npm/acorn@8.7.1", + "pkg:npm/browserslist@4.20.4", + "pkg:npm/chrome-trace-event@1.0.3", + "pkg:npm/enhanced-resolve@5.12.0", + "pkg:npm/es-module-lexer@0.9.3", + "pkg:npm/eslint-scope@5.1.1", + "pkg:npm/events@3.3.0", + "pkg:npm/glob-to-regexp@0.4.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/json-parse-even-better-errors@2.3.1", + "pkg:npm/loader-runner@4.3.0", + "pkg:npm/mime-types@2.1.35", + "pkg:npm/neo-async@2.6.2", + "pkg:npm/schema-utils@3.1.1", + "pkg:npm/tapable@2.2.1", + "pkg:npm/terser-webpack-plugin@5.3.3", + "pkg:npm/watchpack@2.4.0", + "pkg:npm/webpack-sources@3.2.3" + ] + }, + { + "ref": "pkg:npm/whatwg-encoding@1.0.5", + "dependsOn": ["pkg:npm/iconv-lite@0.4.24"] + }, + { + "ref": "pkg:npm/whatwg-mimetype@2.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/whatwg-url@5.0.0", + "dependsOn": ["pkg:npm/tr46@0.0.3", "pkg:npm/webidl-conversions@3.0.1"] + }, + { + "ref": "pkg:npm/whatwg-url@8.7.0", + "dependsOn": [ + "pkg:npm/lodash@4.17.21", + "pkg:npm/tr46@2.1.0", + "pkg:npm/webidl-conversions@6.1.0" + ] + }, + { + "ref": "pkg:npm/which-boxed-primitive@1.0.2", + "dependsOn": [ + "pkg:npm/is-bigint@1.0.2", + "pkg:npm/is-boolean-object@1.1.1", + "pkg:npm/is-number-object@1.0.5", + "pkg:npm/is-string@1.0.6", + "pkg:npm/is-symbol@1.0.4" + ] + }, + { + "ref": "pkg:npm/which-typed-array@1.1.9", + "dependsOn": [ + "pkg:npm/available-typed-arrays@1.0.5", + "pkg:npm/call-bind@1.0.2", + "pkg:npm/for-each@0.3.3", + "pkg:npm/gopd@1.0.1", + "pkg:npm/has-tostringtag@1.0.0", + "pkg:npm/is-typed-array@1.1.10" + ] + }, + { + "ref": "pkg:npm/which@1.3.1", + "dependsOn": ["pkg:npm/isexe@2.0.0"] + }, + { + "ref": "pkg:npm/which@2.0.2", + "dependsOn": ["pkg:npm/isexe@2.0.0"] + }, + { + "ref": "pkg:npm/wildcard@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/word-wrap@1.2.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/wrap-ansi@7.0.0", + "dependsOn": [ + "pkg:npm/ansi-styles@4.3.0", + "pkg:npm/string-width@4.2.3", + "pkg:npm/strip-ansi@6.0.1" + ] + }, + { + "ref": "pkg:npm/wrappy@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/write-file-atomic@3.0.3", + "dependsOn": [ + "pkg:npm/imurmurhash@0.1.4", + "pkg:npm/is-typedarray@1.0.0", + "pkg:npm/signal-exit@3.0.3", + "pkg:npm/typedarray-to-buffer@3.1.5" + ] + }, + { + "ref": "pkg:npm/write-file-atomic@5.0.1", + "dependsOn": ["pkg:npm/imurmurhash@0.1.4", "pkg:npm/signal-exit@4.0.2"] + }, + { + "ref": "pkg:npm/ws@7.5.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/xml-name-validator@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/xmlchars@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/xtend@4.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/y18n@5.0.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/yallist@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/yaml-ast-parser@0.0.43", + "dependsOn": [] + }, + { + "ref": "pkg:npm/yaml@1.10.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/yargs-parser@20.2.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/yargs-parser@20.2.9", + "dependsOn": [] + }, + { + "ref": "pkg:npm/yargs-parser@21.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/yargs@16.2.0", + "dependsOn": [ + "pkg:npm/cliui@7.0.4", + "pkg:npm/escalade@3.1.1", + "pkg:npm/get-caller-file@2.0.5", + "pkg:npm/require-directory@2.1.1", + "pkg:npm/string-width@4.2.3", + "pkg:npm/y18n@5.0.8", + "pkg:npm/yargs-parser@20.2.7" + ] + }, + { + "ref": "pkg:npm/yargs@17.0.1", + "dependsOn": [ + "pkg:npm/cliui@7.0.4", + "pkg:npm/escalade@3.1.1", + "pkg:npm/get-caller-file@2.0.5", + "pkg:npm/require-directory@2.1.1", + "pkg:npm/string-width@4.2.3", + "pkg:npm/y18n@5.0.8", + "pkg:npm/yargs-parser@20.2.7" + ] + }, + { + "ref": "pkg:npm/yocto-queue@0.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/zrender@5.4.3", + "dependsOn": ["pkg:npm/tslib@2.3.0"] + }, + { + "ref": "pkg:npm/zustand@4.3.9", + "dependsOn": ["pkg:npm/use-sync-external-store@1.2.0"] + }, + { + "ref": "pkg:npm/zwitch@2.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/python3.10", + "dependsOn": [ + "pkg:npm/@ampproject/remapping@2.1.1", + "pkg:npm/@ampproject/remapping@2.2.0", + "pkg:npm/@babel/code-frame@7.14.5", + "pkg:npm/@babel/code-frame@7.16.0", + "pkg:npm/@babel/code-frame@7.16.7", + "pkg:npm/@babel/code-frame@7.22.13", + "pkg:npm/@babel/compat-data@7.16.0", + "pkg:npm/@babel/compat-data@7.17.0", + "pkg:npm/@babel/compat-data@7.18.5", + "pkg:npm/@babel/core@7.16.0", + "pkg:npm/@babel/core@7.17.2", + "pkg:npm/@babel/core@7.18.5", + "pkg:npm/@babel/eslint-parser@7.18.2", + "pkg:npm/@babel/generator@7.16.0", + "pkg:npm/@babel/generator@7.17.0", + "pkg:npm/@babel/generator@7.18.2", + "pkg:npm/@babel/generator@7.23.0", + "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "pkg:npm/@babel/helper-annotate-as-pure@7.16.7", + "pkg:npm/@babel/helper-builder-binary-assignment-operator-visitor@7.16.0", + "pkg:npm/@babel/helper-compilation-targets@7.16.0", + "pkg:npm/@babel/helper-compilation-targets@7.16.7", + "pkg:npm/@babel/helper-compilation-targets@7.18.2", + "pkg:npm/@babel/helper-create-class-features-plugin@7.16.0", + "pkg:npm/@babel/helper-create-class-features-plugin@7.18.0", + "pkg:npm/@babel/helper-create-regexp-features-plugin@7.16.0", + "pkg:npm/@babel/helper-define-polyfill-provider@0.2.4", + "pkg:npm/@babel/helper-environment-visitor@7.16.7", + "pkg:npm/@babel/helper-environment-visitor@7.18.2", + "pkg:npm/@babel/helper-environment-visitor@7.22.20", + "pkg:npm/@babel/helper-explode-assignable-expression@7.16.0", + "pkg:npm/@babel/helper-function-name@7.16.0", + "pkg:npm/@babel/helper-function-name@7.17.9", + "pkg:npm/@babel/helper-function-name@7.23.0", + "pkg:npm/@babel/helper-get-function-arity@7.16.0", + "pkg:npm/@babel/helper-hoist-variables@7.16.0", + "pkg:npm/@babel/helper-hoist-variables@7.22.5", + "pkg:npm/@babel/helper-member-expression-to-functions@7.16.0", + "pkg:npm/@babel/helper-member-expression-to-functions@7.17.7", + "pkg:npm/@babel/helper-module-imports@7.14.5", + "pkg:npm/@babel/helper-module-imports@7.16.0", + "pkg:npm/@babel/helper-module-imports@7.16.7", + "pkg:npm/@babel/helper-module-transforms@7.16.0", + "pkg:npm/@babel/helper-module-transforms@7.16.7", + "pkg:npm/@babel/helper-module-transforms@7.18.0", + "pkg:npm/@babel/helper-optimise-call-expression@7.16.0", + "pkg:npm/@babel/helper-optimise-call-expression@7.16.7", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-plugin-utils@7.17.12", + "pkg:npm/@babel/helper-remap-async-to-generator@7.16.0", + "pkg:npm/@babel/helper-replace-supers@7.16.0", + "pkg:npm/@babel/helper-replace-supers@7.18.2", + "pkg:npm/@babel/helper-simple-access@7.16.0", + "pkg:npm/@babel/helper-simple-access@7.16.7", + "pkg:npm/@babel/helper-simple-access@7.18.2", + "pkg:npm/@babel/helper-skip-transparent-expression-wrappers@7.16.0", + "pkg:npm/@babel/helper-split-export-declaration@7.16.0", + "pkg:npm/@babel/helper-split-export-declaration@7.16.7", + "pkg:npm/@babel/helper-split-export-declaration@7.22.6", + "pkg:npm/@babel/helper-string-parser@7.22.5", + "pkg:npm/@babel/helper-validator-identifier@7.14.5", + "pkg:npm/@babel/helper-validator-identifier@7.15.7", + "pkg:npm/@babel/helper-validator-identifier@7.16.7", + "pkg:npm/@babel/helper-validator-identifier@7.22.20", + "pkg:npm/@babel/helper-validator-option@7.14.5", + "pkg:npm/@babel/helper-validator-option@7.16.7", + "pkg:npm/@babel/helper-wrap-function@7.16.0", + "pkg:npm/@babel/helpers@7.16.0", + "pkg:npm/@babel/helpers@7.17.2", + "pkg:npm/@babel/helpers@7.18.2", + "pkg:npm/@babel/highlight@7.14.5", + "pkg:npm/@babel/highlight@7.16.0", + "pkg:npm/@babel/highlight@7.16.10", + "pkg:npm/@babel/highlight@7.22.20", + "pkg:npm/@babel/parser@7.16.2", + "pkg:npm/@babel/parser@7.17.0", + "pkg:npm/@babel/parser@7.18.5", + "pkg:npm/@babel/parser@7.23.0", + "pkg:npm/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.16.2", + "pkg:npm/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.16.0", + "pkg:npm/@babel/plugin-proposal-async-generator-functions@7.16.0", + "pkg:npm/@babel/plugin-proposal-class-properties@7.16.0", + "pkg:npm/@babel/plugin-proposal-class-static-block@7.16.0", + "pkg:npm/@babel/plugin-proposal-dynamic-import@7.16.0", + "pkg:npm/@babel/plugin-proposal-export-namespace-from@7.16.0", + "pkg:npm/@babel/plugin-proposal-json-strings@7.16.0", + "pkg:npm/@babel/plugin-proposal-logical-assignment-operators@7.16.0", + "pkg:npm/@babel/plugin-proposal-nullish-coalescing-operator@7.16.0", + "pkg:npm/@babel/plugin-proposal-numeric-separator@7.16.0", + "pkg:npm/@babel/plugin-proposal-object-rest-spread@7.16.0", + "pkg:npm/@babel/plugin-proposal-optional-catch-binding@7.16.0", + "pkg:npm/@babel/plugin-proposal-optional-chaining@7.16.0", + "pkg:npm/@babel/plugin-proposal-private-methods@7.16.0", + "pkg:npm/@babel/plugin-proposal-private-property-in-object@7.16.0", + "pkg:npm/@babel/plugin-proposal-unicode-property-regex@7.16.0", + "pkg:npm/@babel/plugin-syntax-async-generators@7.8.4", + "pkg:npm/@babel/plugin-syntax-bigint@7.8.3", + "pkg:npm/@babel/plugin-syntax-class-properties@7.12.13", + "pkg:npm/@babel/plugin-syntax-class-static-block@7.14.5", + "pkg:npm/@babel/plugin-syntax-dynamic-import@7.8.3", + "pkg:npm/@babel/plugin-syntax-export-namespace-from@7.8.3", + "pkg:npm/@babel/plugin-syntax-import-meta@7.10.4", + "pkg:npm/@babel/plugin-syntax-json-strings@7.8.3", + "pkg:npm/@babel/plugin-syntax-jsx@7.14.5", + "pkg:npm/@babel/plugin-syntax-jsx@7.16.0", + "pkg:npm/@babel/plugin-syntax-logical-assignment-operators@7.10.4", + "pkg:npm/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3", + "pkg:npm/@babel/plugin-syntax-numeric-separator@7.10.4", + "pkg:npm/@babel/plugin-syntax-object-rest-spread@7.8.3", + "pkg:npm/@babel/plugin-syntax-optional-catch-binding@7.8.3", + "pkg:npm/@babel/plugin-syntax-optional-chaining@7.8.3", + "pkg:npm/@babel/plugin-syntax-private-property-in-object@7.14.5", + "pkg:npm/@babel/plugin-syntax-top-level-await@7.14.5", + "pkg:npm/@babel/plugin-syntax-typescript@7.16.0", + "pkg:npm/@babel/plugin-syntax-typescript@7.17.12", + "pkg:npm/@babel/plugin-transform-arrow-functions@7.16.0", + "pkg:npm/@babel/plugin-transform-async-to-generator@7.16.0", + "pkg:npm/@babel/plugin-transform-block-scoped-functions@7.16.0", + "pkg:npm/@babel/plugin-transform-block-scoping@7.16.0", + "pkg:npm/@babel/plugin-transform-classes@7.16.0", + "pkg:npm/@babel/plugin-transform-computed-properties@7.16.0", + "pkg:npm/@babel/plugin-transform-destructuring@7.16.0", + "pkg:npm/@babel/plugin-transform-dotall-regex@7.16.0", + "pkg:npm/@babel/plugin-transform-duplicate-keys@7.16.0", + "pkg:npm/@babel/plugin-transform-exponentiation-operator@7.16.0", + "pkg:npm/@babel/plugin-transform-for-of@7.16.0", + "pkg:npm/@babel/plugin-transform-function-name@7.16.0", + "pkg:npm/@babel/plugin-transform-literals@7.16.0", + "pkg:npm/@babel/plugin-transform-member-expression-literals@7.16.0", + "pkg:npm/@babel/plugin-transform-modules-amd@7.16.0", + "pkg:npm/@babel/plugin-transform-modules-commonjs@7.16.0", + "pkg:npm/@babel/plugin-transform-modules-systemjs@7.16.0", + "pkg:npm/@babel/plugin-transform-modules-umd@7.16.0", + "pkg:npm/@babel/plugin-transform-named-capturing-groups-regex@7.16.0", + "pkg:npm/@babel/plugin-transform-new-target@7.16.0", + "pkg:npm/@babel/plugin-transform-object-super@7.16.0", + "pkg:npm/@babel/plugin-transform-parameters@7.16.0", + "pkg:npm/@babel/plugin-transform-property-literals@7.16.0", + "pkg:npm/@babel/plugin-transform-react-display-name@7.16.0", + "pkg:npm/@babel/plugin-transform-react-jsx-development@7.16.0", + "pkg:npm/@babel/plugin-transform-react-jsx@7.16.0", + "pkg:npm/@babel/plugin-transform-react-pure-annotations@7.16.0", + "pkg:npm/@babel/plugin-transform-regenerator@7.16.0", + "pkg:npm/@babel/plugin-transform-reserved-words@7.16.0", + "pkg:npm/@babel/plugin-transform-runtime@7.16.0", + "pkg:npm/@babel/plugin-transform-shorthand-properties@7.16.0", + "pkg:npm/@babel/plugin-transform-spread@7.16.0", + "pkg:npm/@babel/plugin-transform-sticky-regex@7.16.0", + "pkg:npm/@babel/plugin-transform-template-literals@7.16.0", + "pkg:npm/@babel/plugin-transform-typeof-symbol@7.16.0", + "pkg:npm/@babel/plugin-transform-typescript@7.18.4", + "pkg:npm/@babel/plugin-transform-unicode-escapes@7.16.0", + "pkg:npm/@babel/plugin-transform-unicode-regex@7.16.0", + "pkg:npm/@babel/preset-env@7.16.0", + "pkg:npm/@babel/preset-modules@0.1.5", + "pkg:npm/@babel/preset-react@7.16.0", + "pkg:npm/@babel/preset-typescript@7.17.12", + "pkg:npm/@babel/runtime-corejs3@7.15.4", + "pkg:npm/@babel/runtime@7.14.6", + "pkg:npm/@babel/runtime@7.15.3", + "pkg:npm/@babel/runtime@7.15.4", + "pkg:npm/@babel/runtime@7.16.0", + "pkg:npm/@babel/runtime@7.17.2", + "pkg:npm/@babel/runtime@7.17.9", + "pkg:npm/@babel/runtime@7.18.3", + "pkg:npm/@babel/runtime@7.21.5", + "pkg:npm/@babel/template@7.16.0", + "pkg:npm/@babel/template@7.16.7", + "pkg:npm/@babel/template@7.22.15", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.14.5", + "pkg:npm/@babel/types@7.16.0", + "pkg:npm/@babel/types@7.17.0", + "pkg:npm/@babel/types@7.18.4", + "pkg:npm/@babel/types@7.23.0", + "pkg:npm/@bcoe/v8-coverage@0.2.3", + "pkg:npm/@chakra-ui/accordion@2.1.4", + "pkg:npm/@chakra-ui/alert@2.0.13", + "pkg:npm/@chakra-ui/anatomy@2.1.0", + "pkg:npm/@chakra-ui/avatar@2.2.1", + "pkg:npm/@chakra-ui/breadcrumb@2.1.1", + "pkg:npm/@chakra-ui/breakpoint-utils@2.0.5", + "pkg:npm/@chakra-ui/button@2.0.13", + "pkg:npm/@chakra-ui/card@2.1.1", + "pkg:npm/@chakra-ui/checkbox@2.2.5", + "pkg:npm/@chakra-ui/clickable@2.0.11", + "pkg:npm/@chakra-ui/close-button@2.0.13", + "pkg:npm/@chakra-ui/color-mode@2.1.10", + "pkg:npm/@chakra-ui/control-box@2.0.11", + "pkg:npm/@chakra-ui/counter@2.0.11", + "pkg:npm/@chakra-ui/css-reset@2.0.10", + "pkg:npm/@chakra-ui/descendant@3.0.11", + "pkg:npm/@chakra-ui/dom-utils@2.0.4", + "pkg:npm/@chakra-ui/editable@2.0.16", + "pkg:npm/@chakra-ui/event-utils@2.0.6", + "pkg:npm/@chakra-ui/focus-lock@2.0.13", + "pkg:npm/@chakra-ui/form-control@2.0.13", + "pkg:npm/@chakra-ui/hooks@2.1.2", + "pkg:npm/@chakra-ui/icon@3.0.13", + "pkg:npm/@chakra-ui/image@2.0.12", + "pkg:npm/@chakra-ui/input@2.0.14", + "pkg:npm/@chakra-ui/layout@2.1.11", + "pkg:npm/@chakra-ui/lazy-utils@2.0.3", + "pkg:npm/@chakra-ui/live-region@2.0.11", + "pkg:npm/@chakra-ui/media-query@3.2.8", + "pkg:npm/@chakra-ui/menu@2.1.5", + "pkg:npm/@chakra-ui/modal@2.2.4", + "pkg:npm/@chakra-ui/number-input@2.0.14", + "pkg:npm/@chakra-ui/number-utils@2.0.5", + "pkg:npm/@chakra-ui/object-utils@2.0.5", + "pkg:npm/@chakra-ui/pin-input@2.0.16", + "pkg:npm/@chakra-ui/popover@2.1.4", + "pkg:npm/@chakra-ui/popper@3.0.10", + "pkg:npm/@chakra-ui/portal@2.0.11", + "pkg:npm/@chakra-ui/progress@2.1.1", + "pkg:npm/@chakra-ui/provider@2.0.24", + "pkg:npm/@chakra-ui/radio@2.0.14", + "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-env@2.0.11", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-animation-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5", + "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-disclosure@2.0.6", + "pkg:npm/@chakra-ui/react-use-event-listener@2.0.5", + "pkg:npm/@chakra-ui/react-use-focus-effect@2.0.7", + "pkg:npm/@chakra-ui/react-use-focus-on-pointer-down@2.0.4", + "pkg:npm/@chakra-ui/react-use-interval@2.0.3", + "pkg:npm/@chakra-ui/react-use-latest-ref@2.0.3", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/react-use-outside-click@2.0.5", + "pkg:npm/@chakra-ui/react-use-pan-event@2.0.6", + "pkg:npm/@chakra-ui/react-use-previous@2.0.3", + "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3", + "pkg:npm/@chakra-ui/react-use-size@2.0.5", + "pkg:npm/@chakra-ui/react-use-timeout@2.0.3", + "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5", + "pkg:npm/@chakra-ui/react-utils@2.0.9", + "pkg:npm/@chakra-ui/react@2.4.2", + "pkg:npm/@chakra-ui/select@2.0.14", + "pkg:npm/@chakra-ui/shared-utils@2.0.3", + "pkg:npm/@chakra-ui/skeleton@2.0.18", + "pkg:npm/@chakra-ui/slider@2.0.14", + "pkg:npm/@chakra-ui/spinner@2.0.11", + "pkg:npm/@chakra-ui/stat@2.0.13", + "pkg:npm/@chakra-ui/styled-system@2.4.0", + "pkg:npm/@chakra-ui/switch@2.0.17", + "pkg:npm/@chakra-ui/system@2.3.4", + "pkg:npm/@chakra-ui/table@2.0.12", + "pkg:npm/@chakra-ui/tabs@2.1.5", + "pkg:npm/@chakra-ui/tag@2.0.13", + "pkg:npm/@chakra-ui/textarea@2.0.14", + "pkg:npm/@chakra-ui/theme-tools@2.0.14", + "pkg:npm/@chakra-ui/theme-utils@2.0.5", + "pkg:npm/@chakra-ui/theme@2.2.2", + "pkg:npm/@chakra-ui/toast@4.0.4", + "pkg:npm/@chakra-ui/tooltip@2.2.2", + "pkg:npm/@chakra-ui/transition@2.0.12", + "pkg:npm/@chakra-ui/utils@2.0.12", + "pkg:npm/@chakra-ui/visually-hidden@2.0.13", + "pkg:npm/@csstools/css-parser-algorithms@2.3.0", + "pkg:npm/@csstools/css-tokenizer@2.1.1", + "pkg:npm/@csstools/media-query-list-parser@2.1.2", + "pkg:npm/@csstools/selector-specificity@3.0.0", + "pkg:npm/@discoveryjs/json-ext@0.5.7", + "pkg:npm/@emotion/babel-plugin@11.3.0", + "pkg:npm/@emotion/babel-plugin@11.9.2", + "pkg:npm/@emotion/cache@11.9.3", + "pkg:npm/@emotion/hash@0.8.0", + "pkg:npm/@emotion/is-prop-valid@0.8.8", + "pkg:npm/@emotion/is-prop-valid@1.1.0", + "pkg:npm/@emotion/memoize@0.7.4", + "pkg:npm/@emotion/memoize@0.7.5", + "pkg:npm/@emotion/react@11.9.3", + "pkg:npm/@emotion/serialize@1.0.2", + "pkg:npm/@emotion/serialize@1.0.4", + "pkg:npm/@emotion/sheet@1.1.1", + "pkg:npm/@emotion/styled@11.3.0", + "pkg:npm/@emotion/unitless@0.7.5", + "pkg:npm/@emotion/utils@1.1.0", + "pkg:npm/@emotion/weak-memoize@0.2.5", + "pkg:npm/@eslint/eslintrc@1.3.0", + "pkg:npm/@exodus/schemasafe@1.0.0-rc.3", + "pkg:npm/@fastify/busboy@2.0.0", + "pkg:npm/@humanwhocodes/config-array@0.9.5", + "pkg:npm/@humanwhocodes/object-schema@1.2.1", + "pkg:npm/@istanbuljs/load-nyc-config@1.1.0", + "pkg:npm/@istanbuljs/schema@0.1.3", + "pkg:npm/@jest/console@27.5.1", + "pkg:npm/@jest/core@27.5.1", + "pkg:npm/@jest/environment@27.5.1", + "pkg:npm/@jest/fake-timers@27.5.1", + "pkg:npm/@jest/globals@27.5.1", + "pkg:npm/@jest/reporters@27.5.1", + "pkg:npm/@jest/source-map@27.5.1", + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/@jest/test-sequencer@27.5.1", + "pkg:npm/@jest/transform@27.3.1", + "pkg:npm/@jest/transform@27.5.1", + "pkg:npm/@jest/types@27.2.5", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@jridgewell/gen-mapping@0.1.1", + "pkg:npm/@jridgewell/gen-mapping@0.3.2", + "pkg:npm/@jridgewell/gen-mapping@0.3.3", + "pkg:npm/@jridgewell/resolve-uri@3.1.0", + "pkg:npm/@jridgewell/resolve-uri@3.1.1", + "pkg:npm/@jridgewell/set-array@1.1.1", + "pkg:npm/@jridgewell/set-array@1.1.2", + "pkg:npm/@jridgewell/source-map@0.3.2", + "pkg:npm/@jridgewell/sourcemap-codec@1.4.14", + "pkg:npm/@jridgewell/sourcemap-codec@1.4.15", + "pkg:npm/@jridgewell/trace-mapping@0.3.13", + "pkg:npm/@jridgewell/trace-mapping@0.3.14", + "pkg:npm/@jridgewell/trace-mapping@0.3.19", + "pkg:npm/@jridgewell/trace-mapping@0.3.4", + "pkg:npm/@nodelib/fs.scandir@2.1.5", + "pkg:npm/@nodelib/fs.stat@2.0.5", + "pkg:npm/@nodelib/fs.walk@1.2.7", + "pkg:npm/@npmcli/move-file@1.1.2", + "pkg:npm/@popperjs/core@2.11.2", + "pkg:npm/@reactflow/background@11.2.4", + "pkg:npm/@reactflow/controls@11.1.15", + "pkg:npm/@reactflow/core@11.7.4", + "pkg:npm/@reactflow/minimap@11.5.4", + "pkg:npm/@reactflow/node-resizer@2.1.1", + "pkg:npm/@reactflow/node-toolbar@1.2.3", + "pkg:npm/@redocly/ajv@8.6.4", + "pkg:npm/@redocly/openapi-core@1.0.0-beta.102", + "pkg:npm/@sinonjs/commons@1.8.3", + "pkg:npm/@sinonjs/fake-timers@8.1.0", + "pkg:npm/@testing-library/dom@8.13.0", + "pkg:npm/@testing-library/jest-dom@5.16.4", + "pkg:npm/@testing-library/react@13.3.0", + "pkg:npm/@tootallnate/once@1.1.2", + "pkg:npm/@trysound/sax@0.2.0", + "pkg:npm/@types/aria-query@4.2.2", + "pkg:npm/@types/babel__core@7.1.16", + "pkg:npm/@types/babel__generator@7.6.3", + "pkg:npm/@types/babel__template@7.4.1", + "pkg:npm/@types/babel__traverse@7.14.2", + "pkg:npm/@types/color-convert@2.0.0", + "pkg:npm/@types/color-name@1.1.1", + "pkg:npm/@types/color@3.0.3", + "pkg:npm/@types/d3-array@3.0.3", + "pkg:npm/@types/d3-axis@3.0.1", + "pkg:npm/@types/d3-brush@3.0.1", + "pkg:npm/@types/d3-chord@3.0.1", + "pkg:npm/@types/d3-color@1.4.2", + "pkg:npm/@types/d3-color@3.1.0", + "pkg:npm/@types/d3-contour@3.0.1", + "pkg:npm/@types/d3-delaunay@6.0.1", + "pkg:npm/@types/d3-dispatch@3.0.1", + "pkg:npm/@types/d3-drag@3.0.1", + "pkg:npm/@types/d3-dsv@3.0.0", + "pkg:npm/@types/d3-ease@3.0.0", + "pkg:npm/@types/d3-fetch@3.0.1", + "pkg:npm/@types/d3-force@3.0.3", + "pkg:npm/@types/d3-format@3.0.1", + "pkg:npm/@types/d3-geo@3.0.2", + "pkg:npm/@types/d3-hierarchy@3.1.0", + "pkg:npm/@types/d3-interpolate@1.4.2", + "pkg:npm/@types/d3-interpolate@3.0.1", + "pkg:npm/@types/d3-path@1.0.9", + "pkg:npm/@types/d3-path@3.0.0", + "pkg:npm/@types/d3-polygon@3.0.0", + "pkg:npm/@types/d3-quadtree@3.0.2", + "pkg:npm/@types/d3-random@3.0.1", + "pkg:npm/@types/d3-scale-chromatic@3.0.0", + "pkg:npm/@types/d3-scale@3.3.2", + "pkg:npm/@types/d3-scale@4.0.2", + "pkg:npm/@types/d3-selection@3.0.3", + "pkg:npm/@types/d3-shape@1.3.8", + "pkg:npm/@types/d3-shape@3.1.0", + "pkg:npm/@types/d3-time-format@4.0.0", + "pkg:npm/@types/d3-time@2.1.1", + "pkg:npm/@types/d3-time@3.0.0", + "pkg:npm/@types/d3-timer@3.0.0", + "pkg:npm/@types/d3-transition@3.0.2", + "pkg:npm/@types/d3-zoom@3.0.1", + "pkg:npm/@types/d3@7.4.0", + "pkg:npm/@types/debug@4.1.7", + "pkg:npm/@types/eslint-scope@3.7.3", + "pkg:npm/@types/eslint@8.4.3", + "pkg:npm/@types/estree@0.0.51", + "pkg:npm/@types/geojson@7946.0.10", + "pkg:npm/@types/glob@7.1.3", + "pkg:npm/@types/graceful-fs@4.1.5", + "pkg:npm/@types/hast@2.3.4", + "pkg:npm/@types/istanbul-lib-coverage@2.0.3", + "pkg:npm/@types/istanbul-lib-report@3.0.0", + "pkg:npm/@types/istanbul-reports@3.0.1", + "pkg:npm/@types/jest@27.0.2", + "pkg:npm/@types/json-schema@7.0.11", + "pkg:npm/@types/json-schema@7.0.7", + "pkg:npm/@types/json5@0.0.29", + "pkg:npm/@types/lodash.mergewith@4.6.6", + "pkg:npm/@types/lodash@4.14.178", + "pkg:npm/@types/lodash@4.14.182", + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/@types/minimatch@3.0.4", + "pkg:npm/@types/minimist@1.2.2", + "pkg:npm/@types/ms@0.7.31", + "pkg:npm/@types/node@14.17.3", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/@types/normalize-package-data@2.4.0", + "pkg:npm/@types/parse-json@4.0.0", + "pkg:npm/@types/prettier@2.4.1", + "pkg:npm/@types/prop-types@15.7.4", + "pkg:npm/@types/prop-types@15.7.5", + "pkg:npm/@types/react-dom@18.0.5", + "pkg:npm/@types/react-syntax-highlighter@15.5.6", + "pkg:npm/@types/react-table@7.7.12", + "pkg:npm/@types/react-transition-group@4.4.5", + "pkg:npm/@types/react@18.0.12", + "pkg:npm/@types/react@18.0.15", + "pkg:npm/@types/scheduler@0.16.2", + "pkg:npm/@types/source-list-map@0.1.2", + "pkg:npm/@types/stack-utils@2.0.1", + "pkg:npm/@types/tapable@1.0.7", + "pkg:npm/@types/testing-library__jest-dom@5.14.1", + "pkg:npm/@types/uglify-js@3.13.0", + "pkg:npm/@types/unist@2.0.6", + "pkg:npm/@types/webpack-sources@2.1.0", + "pkg:npm/@types/webpack@4.41.29", + "pkg:npm/@types/yargs-parser@20.2.1", + "pkg:npm/@types/yargs@16.0.4", + "pkg:npm/@typescript-eslint/eslint-plugin@5.27.1", + "pkg:npm/@typescript-eslint/parser@5.27.1", + "pkg:npm/@typescript-eslint/scope-manager@5.27.1", + "pkg:npm/@typescript-eslint/type-utils@5.27.1", + "pkg:npm/@typescript-eslint/types@5.27.1", + "pkg:npm/@typescript-eslint/typescript-estree@5.27.1", + "pkg:npm/@typescript-eslint/utils@5.27.1", + "pkg:npm/@typescript-eslint/visitor-keys@5.27.1", + "pkg:npm/@visx/curve@2.1.0", + "pkg:npm/@visx/group@2.10.0", + "pkg:npm/@visx/scale@2.2.2", + "pkg:npm/@visx/shape@2.12.2", + "pkg:npm/@webassemblyjs/ast@1.11.1", + "pkg:npm/@webassemblyjs/floating-point-hex-parser@1.11.1", + "pkg:npm/@webassemblyjs/helper-api-error@1.11.1", + "pkg:npm/@webassemblyjs/helper-buffer@1.11.1", + "pkg:npm/@webassemblyjs/helper-numbers@1.11.1", + "pkg:npm/@webassemblyjs/helper-wasm-bytecode@1.11.1", + "pkg:npm/@webassemblyjs/helper-wasm-section@1.11.1", + "pkg:npm/@webassemblyjs/ieee754@1.11.1", + "pkg:npm/@webassemblyjs/leb128@1.11.1", + "pkg:npm/@webassemblyjs/utf8@1.11.1", + "pkg:npm/@webassemblyjs/wasm-edit@1.11.1", + "pkg:npm/@webassemblyjs/wasm-gen@1.11.1", + "pkg:npm/@webassemblyjs/wasm-opt@1.11.1", + "pkg:npm/@webassemblyjs/wasm-parser@1.11.1", + "pkg:npm/@webassemblyjs/wast-printer@1.11.1", + "pkg:npm/@webpack-cli/configtest@1.2.0", + "pkg:npm/@webpack-cli/info@1.5.0", + "pkg:npm/@webpack-cli/serve@1.7.0", + "pkg:npm/@xtuc/ieee754@1.2.0", + "pkg:npm/@xtuc/long@4.2.2", + "pkg:npm/@zag-js/element-size@0.1.0", + "pkg:npm/@zag-js/focus-visible@0.1.0", + "pkg:npm/abab@2.0.5", + "pkg:npm/acorn-globals@6.0.0", + "pkg:npm/acorn-import-assertions@1.8.0", + "pkg:npm/acorn-jsx@5.3.2", + "pkg:npm/acorn-walk@7.2.0", + "pkg:npm/acorn@7.4.1", + "pkg:npm/acorn@8.7.1", + "pkg:npm/agent-base@6.0.2", + "pkg:npm/aggregate-error@3.1.0", + "pkg:npm/ajv-formats@2.1.1", + "pkg:npm/ajv-keywords@3.5.2", + "pkg:npm/ajv-keywords@5.1.0", + "pkg:npm/ajv@6.12.6", + "pkg:npm/ajv@8.11.0", + "pkg:npm/ajv@8.6.0", + "pkg:npm/ansi-escapes@4.3.2", + "pkg:npm/ansi-regex@5.0.1", + "pkg:npm/ansi-styles@3.2.1", + "pkg:npm/ansi-styles@4.3.0", + "pkg:npm/ansi-styles@5.2.0", + "pkg:npm/anymatch@3.1.2", + "pkg:npm/argparse@1.0.10", + "pkg:npm/argparse@2.0.1", + "pkg:npm/aria-hidden@1.2.3", + "pkg:npm/aria-query@4.2.2", + "pkg:npm/aria-query@5.0.0", + "pkg:npm/array-buffer-byte-length@1.0.0", + "pkg:npm/array-includes@3.1.3", + "pkg:npm/array-includes@3.1.5", + "pkg:npm/array-includes@3.1.6", + "pkg:npm/array-union@1.0.2", + "pkg:npm/array-union@2.1.0", + "pkg:npm/array-uniq@1.0.3", + "pkg:npm/array.prototype.flat@1.3.1", + "pkg:npm/array.prototype.flatmap@1.3.0", + "pkg:npm/array.prototype.flatmap@1.3.1", + "pkg:npm/arrify@1.0.1", + "pkg:npm/asap@2.0.6", + "pkg:npm/ast-types-flow@0.0.7", + "pkg:npm/astral-regex@2.0.0", + "pkg:npm/asynckit@0.4.0", + "pkg:npm/atob@2.1.2", + "pkg:npm/available-typed-arrays@1.0.5", + "pkg:npm/axe-core@4.4.2", + "pkg:npm/axios@1.6.1", + "pkg:npm/axobject-query@2.2.0", + "pkg:npm/babel-jest@27.3.1", + "pkg:npm/babel-jest@27.5.1", + "pkg:npm/babel-loader@9.1.2", + "pkg:npm/babel-plugin-dynamic-import-node@2.3.3", + "pkg:npm/babel-plugin-istanbul@6.1.1", + "pkg:npm/babel-plugin-jest-hoist@27.2.0", + "pkg:npm/babel-plugin-jest-hoist@27.5.1", + "pkg:npm/babel-plugin-macros@2.8.0", + "pkg:npm/babel-plugin-polyfill-corejs2@0.2.3", + "pkg:npm/babel-plugin-polyfill-corejs3@0.3.0", + "pkg:npm/babel-plugin-polyfill-regenerator@0.2.3", + "pkg:npm/babel-preset-current-node-syntax@1.0.1", + "pkg:npm/babel-preset-jest@27.2.0", + "pkg:npm/babel-preset-jest@27.5.1", + "pkg:npm/bail@2.0.2", + "pkg:npm/balanced-match@1.0.2", + "pkg:npm/balanced-match@2.0.0", + "pkg:npm/base16@1.0.0", + "pkg:npm/big-integer@1.6.51", + "pkg:npm/big.js@5.2.2", + "pkg:npm/boolbase@1.0.0", + "pkg:npm/bootstrap-3-typeahead@4.0.2", + "pkg:npm/bootstrap@3.4.1", + "pkg:npm/brace-expansion@1.1.11", + "pkg:npm/brace-expansion@2.0.1", + "pkg:npm/braces@3.0.2", + "pkg:npm/broadcast-channel@3.7.0", + "pkg:npm/browser-process-hrtime@1.0.0", + "pkg:npm/browserslist@4.20.4", + "pkg:npm/bser@2.1.1", + "pkg:npm/buffer-from@1.1.2", + "pkg:npm/cacache@15.2.0", + "pkg:npm/call-bind@1.0.2", + "pkg:npm/call-me-maybe@1.0.1", + "pkg:npm/callsites@3.1.0", + "pkg:npm/camelcase-keys@7.0.0", + "pkg:npm/camelcase@5.3.1", + "pkg:npm/camelcase@6.2.0", + "pkg:npm/caniuse-api@3.0.0", + "pkg:npm/caniuse-lite@1.0.30001516", + "pkg:npm/ccount@2.0.1", + "pkg:npm/chakra-react-select@4.0.3", + "pkg:npm/chalk@2.4.2", + "pkg:npm/chalk@3.0.0", + "pkg:npm/chalk@4.1.1", + "pkg:npm/chalk@5.0.1", + "pkg:npm/char-regex@1.0.2", + "pkg:npm/character-entities-legacy@1.1.4", + "pkg:npm/character-entities@1.2.4", + "pkg:npm/character-entities@2.0.2", + "pkg:npm/character-reference-invalid@1.1.4", + "pkg:npm/chownr@2.0.0", + "pkg:npm/chrome-trace-event@1.0.3", + "pkg:npm/ci-info@3.2.0", + "pkg:npm/cjs-module-lexer@1.2.2", + "pkg:npm/classcat@5.0.4", + "pkg:npm/classnames@2.3.1", + "pkg:npm/clean-stack@2.2.0", + "pkg:npm/clean-webpack-plugin@3.0.0", + "pkg:npm/cli@1.0.1", + "pkg:npm/cliui@7.0.4", + "pkg:npm/clone-deep@4.0.1", + "pkg:npm/clsx@1.1.1", + "pkg:npm/co@4.6.0", + "pkg:npm/codemirror@5.61.1", + "pkg:npm/collect-v8-coverage@1.0.1", + "pkg:npm/color-convert@1.9.3", + "pkg:npm/color-convert@2.0.1", + "pkg:npm/color-name@1.1.3", + "pkg:npm/color-name@1.1.4", + "pkg:npm/color-string@1.9.1", + "pkg:npm/color2k@2.0.2", + "pkg:npm/color@4.2.3", + "pkg:npm/colord@2.9.3", + "pkg:npm/colorette@1.2.2", + "pkg:npm/colorette@2.0.19", + "pkg:npm/combined-stream@1.0.8", + "pkg:npm/comma-separated-tokens@1.0.8", + "pkg:npm/comma-separated-tokens@2.0.3", + "pkg:npm/commander@2.20.3", + "pkg:npm/commander@7.2.0", + "pkg:npm/commondir@1.0.1", + "pkg:npm/compute-scroll-into-view@1.0.14", + "pkg:npm/concat-map@0.0.1", + "pkg:npm/confusing-browser-globals@1.0.10", + "pkg:npm/console-browserify@1.1.0", + "pkg:npm/convert-source-map@1.7.0", + "pkg:npm/convert-source-map@1.8.0", + "pkg:npm/copy-to-clipboard@3.3.1", + "pkg:npm/copy-webpack-plugin@6.4.1", + "pkg:npm/core-js-compat@3.19.1", + "pkg:npm/core-js-pure@3.18.0", + "pkg:npm/core-util-is@1.0.2", + "pkg:npm/cosmiconfig@6.0.0", + "pkg:npm/cosmiconfig@8.2.0", + "pkg:npm/cross-fetch@3.1.5", + "pkg:npm/cross-spawn@7.0.3", + "pkg:npm/css-box-model@1.2.1", + "pkg:npm/css-declaration-sorter@6.3.0", + "pkg:npm/css-functions-list@3.1.0", + "pkg:npm/css-loader@5.2.7", + "pkg:npm/css-minimizer-webpack-plugin@4.0.0", + "pkg:npm/css-select@4.3.0", + "pkg:npm/css-tree@1.1.3", + "pkg:npm/css-tree@2.3.1", + "pkg:npm/css-what@6.1.0", + "pkg:npm/css.escape@1.5.1", + "pkg:npm/css@3.0.0", + "pkg:npm/cssesc@3.0.0", + "pkg:npm/cssfontparser@1.2.1", + "pkg:npm/cssnano-preset-default@5.2.11", + "pkg:npm/cssnano-utils@3.1.0", + "pkg:npm/cssnano@5.1.11", + "pkg:npm/csso@4.2.0", + "pkg:npm/cssom@0.3.8", + "pkg:npm/cssom@0.4.4", + "pkg:npm/cssstyle@2.3.0", + "pkg:npm/csstype@3.0.8", + "pkg:npm/csstype@3.1.0", + "pkg:npm/d3-array@1.2.4", + "pkg:npm/d3-array@2.12.1", + "pkg:npm/d3-axis@1.0.12", + "pkg:npm/d3-brush@1.1.6", + "pkg:npm/d3-chord@1.0.6", + "pkg:npm/d3-collection@1.0.7", + "pkg:npm/d3-color@3.1.0", + "pkg:npm/d3-contour@1.3.2", + "pkg:npm/d3-dispatch@1.0.6", + "pkg:npm/d3-dispatch@3.0.1", + "pkg:npm/d3-drag@1.2.5", + "pkg:npm/d3-drag@3.0.0", + "pkg:npm/d3-dsv@1.2.0", + "pkg:npm/d3-ease@1.0.7", + "pkg:npm/d3-ease@3.0.1", + "pkg:npm/d3-fetch@1.2.0", + "pkg:npm/d3-force@1.2.1", + "pkg:npm/d3-format@1.4.5", + "pkg:npm/d3-format@2.0.0", + "pkg:npm/d3-geo@1.12.1", + "pkg:npm/d3-hierarchy@1.1.9", + "pkg:npm/d3-interpolate@1.4.0", + "pkg:npm/d3-interpolate@2.0.1", + "pkg:npm/d3-interpolate@3.0.1", + "pkg:npm/d3-path@1.0.9", + "pkg:npm/d3-path@2.0.0", + "pkg:npm/d3-polygon@1.0.6", + "pkg:npm/d3-quadtree@1.0.7", + "pkg:npm/d3-random@1.1.2", + "pkg:npm/d3-scale-chromatic@1.5.0", + "pkg:npm/d3-scale@2.2.2", + "pkg:npm/d3-scale@3.3.0", + "pkg:npm/d3-selection@1.4.2", + "pkg:npm/d3-selection@3.0.0", + "pkg:npm/d3-shape@1.3.7", + "pkg:npm/d3-shape@2.1.0", + "pkg:npm/d3-time-format@2.3.0", + "pkg:npm/d3-time-format@3.0.0", + "pkg:npm/d3-time@1.1.0", + "pkg:npm/d3-time@2.1.1", + "pkg:npm/d3-timer@1.0.10", + "pkg:npm/d3-timer@3.0.1", + "pkg:npm/d3-tip@0.9.1", + "pkg:npm/d3-transition@1.3.2", + "pkg:npm/d3-transition@3.0.1", + "pkg:npm/d3-voronoi@1.1.4", + "pkg:npm/d3-zoom@1.8.3", + "pkg:npm/d3-zoom@3.0.0", + "pkg:npm/d3@3.5.17", + "pkg:npm/d3@5.16.0", + "pkg:npm/dagre-d3@0.6.4", + "pkg:npm/dagre@0.8.5", + "pkg:npm/damerau-levenshtein@1.0.8", + "pkg:npm/data-urls@2.0.0", + "pkg:npm/datatables.net-bs@1.11.4", + "pkg:npm/datatables.net@1.11.4", + "pkg:npm/date-now@0.1.4", + "pkg:npm/debug@3.2.7", + "pkg:npm/debug@4.3.4", + "pkg:npm/decamelize-keys@1.1.0", + "pkg:npm/decamelize@1.2.0", + "pkg:npm/decamelize@5.0.1", + "pkg:npm/decimal.js@10.3.1", + "pkg:npm/decko@1.2.0", + "pkg:npm/decode-named-character-reference@1.0.2", + "pkg:npm/decode-uri-component@0.2.2", + "pkg:npm/dedent@0.7.0", + "pkg:npm/deep-is@0.1.4", + "pkg:npm/deepmerge@4.2.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/del@4.1.1", + "pkg:npm/delayed-stream@1.0.0", + "pkg:npm/dequal@2.0.3", + "pkg:npm/detect-newline@3.1.0", + "pkg:npm/detect-node-es@1.1.0", + "pkg:npm/detect-node@2.1.0", + "pkg:npm/diff-sequences@27.0.6", + "pkg:npm/diff-sequences@27.5.1", + "pkg:npm/diff@5.1.0", + "pkg:npm/dir-glob@3.0.1", + "pkg:npm/doctrine@2.1.0", + "pkg:npm/doctrine@3.0.0", + "pkg:npm/dom-accessibility-api@0.5.10", + "pkg:npm/dom-helpers@5.2.1", + "pkg:npm/dom-serializer@0.2.2", + "pkg:npm/dom-serializer@1.3.2", + "pkg:npm/domelementtype@1.3.1", + "pkg:npm/domelementtype@2.2.0", + "pkg:npm/domexception@2.0.1", + "pkg:npm/domhandler@2.3.0", + "pkg:npm/domhandler@4.2.0", + "pkg:npm/domhandler@4.3.1", + "pkg:npm/dompurify@2.2.9", + "pkg:npm/domutils@1.5.1", + "pkg:npm/domutils@2.7.0", + "pkg:npm/domutils@2.8.0", + "pkg:npm/echarts@5.4.2", + "pkg:npm/electron-to-chromium@1.4.156", + "pkg:npm/elkjs@0.7.1", + "pkg:npm/emittery@0.8.1", + "pkg:npm/emoji-regex@8.0.0", + "pkg:npm/emoji-regex@9.2.2", + "pkg:npm/emojis-list@3.0.0", + "pkg:npm/enhanced-resolve@5.12.0", + "pkg:npm/entities@1.0.0", + "pkg:npm/entities@2.2.0", + "pkg:npm/envinfo@7.8.1", + "pkg:npm/eonasdan-bootstrap-datetimepicker@4.17.49", + "pkg:npm/error-ex@1.3.2", + "pkg:npm/es-abstract@1.18.3", + "pkg:npm/es-abstract@1.20.1", + "pkg:npm/es-abstract@1.21.2", + "pkg:npm/es-module-lexer@0.9.3", + "pkg:npm/es-set-tostringtag@2.0.1", + "pkg:npm/es-shim-unscopables@1.0.0", + "pkg:npm/es-to-primitive@1.2.1", + "pkg:npm/es6-promise@3.3.1", + "pkg:npm/escalade@3.1.1", + "pkg:npm/escape-string-regexp@1.0.5", + "pkg:npm/escape-string-regexp@2.0.0", + "pkg:npm/escape-string-regexp@4.0.0", + "pkg:npm/escape-string-regexp@5.0.0", + "pkg:npm/escodegen@2.0.0", + "pkg:npm/eslint-config-airbnb-base@15.0.0", + "pkg:npm/eslint-config-airbnb-typescript@17.0.0", + "pkg:npm/eslint-config-airbnb@19.0.4", + "pkg:npm/eslint-config-prettier@8.6.0", + "pkg:npm/eslint-import-resolver-node@0.3.7", + "pkg:npm/eslint-module-utils@2.7.4", + "pkg:npm/eslint-plugin-es@3.0.1", + "pkg:npm/eslint-plugin-html@6.1.2", + "pkg:npm/eslint-plugin-import@2.27.5", + "pkg:npm/eslint-plugin-jsx-a11y@6.5.1", + "pkg:npm/eslint-plugin-node@11.1.0", + "pkg:npm/eslint-plugin-promise@4.3.1", + "pkg:npm/eslint-plugin-react-hooks@4.6.0", + "pkg:npm/eslint-plugin-react@7.30.0", + "pkg:npm/eslint-plugin-standard@4.1.0", + "pkg:npm/eslint-scope@5.1.1", + "pkg:npm/eslint-scope@7.1.1", + "pkg:npm/eslint-utils@2.1.0", + "pkg:npm/eslint-utils@3.0.0", + "pkg:npm/eslint-visitor-keys@1.3.0", + "pkg:npm/eslint-visitor-keys@2.1.0", + "pkg:npm/eslint-visitor-keys@3.3.0", + "pkg:npm/eslint@8.17.0", + "pkg:npm/espree@9.3.2", + "pkg:npm/esprima@4.0.1", + "pkg:npm/esquery@1.4.0", + "pkg:npm/esrecurse@4.3.0", + "pkg:npm/estraverse@4.3.0", + "pkg:npm/estraverse@5.2.0", + "pkg:npm/estraverse@5.3.0", + "pkg:npm/esutils@2.0.3", + "pkg:npm/eventemitter3@4.0.7", + "pkg:npm/events@3.3.0", + "pkg:npm/execa@5.1.1", + "pkg:npm/exit@0.1.2", + "pkg:npm/expect@27.5.1", + "pkg:npm/extend@3.0.2", + "pkg:npm/fast-deep-equal@3.1.3", + "pkg:npm/fast-glob@3.3.0", + "pkg:npm/fast-json-stable-stringify@2.1.0", + "pkg:npm/fast-levenshtein@2.0.6", + "pkg:npm/fast-safe-stringify@2.0.7", + "pkg:npm/fastest-levenshtein@1.0.16", + "pkg:npm/fastq@1.11.0", + "pkg:npm/fault@1.0.4", + "pkg:npm/fb-watchman@2.0.1", + "pkg:npm/fbemitter@3.0.0", + "pkg:npm/fbjs-css-vars@1.0.2", + "pkg:npm/fbjs@3.0.4", + "pkg:npm/file-entry-cache@6.0.1", + "pkg:npm/file-loader@6.2.0", + "pkg:npm/fill-range@7.0.1", + "pkg:npm/find-cache-dir@3.3.1", + "pkg:npm/find-cache-dir@3.3.2", + "pkg:npm/find-root@1.1.0", + "pkg:npm/find-up@4.1.0", + "pkg:npm/find-up@5.0.0", + "pkg:npm/flat-cache@3.0.4", + "pkg:npm/flatted@3.1.1", + "pkg:npm/flux@4.0.3", + "pkg:npm/focus-lock@0.11.6", + "pkg:npm/follow-redirects@1.15.3", + "pkg:npm/for-each@0.3.3", + "pkg:npm/foreach@2.0.5", + "pkg:npm/form-data@3.0.1", + "pkg:npm/form-data@4.0.0", + "pkg:npm/format@0.2.2", + "pkg:npm/framer-motion@6.3.11", + "pkg:npm/framesync@5.3.0", + "pkg:npm/framesync@6.0.1", + "pkg:npm/fs-minipass@2.1.0", + "pkg:npm/fs.realpath@1.0.0", + "pkg:npm/fsevents@2.3.2", + "pkg:npm/function-bind@1.1.1", + "pkg:npm/function.prototype.name@1.1.5", + "pkg:npm/functional-red-black-tree@1.0.1", + "pkg:npm/functions-have-names@1.2.3", + "pkg:npm/gensync@1.0.0-beta.2", + "pkg:npm/get-caller-file@2.0.5", + "pkg:npm/get-intrinsic@1.1.1", + "pkg:npm/get-intrinsic@1.2.0", + "pkg:npm/get-nonce@1.0.1", + "pkg:npm/get-npm-tarball-url@2.0.2", + "pkg:npm/get-package-type@0.1.0", + "pkg:npm/get-stream@6.0.1", + "pkg:npm/get-symbol-description@1.0.0", + "pkg:npm/glob-parent@5.1.2", + "pkg:npm/glob-parent@6.0.2", + "pkg:npm/glob-to-regexp@0.4.1", + "pkg:npm/glob@7.1.7", + "pkg:npm/glob@7.2.0", + "pkg:npm/global-modules@2.0.0", + "pkg:npm/global-prefix@3.0.0", + "pkg:npm/globals@11.12.0", + "pkg:npm/globals@13.15.0", + "pkg:npm/globalthis@1.0.3", + "pkg:npm/globalyzer@0.1.0", + "pkg:npm/globby@11.1.0", + "pkg:npm/globby@6.1.0", + "pkg:npm/globjoin@0.1.4", + "pkg:npm/globrex@0.1.2", + "pkg:npm/gopd@1.0.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/graphlib@2.1.8", + "pkg:npm/hard-rejection@2.1.0", + "pkg:npm/has-bigints@1.0.1", + "pkg:npm/has-bigints@1.0.2", + "pkg:npm/has-flag@3.0.0", + "pkg:npm/has-flag@4.0.0", + "pkg:npm/has-property-descriptors@1.0.0", + "pkg:npm/has-proto@1.0.1", + "pkg:npm/has-symbols@1.0.2", + "pkg:npm/has-symbols@1.0.3", + "pkg:npm/has-tostringtag@1.0.0", + "pkg:npm/has@1.0.3", + "pkg:npm/hast-util-parse-selector@2.2.5", + "pkg:npm/hast-util-whitespace@2.0.0", + "pkg:npm/hastscript@6.0.0", + "pkg:npm/hey-listen@1.0.8", + "pkg:npm/highlight.js@10.7.3", + "pkg:npm/history@5.3.0", + "pkg:npm/hoist-non-react-statics@3.3.2", + "pkg:npm/hosted-git-info@4.0.2", + "pkg:npm/html-encoding-sniffer@2.0.1", + "pkg:npm/html-escaper@2.0.2", + "pkg:npm/html-tags@3.3.1", + "pkg:npm/htmlparser2@3.8.3", + "pkg:npm/htmlparser2@6.1.0", + "pkg:npm/http-proxy-agent@4.0.1", + "pkg:npm/http2-client@1.3.3", + "pkg:npm/https-proxy-agent@5.0.0", + "pkg:npm/human-signals@2.1.0", + "pkg:npm/iconv-lite@0.4.24", + "pkg:npm/icss-utils@5.1.0", + "pkg:npm/ignore@5.2.4", + "pkg:npm/import-fresh@3.3.0", + "pkg:npm/import-lazy@4.0.0", + "pkg:npm/import-local@3.0.3", + "pkg:npm/imports-loader@1.2.0", + "pkg:npm/imurmurhash@0.1.4", + "pkg:npm/indent-string@4.0.0", + "pkg:npm/indent-string@5.0.0", + "pkg:npm/infer-owner@1.0.4", + "pkg:npm/inflight@1.0.6", + "pkg:npm/inherits@2.0.4", + "pkg:npm/ini@1.3.8", + "pkg:npm/inline-style-parser@0.1.1", + "pkg:npm/internal-slot@1.0.3", + "pkg:npm/internal-slot@1.0.5", + "pkg:npm/internmap@1.0.1", + "pkg:npm/interpret@2.2.0", + "pkg:npm/invariant@2.2.4", + "pkg:npm/is-alphabetical@1.0.4", + "pkg:npm/is-alphanumerical@1.0.4", + "pkg:npm/is-array-buffer@3.0.2", + "pkg:npm/is-arrayish@0.2.1", + "pkg:npm/is-arrayish@0.3.2", + "pkg:npm/is-bigint@1.0.2", + "pkg:npm/is-boolean-object@1.1.1", + "pkg:npm/is-buffer@2.0.5", + "pkg:npm/is-callable@1.2.3", + "pkg:npm/is-callable@1.2.4", + "pkg:npm/is-callable@1.2.7", + "pkg:npm/is-core-module@2.11.0", + "pkg:npm/is-core-module@2.12.1", + "pkg:npm/is-core-module@2.4.0", + "pkg:npm/is-core-module@2.9.0", + "pkg:npm/is-date-object@1.0.4", + "pkg:npm/is-decimal@1.0.4", + "pkg:npm/is-extglob@2.1.1", + "pkg:npm/is-fullwidth-code-point@3.0.0", + "pkg:npm/is-generator-fn@2.1.0", + "pkg:npm/is-glob@4.0.1", + "pkg:npm/is-glob@4.0.3", + "pkg:npm/is-hexadecimal@1.0.4", + "pkg:npm/is-negative-zero@2.0.1", + "pkg:npm/is-negative-zero@2.0.2", + "pkg:npm/is-number-object@1.0.5", + "pkg:npm/is-number@7.0.0", + "pkg:npm/is-path-cwd@2.2.0", + "pkg:npm/is-path-in-cwd@2.1.0", + "pkg:npm/is-path-inside@2.1.0", + "pkg:npm/is-plain-obj@1.1.0", + "pkg:npm/is-plain-obj@4.1.0", + "pkg:npm/is-plain-object@2.0.4", + "pkg:npm/is-plain-object@5.0.0", + "pkg:npm/is-potential-custom-element-name@1.0.1", + "pkg:npm/is-regex@1.1.3", + "pkg:npm/is-regex@1.1.4", + "pkg:npm/is-shared-array-buffer@1.0.2", + "pkg:npm/is-stream@2.0.1", + "pkg:npm/is-string@1.0.6", + "pkg:npm/is-string@1.0.7", + "pkg:npm/is-symbol@1.0.4", + "pkg:npm/is-typed-array@1.1.10", + "pkg:npm/is-typedarray@1.0.0", + "pkg:npm/is-weakref@1.0.2", + "pkg:npm/isarray@0.0.1", + "pkg:npm/isexe@2.0.0", + "pkg:npm/isobject@3.0.1", + "pkg:npm/istanbul-lib-coverage@3.2.0", + "pkg:npm/istanbul-lib-instrument@5.1.0", + "pkg:npm/istanbul-lib-report@3.0.0", + "pkg:npm/istanbul-lib-source-maps@4.0.1", + "pkg:npm/istanbul-reports@3.1.4", + "pkg:npm/jest-canvas-mock@2.5.1", + "pkg:npm/jest-changed-files@27.5.1", + "pkg:npm/jest-circus@27.5.1", + "pkg:npm/jest-cli@27.5.1", + "pkg:npm/jest-config@27.5.1", + "pkg:npm/jest-diff@27.3.1", + "pkg:npm/jest-diff@27.5.1", + "pkg:npm/jest-docblock@27.5.1", + "pkg:npm/jest-each@27.5.1", + "pkg:npm/jest-environment-jsdom@27.5.1", + "pkg:npm/jest-environment-node@27.5.1", + "pkg:npm/jest-get-type@27.3.1", + "pkg:npm/jest-get-type@27.5.1", + "pkg:npm/jest-haste-map@27.3.1", + "pkg:npm/jest-haste-map@27.5.1", + "pkg:npm/jest-jasmine2@27.5.1", + "pkg:npm/jest-leak-detector@27.5.1", + "pkg:npm/jest-matcher-utils@27.5.1", + "pkg:npm/jest-message-util@27.5.1", + "pkg:npm/jest-mock@27.5.1", + "pkg:npm/jest-pnp-resolver@1.2.2", + "pkg:npm/jest-regex-util@27.0.6", + "pkg:npm/jest-regex-util@27.5.1", + "pkg:npm/jest-resolve-dependencies@27.5.1", + "pkg:npm/jest-resolve@27.5.1", + "pkg:npm/jest-runner@27.5.1", + "pkg:npm/jest-runtime@27.5.1", + "pkg:npm/jest-serializer@27.0.6", + "pkg:npm/jest-serializer@27.5.1", + "pkg:npm/jest-snapshot@27.5.1", + "pkg:npm/jest-util@27.3.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/jest-validate@27.5.1", + "pkg:npm/jest-watcher@27.5.1", + "pkg:npm/jest-worker@26.6.2", + "pkg:npm/jest-worker@27.3.1", + "pkg:npm/jest-worker@27.5.1", + "pkg:npm/jest@27.3.1", + "pkg:npm/jquery@3.6.0", + "pkg:npm/js-levenshtein@1.1.6", + "pkg:npm/js-sha3@0.8.0", + "pkg:npm/js-tokens@4.0.0", + "pkg:npm/js-yaml@3.14.1", + "pkg:npm/js-yaml@4.1.0", + "pkg:npm/jsdom@16.7.0", + "pkg:npm/jsesc@0.5.0", + "pkg:npm/jsesc@2.5.2", + "pkg:npm/jshint@2.13.4", + "pkg:npm/json-parse-even-better-errors@2.3.1", + "pkg:npm/json-pointer@0.6.2", + "pkg:npm/json-schema-traverse@0.4.1", + "pkg:npm/json-schema-traverse@1.0.0", + "pkg:npm/json-stable-stringify-without-jsonify@1.0.1", + "pkg:npm/json-stringify-safe@5.0.1", + "pkg:npm/json5@1.0.2", + "pkg:npm/json5@2.2.1", + "pkg:npm/jsx-ast-utils@3.2.1", + "pkg:npm/jsx-ast-utils@3.3.0", + "pkg:npm/kind-of@6.0.3", + "pkg:npm/kleur@3.0.3", + "pkg:npm/kleur@4.1.5", + "pkg:npm/known-css-properties@0.27.0", + "pkg:npm/language-subtag-registry@0.3.21", + "pkg:npm/language-tags@1.0.5", + "pkg:npm/leven@3.1.0", + "pkg:npm/levn@0.3.0", + "pkg:npm/levn@0.4.1", + "pkg:npm/lilconfig@2.0.5", + "pkg:npm/lines-and-columns@1.1.6", + "pkg:npm/loader-runner@4.3.0", + "pkg:npm/loader-utils@2.0.4", + "pkg:npm/locate-path@5.0.0", + "pkg:npm/locate-path@6.0.0", + "pkg:npm/lodash.curry@4.1.1", + "pkg:npm/lodash.debounce@4.0.8", + "pkg:npm/lodash.difference@4.5.0", + "pkg:npm/lodash.flow@3.5.0", + "pkg:npm/lodash.isequal@4.5.0", + "pkg:npm/lodash.memoize@4.1.2", + "pkg:npm/lodash.merge@4.6.2", + "pkg:npm/lodash.mergewith@4.6.2", + "pkg:npm/lodash.set@4.3.2", + "pkg:npm/lodash.truncate@4.4.2", + "pkg:npm/lodash.uniq@4.5.0", + "pkg:npm/lodash@4.17.21", + "pkg:npm/longest-streak@3.1.0", + "pkg:npm/loose-envify@1.4.0", + "pkg:npm/lowlight@1.20.0", + "pkg:npm/lru-cache@6.0.0", + "pkg:npm/lunr@2.3.9", + "pkg:npm/lz-string@1.4.4", + "pkg:npm/make-dir@3.1.0", + "pkg:npm/makeerror@1.0.12", + "pkg:npm/map-obj@1.0.1", + "pkg:npm/map-obj@4.3.0", + "pkg:npm/mark.js@8.11.1", + "pkg:npm/markdown-table@3.0.3", + "pkg:npm/marked@4.0.17", + "pkg:npm/match-sorter@6.3.1", + "pkg:npm/mathml-tag-names@2.1.3", + "pkg:npm/mdast-util-definitions@5.1.1", + "pkg:npm/mdast-util-find-and-replace@2.2.1", + "pkg:npm/mdast-util-from-markdown@1.2.0", + "pkg:npm/mdast-util-gfm-autolink-literal@1.0.2", + "pkg:npm/mdast-util-gfm-footnote@1.0.1", + "pkg:npm/mdast-util-gfm-strikethrough@1.0.2", + "pkg:npm/mdast-util-gfm-table@1.0.6", + "pkg:npm/mdast-util-gfm-task-list-item@1.0.1", + "pkg:npm/mdast-util-gfm@2.0.1", + "pkg:npm/mdast-util-to-hast@12.2.4", + "pkg:npm/mdast-util-to-markdown@1.3.0", + "pkg:npm/mdast-util-to-string@3.1.0", + "pkg:npm/mdn-data@2.0.14", + "pkg:npm/mdn-data@2.0.30", + "pkg:npm/memoize-one@5.2.1", + "pkg:npm/meow@10.1.5", + "pkg:npm/merge-stream@2.0.0", + "pkg:npm/merge2@1.4.1", + "pkg:npm/micromark-core-commonmark@1.0.6", + "pkg:npm/micromark-extension-gfm-autolink-literal@1.0.3", + "pkg:npm/micromark-extension-gfm-footnote@1.0.4", + "pkg:npm/micromark-extension-gfm-strikethrough@1.0.4", + "pkg:npm/micromark-extension-gfm-table@1.0.5", + "pkg:npm/micromark-extension-gfm-tagfilter@1.0.1", + "pkg:npm/micromark-extension-gfm-task-list-item@1.0.3", + "pkg:npm/micromark-extension-gfm@2.0.1", + "pkg:npm/micromark-factory-destination@1.0.0", + "pkg:npm/micromark-factory-label@1.0.2", + "pkg:npm/micromark-factory-space@1.0.0", + "pkg:npm/micromark-factory-title@1.0.2", + "pkg:npm/micromark-factory-whitespace@1.0.0", + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-chunked@1.0.0", + "pkg:npm/micromark-util-classify-character@1.0.0", + "pkg:npm/micromark-util-combine-extensions@1.0.0", + "pkg:npm/micromark-util-decode-numeric-character-reference@1.0.0", + "pkg:npm/micromark-util-decode-string@1.0.2", + "pkg:npm/micromark-util-encode@1.0.1", + "pkg:npm/micromark-util-html-tag-name@1.1.0", + "pkg:npm/micromark-util-normalize-identifier@1.0.0", + "pkg:npm/micromark-util-resolve-all@1.0.0", + "pkg:npm/micromark-util-sanitize-uri@1.1.0", + "pkg:npm/micromark-util-subtokenize@1.0.2", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/micromark@3.1.0", + "pkg:npm/micromatch@4.0.5", + "pkg:npm/microseconds@0.2.0", + "pkg:npm/mime-db@1.52.0", + "pkg:npm/mime-types@2.1.35", + "pkg:npm/mime@3.0.0", + "pkg:npm/mimic-fn@2.1.0", + "pkg:npm/min-indent@1.0.1", + "pkg:npm/mini-css-extract-plugin@1.6.2", + "pkg:npm/minimatch@3.0.8", + "pkg:npm/minimatch@3.1.2", + "pkg:npm/minimatch@5.1.0", + "pkg:npm/minimist-options@4.1.0", + "pkg:npm/minimist@1.2.7", + "pkg:npm/minipass-collect@1.0.2", + "pkg:npm/minipass-flush@1.0.5", + "pkg:npm/minipass-pipeline@1.2.4", + "pkg:npm/minipass@3.1.3", + "pkg:npm/minizlib@2.1.2", + "pkg:npm/mkdirp@1.0.4", + "pkg:npm/mobx-react-lite@3.2.0", + "pkg:npm/mobx-react@7.2.0", + "pkg:npm/moment-locales-webpack-plugin@1.2.0", + "pkg:npm/moment-timezone@0.4.1", + "pkg:npm/moment-timezone@0.5.43", + "pkg:npm/moment@2.29.4", + "pkg:npm/moo-color@1.0.3", + "pkg:npm/mri@1.2.0", + "pkg:npm/ms@2.1.2", + "pkg:npm/ms@2.1.3", + "pkg:npm/nano-time@1.0.0", + "pkg:npm/nanoid@3.3.6", + "pkg:npm/natural-compare@1.4.0", + "pkg:npm/needle@2.9.1", + "pkg:npm/neo-async@2.6.2", + "pkg:npm/nock@13.2.4", + "pkg:npm/node-fetch-h2@2.3.0", + "pkg:npm/node-fetch@2.6.7", + "pkg:npm/node-int64@0.4.0", + "pkg:npm/node-modules-regexp@1.0.0", + "pkg:npm/node-readfiles@0.2.0", + "pkg:npm/node-releases@2.0.5", + "pkg:npm/normalize-package-data@3.0.3", + "pkg:npm/normalize-path@3.0.0", + "pkg:npm/normalize-registry-url@1.0.0", + "pkg:npm/normalize-url@6.1.0", + "pkg:npm/npm-run-path@4.0.1", + "pkg:npm/nth-check@2.1.1", + "pkg:npm/nvd3@1.8.6", + "pkg:npm/nwsapi@2.2.0", + "pkg:npm/oas-kit-common@1.0.8", + "pkg:npm/oas-linter@3.2.2", + "pkg:npm/oas-resolver@2.5.5", + "pkg:npm/oas-schema-walker@1.1.5", + "pkg:npm/oas-validator@5.0.6", + "pkg:npm/object-assign@4.1.1", + "pkg:npm/object-inspect@1.10.3", + "pkg:npm/object-inspect@1.11.0", + "pkg:npm/object-inspect@1.12.2", + "pkg:npm/object-inspect@1.12.3", + "pkg:npm/object-keys@1.1.1", + "pkg:npm/object.assign@4.1.2", + "pkg:npm/object.assign@4.1.4", + "pkg:npm/object.entries@1.1.5", + "pkg:npm/object.fromentries@2.0.5", + "pkg:npm/object.hasown@1.1.1", + "pkg:npm/object.values@1.1.5", + "pkg:npm/object.values@1.1.6", + "pkg:npm/oblivious-set@1.0.0", + "pkg:npm/once@1.4.0", + "pkg:npm/onetime@5.1.2", + "pkg:npm/openapi-sampler@1.3.0", + "pkg:npm/openapi-typescript@5.4.1", + "pkg:npm/optionator@0.8.3", + "pkg:npm/optionator@0.9.1", + "pkg:npm/p-limit@2.3.0", + "pkg:npm/p-limit@3.1.0", + "pkg:npm/p-locate@4.1.0", + "pkg:npm/p-locate@5.0.0", + "pkg:npm/p-map@2.1.0", + "pkg:npm/p-map@4.0.0", + "pkg:npm/p-try@2.2.0", + "pkg:npm/parent-module@1.0.1", + "pkg:npm/parse-entities@2.0.0", + "pkg:npm/parse-json@5.2.0", + "pkg:npm/parse5@6.0.1", + "pkg:npm/path-browserify@1.0.1", + "pkg:npm/path-exists@4.0.0", + "pkg:npm/path-is-absolute@1.0.1", + "pkg:npm/path-is-inside@1.0.2", + "pkg:npm/path-key@3.1.1", + "pkg:npm/path-parse@1.0.7", + "pkg:npm/path-type@4.0.0", + "pkg:npm/perfect-scrollbar@1.5.1", + "pkg:npm/picocolors@1.0.0", + "pkg:npm/picomatch@2.3.0", + "pkg:npm/picomatch@2.3.1", + "pkg:npm/pify@2.3.0", + "pkg:npm/pify@4.0.1", + "pkg:npm/pinkie-promise@2.0.1", + "pkg:npm/pinkie@2.0.4", + "pkg:npm/pirates@4.0.1", + "pkg:npm/pirates@4.0.5", + "pkg:npm/pkg-dir@4.2.0", + "pkg:npm/pluralize@8.0.0", + "pkg:npm/polished@4.1.3", + "pkg:npm/popmotion@11.0.3", + "pkg:npm/postcss-calc@8.2.4", + "pkg:npm/postcss-colormin@5.3.0", + "pkg:npm/postcss-convert-values@5.1.2", + "pkg:npm/postcss-discard-comments@5.1.2", + "pkg:npm/postcss-discard-duplicates@5.1.0", + "pkg:npm/postcss-discard-empty@5.1.1", + "pkg:npm/postcss-discard-overridden@5.1.0", + "pkg:npm/postcss-merge-longhand@5.1.5", + "pkg:npm/postcss-merge-rules@5.1.2", + "pkg:npm/postcss-minify-font-values@5.1.0", + "pkg:npm/postcss-minify-gradients@5.1.1", + "pkg:npm/postcss-minify-params@5.1.3", + "pkg:npm/postcss-minify-selectors@5.2.1", + "pkg:npm/postcss-modules-extract-imports@3.0.0", + "pkg:npm/postcss-modules-local-by-default@4.0.0", + "pkg:npm/postcss-modules-scope@3.0.0", + "pkg:npm/postcss-modules-values@4.0.0", + "pkg:npm/postcss-normalize-charset@5.1.0", + "pkg:npm/postcss-normalize-display-values@5.1.0", + "pkg:npm/postcss-normalize-positions@5.1.0", + "pkg:npm/postcss-normalize-repeat-style@5.1.0", + "pkg:npm/postcss-normalize-string@5.1.0", + "pkg:npm/postcss-normalize-timing-functions@5.1.0", + "pkg:npm/postcss-normalize-unicode@5.1.0", + "pkg:npm/postcss-normalize-url@5.1.0", + "pkg:npm/postcss-normalize-whitespace@5.1.1", + "pkg:npm/postcss-ordered-values@5.1.2", + "pkg:npm/postcss-reduce-initial@5.1.0", + "pkg:npm/postcss-reduce-transforms@5.1.0", + "pkg:npm/postcss-resolve-nested-selector@0.1.1", + "pkg:npm/postcss-safe-parser@6.0.0", + "pkg:npm/postcss-selector-parser@6.0.13", + "pkg:npm/postcss-svgo@5.1.0", + "pkg:npm/postcss-unique-selectors@5.1.1", + "pkg:npm/postcss-value-parser@4.2.0", + "pkg:npm/postcss@8.4.31", + "pkg:npm/prelude-ls@1.1.2", + "pkg:npm/prelude-ls@1.2.1", + "pkg:npm/prettier@2.7.1", + "pkg:npm/prettier@2.8.4", + "pkg:npm/pretty-format@27.3.1", + "pkg:npm/pretty-format@27.5.1", + "pkg:npm/prismjs@1.27.0", + "pkg:npm/prismjs@1.28.0", + "pkg:npm/promise-inflight@1.0.1", + "pkg:npm/promise@7.3.1", + "pkg:npm/prompts@2.4.2", + "pkg:npm/prop-types@15.7.2", + "pkg:npm/prop-types@15.8.1", + "pkg:npm/propagate@2.0.1", + "pkg:npm/property-information@5.6.0", + "pkg:npm/property-information@6.2.0", + "pkg:npm/proxy-from-env@1.1.0", + "pkg:npm/psl@1.8.0", + "pkg:npm/punycode@2.1.1", + "pkg:npm/pure-color@1.3.0", + "pkg:npm/querystringify@2.2.0", + "pkg:npm/queue-microtask@1.2.3", + "pkg:npm/quick-lru@5.1.1", + "pkg:npm/randombytes@2.1.0", + "pkg:npm/react-base16-styling@0.6.0", + "pkg:npm/react-clientside-effect@1.2.6", + "pkg:npm/react-dom@18.1.0", + "pkg:npm/react-fast-compare@3.2.0", + "pkg:npm/react-focus-lock@2.9.4", + "pkg:npm/react-icons@4.9.0", + "pkg:npm/react-is@16.13.1", + "pkg:npm/react-is@17.0.2", + "pkg:npm/react-is@18.2.0", + "pkg:npm/react-json-view@1.21.3", + "pkg:npm/react-lifecycles-compat@3.0.4", + "pkg:npm/react-markdown@8.0.4", + "pkg:npm/react-query@3.39.1", + "pkg:npm/react-remove-scroll-bar@2.3.3", + "pkg:npm/react-remove-scroll@2.5.5", + "pkg:npm/react-router-dom@6.3.0", + "pkg:npm/react-router@6.3.0", + "pkg:npm/react-select@5.3.2", + "pkg:npm/react-style-singleton@2.2.1", + "pkg:npm/react-syntax-highlighter@15.5.0", + "pkg:npm/react-table@7.8.0", + "pkg:npm/react-tabs@3.2.2", + "pkg:npm/react-textarea-autosize@8.3.4", + "pkg:npm/react-transition-group@4.4.2", + "pkg:npm/react@18.1.0", + "pkg:npm/reactflow@11.7.4", + "pkg:npm/read-pkg-up@8.0.0", + "pkg:npm/read-pkg@6.0.0", + "pkg:npm/readable-stream@1.1.13", + "pkg:npm/rechoir@0.7.1", + "pkg:npm/redent@3.0.0", + "pkg:npm/redent@4.0.0", + "pkg:npm/redoc@2.0.0-rc.72", + "pkg:npm/refractor@3.6.0", + "pkg:npm/reftools@1.1.8", + "pkg:npm/regenerate-unicode-properties@9.0.0", + "pkg:npm/regenerate@1.4.2", + "pkg:npm/regenerator-runtime@0.13.11", + "pkg:npm/regenerator-runtime@0.13.9", + "pkg:npm/regenerator-transform@0.14.5", + "pkg:npm/regexp.prototype.flags@1.4.3", + "pkg:npm/regexpp@3.2.0", + "pkg:npm/regexpu-core@4.8.0", + "pkg:npm/regjsgen@0.5.2", + "pkg:npm/regjsparser@0.7.0", + "pkg:npm/remark-gfm@3.0.1", + "pkg:npm/remark-parse@10.0.1", + "pkg:npm/remark-rehype@10.1.0", + "pkg:npm/remove-accents@0.4.2", + "pkg:npm/require-directory@2.1.1", + "pkg:npm/require-from-string@2.0.2", + "pkg:npm/requires-port@1.0.0", + "pkg:npm/resolve-cwd@3.0.0", + "pkg:npm/resolve-from@4.0.0", + "pkg:npm/resolve-from@5.0.0", + "pkg:npm/resolve.exports@1.1.0", + "pkg:npm/resolve@1.20.0", + "pkg:npm/resolve@1.22.0", + "pkg:npm/resolve@1.22.2", + "pkg:npm/resolve@2.0.0-next.3", + "pkg:npm/reusify@1.0.4", + "pkg:npm/rimraf@2.7.1", + "pkg:npm/rimraf@3.0.2", + "pkg:npm/run-parallel@1.2.0", + "pkg:npm/rw@1.3.3", + "pkg:npm/sade@1.8.1", + "pkg:npm/safe-buffer@5.1.2", + "pkg:npm/safe-buffer@5.2.1", + "pkg:npm/safe-regex-test@1.0.0", + "pkg:npm/safer-buffer@2.1.2", + "pkg:npm/sax@1.2.4", + "pkg:npm/saxes@5.0.1", + "pkg:npm/scheduler@0.22.0", + "pkg:npm/schema-utils@2.7.1", + "pkg:npm/schema-utils@3.1.1", + "pkg:npm/schema-utils@4.0.0", + "pkg:npm/semver@6.3.1", + "pkg:npm/semver@7.0.0", + "pkg:npm/semver@7.5.4", + "pkg:npm/serialize-javascript@5.0.1", + "pkg:npm/serialize-javascript@6.0.0", + "pkg:npm/setimmediate@1.0.5", + "pkg:npm/shallow-clone@3.0.1", + "pkg:npm/shebang-command@2.0.0", + "pkg:npm/shebang-regex@3.0.0", + "pkg:npm/should-equal@2.0.0", + "pkg:npm/should-format@3.0.3", + "pkg:npm/should-type-adaptors@1.1.0", + "pkg:npm/should-type@1.4.0", + "pkg:npm/should-util@1.0.1", + "pkg:npm/should@13.2.3", + "pkg:npm/side-channel@1.0.4", + "pkg:npm/signal-exit@3.0.3", + "pkg:npm/signal-exit@3.0.5", + "pkg:npm/signal-exit@4.0.2", + "pkg:npm/simple-swizzle@0.2.2", + "pkg:npm/sisteransi@1.0.5", + "pkg:npm/slash@3.0.0", + "pkg:npm/slice-ansi@4.0.0", + "pkg:npm/slugify@1.4.7", + "pkg:npm/source-list-map@2.0.1", + "pkg:npm/source-map-js@1.0.2", + "pkg:npm/source-map-resolve@0.6.0", + "pkg:npm/source-map-support@0.5.21", + "pkg:npm/source-map@0.5.7", + "pkg:npm/source-map@0.6.1", + "pkg:npm/source-map@0.7.3", + "pkg:npm/space-separated-tokens@1.1.5", + "pkg:npm/space-separated-tokens@2.0.2", + "pkg:npm/spdx-correct@3.1.1", + "pkg:npm/spdx-exceptions@2.3.0", + "pkg:npm/spdx-expression-parse@3.0.1", + "pkg:npm/spdx-expression-validate@2.0.0", + "pkg:npm/spdx-license-ids@3.0.9", + "pkg:npm/sprintf-js@1.0.3", + "pkg:npm/ssri@8.0.1", + "pkg:npm/stable@0.1.8", + "pkg:npm/stack-utils@2.0.5", + "pkg:npm/stickyfill@1.1.1", + "pkg:npm/string-length@4.0.2", + "pkg:npm/string-width@4.2.3", + "pkg:npm/string.prototype.matchall@4.0.7", + "pkg:npm/string.prototype.trim@1.2.7", + "pkg:npm/string.prototype.trimend@1.0.4", + "pkg:npm/string.prototype.trimend@1.0.5", + "pkg:npm/string.prototype.trimend@1.0.6", + "pkg:npm/string.prototype.trimstart@1.0.4", + "pkg:npm/string.prototype.trimstart@1.0.5", + "pkg:npm/string.prototype.trimstart@1.0.6", + "pkg:npm/string_decoder@0.10.31", + "pkg:npm/strip-ansi@6.0.1", + "pkg:npm/strip-bom@3.0.0", + "pkg:npm/strip-bom@4.0.0", + "pkg:npm/strip-comments@2.0.1", + "pkg:npm/strip-final-newline@2.0.0", + "pkg:npm/strip-indent@3.0.0", + "pkg:npm/strip-indent@4.0.0", + "pkg:npm/strip-json-comments@1.0.4", + "pkg:npm/strip-json-comments@3.1.1", + "pkg:npm/style-loader@1.3.0", + "pkg:npm/style-loader@3.3.1", + "pkg:npm/style-search@0.1.0", + "pkg:npm/style-to-object@0.3.0", + "pkg:npm/style-value-types@5.0.0", + "pkg:npm/stylehacks@5.1.0", + "pkg:npm/stylelint-config-prettier@9.0.5", + "pkg:npm/stylelint-config-recommended@3.0.0", + "pkg:npm/stylelint-config-standard@20.0.0", + "pkg:npm/stylelint@15.10.1", + "pkg:npm/stylis@4.0.10", + "pkg:npm/stylis@4.0.13", + "pkg:npm/supports-color@5.5.0", + "pkg:npm/supports-color@7.2.0", + "pkg:npm/supports-color@8.1.1", + "pkg:npm/supports-hyperlinks@2.2.0", + "pkg:npm/supports-hyperlinks@3.0.0", + "pkg:npm/supports-preserve-symlinks-flag@1.0.0", + "pkg:npm/svg-tags@1.0.0", + "pkg:npm/svgo@2.8.0", + "pkg:npm/swagger-ui-dist@4.1.3", + "pkg:npm/swagger2openapi@7.0.6", + "pkg:npm/symbol-tree@3.2.4", + "pkg:npm/table@6.8.1", + "pkg:npm/tapable@2.2.1", + "pkg:npm/tar@6.1.11", + "pkg:npm/terminal-link@2.1.1", + "pkg:npm/terser-webpack-plugin@4.2.3", + "pkg:npm/terser-webpack-plugin@5.3.3", + "pkg:npm/terser@5.14.2", + "pkg:npm/test-exclude@6.0.0", + "pkg:npm/text-table@0.2.0", + "pkg:npm/throat@6.0.1", + "pkg:npm/tiny-glob@0.2.9", + "pkg:npm/tiny-invariant@1.2.0", + "pkg:npm/tmpl@1.0.5", + "pkg:npm/to-fast-properties@2.0.0", + "pkg:npm/to-regex-range@5.0.1", + "pkg:npm/toggle-selection@1.0.6", + "pkg:npm/tough-cookie@4.1.3", + "pkg:npm/tr46@0.0.3", + "pkg:npm/tr46@2.1.0", + "pkg:npm/trim-lines@3.0.1", + "pkg:npm/trim-newlines@4.1.1", + "pkg:npm/trough@2.1.0", + "pkg:npm/tsconfig-paths@3.14.2", + "pkg:npm/tslib@1.14.1", + "pkg:npm/tslib@2.3.0", + "pkg:npm/tslib@2.3.1", + "pkg:npm/tslib@2.4.0", + "pkg:npm/tsutils@3.21.0", + "pkg:npm/type-check@0.3.2", + "pkg:npm/type-check@0.4.0", + "pkg:npm/type-detect@4.0.8", + "pkg:npm/type-fest@0.20.2", + "pkg:npm/type-fest@0.21.3", + "pkg:npm/type-fest@1.4.0", + "pkg:npm/type-fest@2.17.0", + "pkg:npm/typed-array-length@1.0.4", + "pkg:npm/typedarray-to-buffer@3.1.5", + "pkg:npm/typescript@4.7.3", + "pkg:npm/ua-parser-js@0.7.33", + "pkg:npm/unbox-primitive@1.0.1", + "pkg:npm/unbox-primitive@1.0.2", + "pkg:npm/undici@5.26.3", + "pkg:npm/unicode-canonical-property-names-ecmascript@2.0.0", + "pkg:npm/unicode-match-property-ecmascript@2.0.0", + "pkg:npm/unicode-match-property-value-ecmascript@2.0.0", + "pkg:npm/unicode-property-aliases-ecmascript@2.0.0", + "pkg:npm/unified@10.1.2", + "pkg:npm/unique-filename@1.1.1", + "pkg:npm/unique-slug@2.0.2", + "pkg:npm/unist-builder@3.0.0", + "pkg:npm/unist-util-generated@2.0.0", + "pkg:npm/unist-util-is@5.1.1", + "pkg:npm/unist-util-position@4.0.3", + "pkg:npm/unist-util-stringify-position@3.0.2", + "pkg:npm/unist-util-visit-parents@5.1.1", + "pkg:npm/unist-util-visit@4.1.1", + "pkg:npm/universalify@0.2.0", + "pkg:npm/unload@2.2.0", + "pkg:npm/uri-js@4.4.1", + "pkg:npm/url-loader@4.1.0", + "pkg:npm/url-parse@1.5.10", + "pkg:npm/url-search-params-polyfill@8.1.1", + "pkg:npm/url-template@2.0.8", + "pkg:npm/use-callback-ref@1.3.0", + "pkg:npm/use-composed-ref@1.3.0", + "pkg:npm/use-isomorphic-layout-effect@1.1.2", + "pkg:npm/use-latest@1.2.1", + "pkg:npm/use-sidecar@1.1.2", + "pkg:npm/use-sync-external-store@1.2.0", + "pkg:npm/util-deprecate@1.0.2", + "pkg:npm/uvu@0.5.6", + "pkg:npm/v8-compile-cache@2.3.0", + "pkg:npm/v8-to-istanbul@8.1.0", + "pkg:npm/validate-npm-package-license@3.0.4", + "pkg:npm/validator@13.9.0", + "pkg:npm/vfile-message@3.1.3", + "pkg:npm/vfile@5.3.6", + "pkg:npm/w3c-hr-time@1.0.2", + "pkg:npm/w3c-xmlserializer@2.0.0", + "pkg:npm/walker@1.0.8", + "pkg:npm/watchpack@2.4.0", + "pkg:npm/web-worker@1.2.0", + "pkg:npm/webidl-conversions@3.0.1", + "pkg:npm/webidl-conversions@5.0.0", + "pkg:npm/webidl-conversions@6.1.0", + "pkg:npm/webpack-cli@4.10.0", + "pkg:npm/webpack-license-plugin@4.2.2", + "pkg:npm/webpack-manifest-plugin@4.1.1", + "pkg:npm/webpack-merge@5.8.0", + "pkg:npm/webpack-sources@1.4.3", + "pkg:npm/webpack-sources@2.3.1", + "pkg:npm/webpack-sources@3.2.3", + "pkg:npm/webpack@5.76.0", + "pkg:npm/whatwg-encoding@1.0.5", + "pkg:npm/whatwg-mimetype@2.3.0", + "pkg:npm/whatwg-url@5.0.0", + "pkg:npm/whatwg-url@8.7.0", + "pkg:npm/which-boxed-primitive@1.0.2", + "pkg:npm/which-typed-array@1.1.9", + "pkg:npm/which@1.3.1", + "pkg:npm/which@2.0.2", + "pkg:npm/wildcard@2.0.0", + "pkg:npm/word-wrap@1.2.4", + "pkg:npm/wrap-ansi@7.0.0", + "pkg:npm/wrappy@1.0.2", + "pkg:npm/write-file-atomic@3.0.3", + "pkg:npm/write-file-atomic@5.0.1", + "pkg:npm/ws@7.5.5", + "pkg:npm/xml-name-validator@3.0.0", + "pkg:npm/xmlchars@2.2.0", + "pkg:npm/xtend@4.0.2", + "pkg:npm/y18n@5.0.8", + "pkg:npm/yallist@4.0.0", + "pkg:npm/yaml-ast-parser@0.0.43", + "pkg:npm/yaml@1.10.2", + "pkg:npm/yargs-parser@20.2.7", + "pkg:npm/yargs-parser@20.2.9", + "pkg:npm/yargs-parser@21.0.1", + "pkg:npm/yargs@16.2.0", + "pkg:npm/yargs@17.0.1", + "pkg:npm/yocto-queue@0.1.0", + "pkg:npm/zrender@5.4.3", + "pkg:npm/zustand@4.3.9", + "pkg:npm/zwitch@2.0.4" + ] + }, + { + "ref": "pkg:pypi/python3.10@latest", + "dependsOn": [] + } + ] +} diff --git a/samples/apache_airflow-sbom-2.8.0-python3.10.json b/samples/apache_airflow-sbom-2.8.0-python3.10.json new file mode 100644 index 0000000..932e414 --- /dev/null +++ b/samples/apache_airflow-sbom-2.8.0-python3.10.json @@ -0,0 +1,69168 @@ +{ + "bomFormat": "CycloneDX", + "specVersion": "1.5", + "serialNumber": "urn:uuid:341876ef-52e8-4318-9e85-436986ca2a27", + "version": 1, + "metadata": { + "timestamp": "2023-12-18T17:45:47.699Z", + "tools": { + "components": [ + { + "group": "@cyclonedx", + "name": "cdxgen", + "version": "9.9.9", + "purl": "pkg:npm/%40cyclonedx/cdxgen@9.9.9", + "type": "application", + "bom-ref": "pkg:npm/@cyclonedx/cdxgen@9.9.9", + "author": "OWASP Foundation", + "publisher": "OWASP Foundation" + } + ] + }, + "authors": [ + { + "name": "OWASP Foundation" + } + ], + "component": { + "group": "", + "name": "python3.10", + "type": "application", + "bom-ref": "pkg:npm/python3.10", + "purl": "pkg:npm/python3.10", + "components": [] + } + }, + "components": [ + { + "group": "@ampproject", + "name": "remapping", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0289708ddec7482d8fc98d1f0e3ff003f1229904f81df127158369e6cf42425add872bd64edbd9e58ceb50fbba47aff58ca894971bbc6d48647529ca1cd00730" + } + ], + "purl": "pkg:npm/%40ampproject/remapping@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/@ampproject/remapping@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@ampproject", + "name": "remapping", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a919a38fc9e3f6a98b4d05d799a47571c93751749130fadbb0b2406ac66917eb77ae223bd415de77979b20e630427b7291e66e863b1dc1e11cf41c47e49736eb" + } + ], + "purl": "pkg:npm/%40ampproject/remapping@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/@ampproject/remapping@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "code-frame", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "f69cc3ab273a38b0daa9efb36c00a01646fa7ca30d1ba08e6caa676170a146cbd81b211d73b080d816aa78e33ebceb424b99dd98989c3c984a03061123a51f17" + } + ], + "purl": "pkg:npm/%40babel/code-frame@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/code-frame@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "code-frame", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "205e0438c115f9b7d8c0e98dc46cd29e347612642877b7f55173a964cde5e22e28e10370ce3b4902efc7c5d8c7ab469806f76a32e4046357a0d27a96f593ce44" + } + ], + "purl": "pkg:npm/%40babel/code-frame@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/code-frame@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "code-frame", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "8805ea527f0821e05335def6c6c16581a5c790c04cb7acb81c9a75b4868ae3ae4258b4ff7c6d5aa81ef292bf798071e69417466c579659fc81e0d249d2799e22" + } + ], + "purl": "pkg:npm/%40babel/code-frame@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/code-frame@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "code-frame", + "version": "7.22.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e4b6e856949e60fb74c95dce6ea5df4ab351eeb5202b8a4ea37f67808d817220e7f87a3dd137ed7ce1c65bcc3bdb3e7b932485213ca289137708b184e2013df" + } + ], + "purl": "pkg:npm/%40babel/code-frame@7.22.13", + "type": "library", + "bom-ref": "pkg:npm/@babel/code-frame@7.22.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "compat-data", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0c68edd9066c7b948677d9df392a8ee162c9f0d37fa079228db5db3ebc6ea093b7a083c92f74dc899b3d157f9c38736263d13d974a292fc83b0662dedd3fbd7b" + } + ], + "purl": "pkg:npm/%40babel/compat-data@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/compat-data@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "compat-data", + "version": "7.17.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfdd9bc939691965ccbf815bc96c37b0067f16b5bf0ebc2a2c65e9cb499bc8d7bd4daaafd6683dc8e379fe8d1c9ebf176029054d96c2d5e57e73e2c044e82b9e" + } + ], + "purl": "pkg:npm/%40babel/compat-data@7.17.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/compat-data@7.17.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "compat-data", + "version": "7.18.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "071844e343d5081c55109b1206107a516c80baa251c46b00c3c05d1cc27700a1b275cc2e596e2438edc79aa05001d72afce3fefc39535712efb02cd14e766e1a" + } + ], + "purl": "pkg:npm/%40babel/compat-data@7.18.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/compat-data@7.18.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "core", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "998644bec8414471ac2008b21f93f30854c27db59fa186cefe3712757412510bb5fe95b4c4364050feca11cdf685ea964c07c01e157d8f5bc7f126afee5f8935" + } + ], + "purl": "pkg:npm/%40babel/core@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/core@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "core", + "version": "7.18.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "30663cbe0dc3c4c9dcb70d0b76f484a233acba673bd20d2dd7c80dc9474066a07546977506aa3fb2f1c6bedf9427a25c197f8321e906143c71216a1f0712c29d" + } + ], + "purl": "pkg:npm/%40babel/core@7.18.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/core@7.18.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "core", + "version": "7.17.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "477547e46e365520e89511f250ee15d9c7da83c587719cb176ae59fe6f17c9bf76956fc4ae6ffa90cf97b511467f732e96b7b79af7a78b63477c4530b3cc12bf" + } + ], + "purl": "pkg:npm/%40babel/core@7.17.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/core@7.17.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "eslint-parser", + "version": "7.18.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "a05418904f12b87d78fae479d4954099dab02985c6463117c7bb3e5a26a0563a90f873c4fa79f0c85daa9551bc7af52c50798f700fba6173040db22113241ce4" + } + ], + "purl": "pkg:npm/%40babel/eslint-parser@7.18.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/eslint-parser@7.18.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "generator", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "451f215027d1427f63f513ca1155e8f4b8b0a312cf627ea135996f50e47cb529dac650f4a74fa56b4d193fdfd29d1b7a1dc84aafe5f47cedabf2fac44e22467b" + } + ], + "purl": "pkg:npm/%40babel/generator@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/generator@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "generator", + "version": "7.17.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2373a68afe8518e0b6f5db6566191f5ceea98249ae9094a54f6e908d5bd2d431997bf37349508f1b8d57d2d4b6d68664258968bdf8fda835a028ff829f86d7c7" + } + ], + "purl": "pkg:npm/%40babel/generator@7.17.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/generator@7.17.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "generator", + "version": "7.18.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "5b5946e6f53016f7cc77c1d55ea75f6ee1bb46e692ad30820fc725f1f3fcc0e8af75bb5b220d836f721651c82f7f129b6e7e990466115bf664d4c2302b8f6683" + } + ], + "purl": "pkg:npm/%40babel/generator@7.18.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/generator@7.18.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "generator", + "version": "7.23.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "94df3941147ee486d8acc58ce98e2913f9e8690b60e29362a9e3465fad1ea8e7e8ea0b448fabb0fc96a07a507cbd5ced49ded1e8ce67d7e3d09036c76c1454e2" + } + ], + "purl": "pkg:npm/%40babel/generator@7.23.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/generator@7.23.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-annotate-as-pure", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "22d99817dbd1e3303c701c83a1c634e68d0b194929d7385b4d0387d4d172979c5712a95325008426389eae2c3e685a71a35eacc0cc549d488a4bb6bfaf8bed1e" + } + ], + "purl": "pkg:npm/%40babel/helper-annotate-as-pure@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-annotate-as-pure", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "b3ab76c3f20f4154c0113d478ada28c11197a285fc98282db8fe75f79c03fd024f57ac188e9ba308617b26e30e0d55f664024e7f5193e834fd307119bcb3854b" + } + ], + "purl": "pkg:npm/%40babel/helper-annotate-as-pure@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-annotate-as-pure@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-builder-binary-assignment-operator-visitor", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f4aba578b4f47bbef015492ee93524a99cc213298176db90436ecc8442b37fd50e389bb77188fdf24c9a0c0cf1a42ee557a0c689916e0bc5ea0ecabcfca97a69" + } + ], + "purl": "pkg:npm/%40babel/helper-builder-binary-assignment-operator-visitor@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-builder-binary-assignment-operator-visitor@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-compilation-targets", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4bb89a393d52625a8ad2c41a0a2db5457e3ed778667669f120402741407f7a1ec67809d18ce5204d8a4b9143a2457cc3fb2a20d49c4fd2ac80419ed9c55c4b56" + } + ], + "purl": "pkg:npm/%40babel/helper-compilation-targets@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-compilation-targets@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-compilation-targets", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "986a23070216730183eab7ea8115d59556263c0bfb78ea487a6506ddd1a70dd098e0f69eef444e8a3dd799fac7e856b58756a20f29698256d9ca4b5fcf2a3f84" + } + ], + "purl": "pkg:npm/%40babel/helper-compilation-targets@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-compilation-targets@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-compilation-targets", + "version": "7.18.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "b358e73e8b494bdb909f316d8995415317baec2b816baefda16147a716189d3a512ffd5f7e1c97e3847db98897a1afe92d7718f47da6a09b5ad2269a9e593fad" + } + ], + "purl": "pkg:npm/%40babel/helper-compilation-targets@7.18.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-compilation-targets@7.18.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-create-class-features-plugin", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5cbc16bea11aab5f731651793d380ea1de1b500f976e447858b40172dd5b9339b124607464425aa0a17873c7201fda01b420ee609f013f9341f6e1621203b940" + } + ], + "purl": "pkg:npm/%40babel/helper-create-class-features-plugin@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-create-class-features-plugin@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-create-class-features-plugin", + "version": "7.18.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a1f334c647d75edc9eb77b99d2d2b414751b3f91bb70a1e410d2cae24b4948b630bdeaef175d937a94aa6ec96776728292535de9cbfcbe2d399384bb955f43e" + } + ], + "purl": "pkg:npm/%40babel/helper-create-class-features-plugin@7.18.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-create-class-features-plugin@7.18.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-create-regexp-features-plugin", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "dc3c86d3300501929c3a9eda56bdf775dc24c49d19d09af957df72dc8ebdd1e60ba6e909b09bc06f34f2d5ec280aab0c2fc49b22b8c7d7825cfe7490e13bcd3c" + } + ], + "purl": "pkg:npm/%40babel/helper-create-regexp-features-plugin@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-create-regexp-features-plugin@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-define-polyfill-provider", + "version": "0.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "3aba4f67deecf9a3e2ea1da7d4e5f3761562b354864ac314d9a30780b70e29fb29e3fbf5356a71dc2593de5063e5e781abd70390f921f9809f745eced76b8d0d" + } + ], + "purl": "pkg:npm/%40babel/helper-define-polyfill-provider@0.2.4", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-define-polyfill-provider@0.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-environment-visitor", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "48b2dbd00027e8f9147807ca24208e97d7b5479de94251807dce32e17b8c4597ea78c60b13474cd4b321a9b180946418d257f0e7fa21a185807bd575ca26d16a" + } + ], + "purl": "pkg:npm/%40babel/helper-environment-visitor@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-environment-visitor@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-environment-visitor", + "version": "7.18.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "d78190296917f682733e2410eff277e854d7703e244a9f1e80a8cef6720d9522a21c84d103dabf47be2abbc4bdc6573f6ffca3b0922d41479e877c6718dd2fa1" + } + ], + "purl": "pkg:npm/%40babel/helper-environment-visitor@7.18.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-environment-visitor@7.18.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-environment-visitor", + "version": "7.22.20", + "hashes": [ + { + "alg": "SHA-512", + "content": "cdf79d488cc585ab7f8058567c7b605af95e7349ea07d604215ae9bb08ebb8b9577d44a703c7090749a21cac2a0e743b777d9a2a8db1b7cf3fc59a6dc316df84" + } + ], + "purl": "pkg:npm/%40babel/helper-environment-visitor@7.22.20", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-environment-visitor@7.22.20", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-explode-assignable-expression", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e4d922f10bd65b70e84ba60ff23339f3275d56fbe960e4631bc6dd5ebfa4d7522241d0de3628f0beef0f1af9e586baa0e7518bb04ad26864733b46098839a19" + } + ], + "purl": "pkg:npm/%40babel/helper-explode-assignable-expression@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/helper-explode-assignable-expression@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-function-name", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "059878984935c62da1e071635945d1417e40131e2bbda6711e06b1f6072374b59d923b18ecc2ade69d28b63b20e67a17c3ea41f9c94c0a3c3e684558003323a2" + } + ], + "purl": "pkg:npm/%40babel/helper-function-name@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-function-name@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-function-name", + "version": "7.17.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "edc462b06955b6256a674316d3fc850786ad82918b5841d45589dbe38f2164ae31faf8a1d183b95284b5d57218b5962a1ddd1d20f31d512bfcab92b82dd32722" + } + ], + "purl": "pkg:npm/%40babel/helper-function-name@7.17.9", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-function-name@7.17.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-function-name", + "version": "7.23.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "384ac4aacaf18d94c97226783a8f9ea19a9e5bd50888e72e60a449038640815f66c80fa93978619a97cd08a8c41ff6ae55f11854527acb54dce2bd1e200a6a8b" + } + ], + "purl": "pkg:npm/%40babel/helper-function-name@7.23.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-function-name@7.23.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-get-function-arity", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0120aab8d732c02d4d91887fcfb0a0a77c37d585bc6a88e360894d83855e2621e4ab23f803322faf8ab1ee96036f8fecf1872c656aaa392c6092f8d4cf59290d" + } + ], + "purl": "pkg:npm/%40babel/helper-get-function-arity@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-get-function-arity@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-hoist-variables", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d40665a5ace3511d0441942fdec81135f33d9845563cadcceaf95a95ccc0f8410270fcf75cf87a56995b12b2f95283290a1852724e700091ed8658f56d8a5c9a" + } + ], + "purl": "pkg:npm/%40babel/helper-hoist-variables@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-hoist-variables@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-hoist-variables", + "version": "7.22.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "c068e4f50655cef92703ac8a2145116fccd8de0ad709c399b7effb59ccbc3b6b9cb7186996650f90e76582836199d55e7b673dd895db7f5c6932d54d6dfa3147" + } + ], + "purl": "pkg:npm/%40babel/helper-hoist-variables@7.22.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-hoist-variables@7.22.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-member-expression-to-functions", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6ec8e50453ee593e885a1976f0476b43e813bd2be3e6da953f95de7eda74ed212ecf9a4b9ec5d9b839030f745f731cb422c1e66d9fbb076ffd487cf13b44feb1" + } + ], + "purl": "pkg:npm/%40babel/helper-member-expression-to-functions@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/helper-member-expression-to-functions@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-member-expression-to-functions", + "version": "7.17.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "b61c5782743ca90d755b6c1550e6c8a832f8a75e3c54cc64b794ffaa93799367dba11cb31461662ac4c6562aaec8ce501ca532e3c399a1c6bc930e1a8da0cfcb" + } + ], + "purl": "pkg:npm/%40babel/helper-member-expression-to-functions@7.17.7", + "type": "framework", + "bom-ref": "pkg:npm/@babel/helper-member-expression-to-functions@7.17.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-module-imports", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b0acd1eee50592f385e51f01983c3b42c5c03486b4a52f6ca15982e078e734c3b71c3a5daabf8b3f9c0448d1a6195be6d2c002f90ae91e5c0e3b07fd4d29c9d" + } + ], + "purl": "pkg:npm/%40babel/helper-module-imports@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-module-imports@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-module-imports", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9241fbb16cca3ead31b771f59fe8216f8c4430ff24d14ed757792407e646cbaf640e4db24855b5a8f8b4eac8cacc5637b758fa5db252aabe2617d2fb09857286" + } + ], + "purl": "pkg:npm/%40babel/helper-module-imports@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-module-imports@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-module-imports", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d5b52e93aa324715cfa761e213468e952d7bdeef4c66abbc0f8564ea0c9bac2448069a4000096c0c89336bbdfa10a3a844845c00222c4d92f0748cf5c32fc5a" + } + ], + "purl": "pkg:npm/%40babel/helper-module-imports@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-module-imports@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-module-transforms", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "332e1cafd01371a05b99a11af0cd1d64d03be1c7c8ea08adbd402c9200ed005980ab214a0d21d0a3962cb713db37e9731e5d83f65fd838416a6f69ad521e207c" + } + ], + "purl": "pkg:npm/%40babel/helper-module-transforms@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-module-transforms@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-module-transforms", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "81aaad2c3c4910509e41b629f5a2c079f8e190a76329c761e8307b8e7888194dcfcf9d960263f6ebcccad1580fcfd85436431261e1fdefa2b6fd8eb23da7699e" + } + ], + "purl": "pkg:npm/%40babel/helper-module-transforms@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-module-transforms@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-module-transforms", + "version": "7.18.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "91c95461250122396f9f3376fbe2bd7f6ab360a1608e69e68f02f8ce5994e5ff19b738167bcb34ad43d24c6cb61e62b83fc4f9d8c42c4be1d340081977774c10" + } + ], + "purl": "pkg:npm/%40babel/helper-module-transforms@7.18.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-module-transforms@7.18.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-optimise-call-expression", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4ae238ebb1a2d95f1f9287e6d893e767307f494b97a09039cd77bfc73c8f3f6334e3af3a47314a1473cae870d537a26f5812045bcb6df613d1edf5dd9f62e0a7" + } + ], + "purl": "pkg:npm/%40babel/helper-optimise-call-expression@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/helper-optimise-call-expression@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-optimise-call-expression", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "12d801860eeb77f25c9e96455e9072d337b56117dd9bb067057e2e28c05dde2c5add1180134d3625907ae85272347ee0d05dfc534e695e60393fc70187bcfed7" + } + ], + "purl": "pkg:npm/%40babel/helper-optimise-call-expression@7.16.7", + "type": "framework", + "bom-ref": "pkg:npm/@babel/helper-optimise-call-expression@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-plugin-utils", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "ff7eea4021372b4bef64ac282b85d4fe2ac82507487c226e854e5e2a7371a450ec3a48056940306eff91630e9e620b02d04e214bbaf92aa1942d4a20aae8b47d" + } + ], + "purl": "pkg:npm/%40babel/helper-plugin-utils@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-plugin-utils", + "version": "7.17.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "24391fd389aab4ddf2e2201b3b586ff54d804693f23cbd73ab25acff6586d69812abd9651c58d2b57e637716fce218a68099bef0d83ec74a22585fe7c3f5d028" + } + ], + "purl": "pkg:npm/%40babel/helper-plugin-utils@7.17.12", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-plugin-utils@7.17.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-remap-async-to-generator", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "30b33520e31ef5a401a8c5b1711c3c75c6fd8e533ce8d230eca0345ab8bdd5791f89e77e744d10b8115206330dbeace64b4392203b0c342db87411243d48bb7b" + } + ], + "purl": "pkg:npm/%40babel/helper-remap-async-to-generator@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-remap-async-to-generator@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-replace-supers", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4d0c6e41f48276885aedca51349bdf698c71c7399bc57c3ffba712ed5d3679e0d8ca1c5d7ab4a831500bbf0ba9039e3fa5970e4ed55e274c5c729d6719695a74" + } + ], + "purl": "pkg:npm/%40babel/helper-replace-supers@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-replace-supers@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-replace-supers", + "version": "7.18.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f3008cb1c7ebc59eb3b1890ad3a1250ecd43a7d1ed49d8b8b8d27b5d75e93563af405d44d7a03278d3f0f945d8c5bbbb3ba8789a7a84e27a6a5971bb955e1d9" + } + ], + "purl": "pkg:npm/%40babel/helper-replace-supers@7.18.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-replace-supers@7.18.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-simple-access", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a35ae3053fe0a6902a2ac61f51d7c7ab9464d3794c42b90f1c6d4e5b31d6a4b8155d11f81e730cf44b7d095748ab0902425a1b9c61c424cb2058ffe3135cd48b" + } + ], + "purl": "pkg:npm/%40babel/helper-simple-access@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-simple-access@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-simple-access", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "648cc7572a1e2ccbd730dfefa24fdae0b591cbc1b6bf6d3998d3f45ceb9ff5744bc97e7fbbd0a756e954b438144da99ade54fe6dffd4aae72e663aa21ae4d2d6" + } + ], + "purl": "pkg:npm/%40babel/helper-simple-access@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-simple-access@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-simple-access", + "version": "7.18.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "ecb22b8d8ce7768ac363cf0cc9cba992940b292d4015fb15466da4ffd3ed292712cb9b59ab431c6538fe0e2311ca76e865f22a38abe8d37a668536948220fa7d" + } + ], + "purl": "pkg:npm/%40babel/helper-simple-access@7.18.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-simple-access@7.18.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-skip-transparent-expression-wrappers", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fa2975813cb4a07c14b01419c89bee91b078bcf31d71806b1476b451ce008b32f16eae813980b9d51bf8b56a1c5fd04b0432d9e2473aa9416943a1d180bfb7cf" + } + ], + "purl": "pkg:npm/%40babel/helper-skip-transparent-expression-wrappers@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/helper-skip-transparent-expression-wrappers@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-split-export-declaration", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1830c469b8314d1931cd4628aa257d7d1a33570381f413c8d9da26dc71f4b1682a206e6dda9b958dff69d0363d189d0c0658cd49d3a18e710daa9e1dfed296b" + } + ], + "purl": "pkg:npm/%40babel/helper-split-export-declaration@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-split-export-declaration@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-split-export-declaration", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5b5a8cbf3c5a314966b3213a13f5289ffa325396b31c9dd22c68e2af4c0eaeed0128ee2964459a637b0d7cfd6ddcee79bc7d77540d7874d955d36d9d2918337" + } + ], + "purl": "pkg:npm/%40babel/helper-split-export-declaration@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-split-export-declaration@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-split-export-declaration", + "version": "7.22.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "02c527c6e2e1458b22b0589a270be9d5017e2372a30f914ec6eb75e2afc6ce8bd47baa2b1cb7ac5b60bb77be789119b9de1e60aabcfab0597ab31738055b44fe" + } + ], + "purl": "pkg:npm/%40babel/helper-split-export-declaration@7.22.6", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-split-export-declaration@7.22.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-string-parser", + "version": "7.22.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "98ce023a3819a31f14f897174303e28c864b1259201293b9aec111543253736a9f0837c4472a1bea4e567a04b5e125f5f08223bfe5c3f86aea36e998e494420f" + } + ], + "purl": "pkg:npm/%40babel/helper-string-parser@7.22.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-string-parser@7.22.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-validator-identifier", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "e65b1eb6ec422e2966546ca22c47e81c1457f140850fed66db1dd18fded6ad6dd5ec7deee115915c0e1ebcc8c8982b229f6276613d106950c67fecfca2775b02" + } + ], + "purl": "pkg:npm/%40babel/helper-validator-identifier@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-validator-identifier@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-validator-identifier", + "version": "7.15.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "2b826f0ad42a69df4e636fb24d4f30f84f36cb093f7def842cd96dd46f33ddb5469597e7fe139c410b14846856fcdfad6f77f12bcd34c0bb4a384fda3349bbdb" + } + ], + "purl": "pkg:npm/%40babel/helper-validator-identifier@7.15.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-validator-identifier@7.15.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-validator-identifier", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "86c12715e99e896e03d3c039814019c4b0535e9677f4ff9af83183b07c35cb1ab243f8f31449f17f9b93106a7eddbcc06cd3b1535a5a4e0612e04094fc881f0f" + } + ], + "purl": "pkg:npm/%40babel/helper-validator-identifier@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-validator-identifier@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-validator-identifier", + "version": "7.22.20", + "hashes": [ + { + "alg": "SHA-512", + "content": "638399fb2b656ad47c008fbc2997cab8be6eacaa7ba9ecb4f216b7d4bf1bdc1c1ec0902825a993cf2bf13d1ff90fe2a47490863eaffef13ba41c1958d74157f4" + } + ], + "purl": "pkg:npm/%40babel/helper-validator-identifier@7.22.20", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-validator-identifier@7.22.20", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-validator-option", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "397f03e5e797e17c1cae8556e3934cbe861a22e148f864290366bc1a2f97fd4fdc0d4211b15dfba907c5f74e45d21b534424444080782aa3de6af7912549773b" + } + ], + "purl": "pkg:npm/%40babel/helper-validator-option@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-validator-option@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-validator-option", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "4d1b5e9ceb91515a3da084063c2e46f4380ae3be3771dc6fb4ec34c1e40da595da4b5e920818b930d8d917cbdb6b71135118d9a536d59fb56f71fd9e030168cd" + } + ], + "purl": "pkg:npm/%40babel/helper-validator-option@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-validator-option@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helper-wrap-function", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "555306cd8637be45a008930bfaa54bbc621a9bdd369895b416f4fb02f8f5cc47b41a7ec3f7769674b6e5600453c44c3ee838599adce104cdb3bf47a4139ce0d6" + } + ], + "purl": "pkg:npm/%40babel/helper-wrap-function@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helper-wrap-function@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helpers", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "75544cd12b4531d2a592dedc55c1a0c03f1431a05f5891e5dc0f3761fb3c190dcc3b42c720820cbcaec56b4446386510d74aa290b697e83ee8e61b5c41681331" + } + ], + "purl": "pkg:npm/%40babel/helpers@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/helpers@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helpers", + "version": "7.17.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "d10bbb44b4757482e8cebffa334c608fe0c53e68ba067ba5826f4cf0155af59096c43aa54a7aadddc7fc2033c1e66e39b155d467492e400814add485147efd7d" + } + ], + "purl": "pkg:npm/%40babel/helpers@7.17.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/helpers@7.17.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "helpers", + "version": "7.18.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "8fe77ebb9c53e6eb5c412ceb87da7e3da257f7887ef8a37e9e0f5bf56109abba6450f01deb5146aa18ee50475f9276f713fb8305beebbb011e2a42313493c8ae" + } + ], + "purl": "pkg:npm/%40babel/helpers@7.18.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/helpers@7.18.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "highlight", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "a9ff6ed96156555d0ca6968bf3bee3d9d06d4080e09a27608c6939548330dce69d5ef61a5e7eba535045947dade3eb778bef0f85e769a51bfe8b8d0007377e82" + } + ], + "purl": "pkg:npm/%40babel/highlight@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/highlight@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "highlight", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b7c307e35914432941b6edbee08400ddab6a7af03695182a036c32541fd88969ac0d2bb295966e5ce532f6b89cdf485fcdab8415f76cba4fde5d346b1ab7ddd2" + } + ], + "purl": "pkg:npm/%40babel/highlight@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/highlight@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "highlight", + "version": "7.16.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "e459d340b48bb30123e88920570e4abac35450563d646a9efd34459cffc12981d881f87bb5cf82ee6c22cbde7fc8d3fb0e1f71e7cd15bfcafbbbb65f4c117177" + } + ], + "purl": "pkg:npm/%40babel/highlight@7.16.10", + "type": "library", + "bom-ref": "pkg:npm/@babel/highlight@7.16.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "highlight", + "version": "7.22.20", + "hashes": [ + { + "alg": "SHA-512", + "content": "76474c08dde9cb4fa4b028189861bc8ca78603ff1393e809c126189451b11b996685f28da00cb4d386292f1a52d56d89f26fc42b6130fb23acf69551c0ef3d9a" + } + ], + "purl": "pkg:npm/%40babel/highlight@7.22.20", + "type": "library", + "bom-ref": "pkg:npm/@babel/highlight@7.22.20", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "parser", + "version": "7.16.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "4545694f41b687aace670a8b0d3aca93b92c36fed8a408a54e761ed7f43e7838f111c79130a5566c2b17eedf21e82d6a0858bfd58f166637043c10051b6ec63f" + } + ], + "purl": "pkg:npm/%40babel/parser@7.16.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/parser@7.16.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "parser", + "version": "7.17.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "54a5d2090c790fc4b4e1e8fe0eab2bd42cd8bef5a07f6d23230d83f988500ab225af651919a0ddb36dd8d3183be7fb243b1a4b091a5466f93fd44015906a033b" + } + ], + "purl": "pkg:npm/%40babel/parser@7.17.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/parser@7.17.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "parser", + "version": "7.18.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "6195956a094c8a9968eeff1fd68310e593d0af4be7ec73de657c575acc572518c656bcd4167f4ec45425d6c6f9c337e8a2d8c0ff20a1856f38055fb7f371523b" + } + ], + "purl": "pkg:npm/%40babel/parser@7.18.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/parser@7.18.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "parser", + "version": "7.23.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "bef3ca29d31e994f3957d584fe5e706449889a90ad2ea6e74efa834b65357c9f7a2abc685bb2ab5e136c3426e542583c0a4e1bf39cb1753c9e96c3148055178b" + } + ], + "purl": "pkg:npm/%40babel/parser@7.23.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/parser@7.23.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "version": "7.16.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "877ec2be92d27fc81bda5209d82802dedf848c56e2d2df2a4bb2c24b5c5c2489445c4e1cce5a1fc1a5bb5b51c0f33a60382cc8f42d679a8a8d475cd6924d2942" + } + ], + "purl": "pkg:npm/%40babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.16.2", + "type": "framework", + "bom-ref": "pkg:npm/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.16.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e2d705c3089ca564eba65f6a8dfed4b28a2c680ae022617ce40c6a09166581cdc8403be45078c9a6bb9700be7c5a68fe4fa7f2a564c2fc16a47c493020bfe9c0" + } + ], + "purl": "pkg:npm/%40babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-async-generator-functions", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f2626228ed9a8ab18e8fe259d5981971a7d0776bde82b1c6cba2d96c36e92d3076a1903c283d81235eb6475344e3f38e19f5fd48b615714259f9ee6864704c7" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-async-generator-functions@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-async-generator-functions@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-class-properties", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9821771dcb99498f45731e7a2db9fe086753e388a804c32f8cd5657692ad8fcb699e211374b8e7c5d1c8d7eb0359720cd6736df846a724e677206f65cd58ecec" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-class-properties@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-class-properties@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-class-static-block", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "980cb7b1d718f6c28091fde541b0e2bf7a2539f88ba88e7573d0d1f5bd7db8ca11d99eabe6998697b75f345a84bea3b2a9b7f5b5ae259272b881ce4f267de67c" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-class-static-block@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-class-static-block@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-dynamic-import", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "406480e84c5693de63150830cf9190d83afde5c7fb788ed32aeb485d74dbec1d6008b4c2cf98538c54d019f2c5041882e5648d8bbb9d3705aca9b6cc875738c9" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-dynamic-import@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-dynamic-import@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-export-namespace-from", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0a32389f133f0fee700a7843d753070750304520187834fe87c80275c54967f38aefec11cc5b1fecf14f595a55a4d4641cc98c9105801e94eafb5e485d0d5d88" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-export-namespace-from@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-export-namespace-from@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-json-strings", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "928b883ee8aff264a2e499048730298391a7ea117228f9e590ed1af584b3a91bab1fcc18cd295fe9125dce5b80b1ba9e71d5b9a41bc32437f20c8511fef2f1be" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-json-strings@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-json-strings@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-logical-assignment-operators", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a5b5b47c4df4b154d85d79bd96955043f55cfa24de40a89795a35164f3cdd80d957655b202db14aec437c727529435b4d1314c2bb6bc9b77034e4045e569d5dd" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-logical-assignment-operators@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-logical-assignment-operators@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-nullish-coalescing-operator", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ddb9c703c080166edc1bddeff25a2084363243cafded0c9d7fadc17988868186e328a07f5cfe775b5e707d10bb76f29fa22277e1fe916f2cb1d9bb44c5cf17b1" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-nullish-coalescing-operator@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-nullish-coalescing-operator@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-numeric-separator", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "140844d88ea68e2b29cbebf0c1deb158fc84c77358152d77a6290305650014666faba3ce1ace5e35c870f3ed42628120065f67d75237364cc3ee0867db93d0f5" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-numeric-separator@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-numeric-separator@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-object-rest-spread", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d4ffe8e9f3d79f7b91ee5892e6326146d3ec5bcfe236ad223b88b73502569e48c0cc386cd695ce7226b30dd5dd38a2c5cde2c49fa68e0ef9ace404d05eb348e" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-object-rest-spread@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-object-rest-spread@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-optional-catch-binding", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "922703a3403fe49d27aec08f6e7f3d9931b7066e178188b4099b6f7b1f4ecb0ee01991371d7183d33a50347fa6a3eb447dba3cc1b98cbc97ed3b0a663f2eda57" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-optional-catch-binding@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-optional-catch-binding@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-optional-chaining", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "638ac5a6464e0df1eb568ef451a8fa702d4924eb773e9d0c7564b020ab5bf33d7f96c8e5f409a707b12b44557e40d1887dc63512bb9cd94331e4a6919d78ccca" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-optional-chaining@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-optional-chaining@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-private-methods", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "22f1e67131c3173b501a79fa696ab8b75d906815d32abd70845fdd829f64cfce17e8651cc2af6eb63ef3db014251f78eba9fd02a73a5b76934cf1906171f6e6e" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-private-methods@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-private-methods@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-private-property-in-object", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "de3414aff1c16cc5599a2ef62e98d0c25679e62d6ab9e2fc29c0d34049001e286db499c03eb72f1bd64d5c87ec776ba0a62cd9a39f797a0615eb1cbea6fe0e7f" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-private-property-in-object@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-private-property-in-object@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-proposal-unicode-property-regex", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b62ec874ce78357bf6f5c038f9b34d284312e232cc09b26097e0ebbfe160632d1eac92c0c4d0085dc363363ad1644716ab4c491ec355c107b3b24305a45f0df6" + } + ], + "purl": "pkg:npm/%40babel/plugin-proposal-unicode-property-regex@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-proposal-unicode-property-regex@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-async-generators", + "version": "7.8.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "b727266719067d96b184c45b5e53d7b95169756957a62af65b800c85226044ace4fde0e52173a16f62c75a82e90c5ed3107ca5579ccd872917e8a0201c999337" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-async-generators@7.8.4", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-async-generators@7.8.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-bigint", + "version": "7.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "c274e71651be631426def0f1a46139ecf8f4b2b454e2c1c4fe60e4b75aafd9824949e50079cda66b858b52750f78a8f2adf9ed5707bf37a7425e953eccbdcda6" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-bigint@7.8.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-bigint@7.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-class-properties", + "version": "7.12.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "7e6e227632a56b461a85436014d2c2074ab249db283e264fde2404deb932d26054b4c676df20c9f5225d83a7574d20e7ba5395aa21771e0afd9db5ef5d341960" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-class-properties@7.12.13", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-class-properties@7.12.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-class-static-block", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "6fe6323e6afa95dc8d9cceaca9878c584f9b809709a4eeb24b8403ef29b1807df81813cd0ccfd31c187c8ae9f2bca219ced8b02c7e02259d11c5393d7a68298f" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-class-static-block@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-class-static-block@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-dynamic-import", + "version": "7.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "e607466c5a27f8fb33633aacf374b71399a98bbff2ffc33d782f743114d97ddb903985bbea283a48e48f35ee35206e4ba0fdc51819f6374463543490892f7891" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-dynamic-import@7.8.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-dynamic-import@7.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-export-namespace-from", + "version": "7.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "3177f995a5e8e9cd486c46de8039b318fc06353b07666132e901b39eee528765025afb9ecb06f679ef82084e3342266cb7153d04ca103bd8bacd41526342a3d1" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-export-namespace-from@7.8.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-export-namespace-from@7.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-import-meta", + "version": "7.10.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "62a7e6f970f1d3e3eb8775527844023d4f35c82f89599da90cf1524b865da5f661a7832414c6830b552ab1ea2f10ac125299c82fbfaf2be0a5a7b6df874883ee" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-import-meta@7.10.4", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-import-meta@7.10.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-json-strings", + "version": "7.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "958ea4746a561ef8e87b6be4e16ac06a912e051ebd10cc5997e46819186b14635854af2638f016f157db4ff660ac56d794336289ac509c0b6054267a8efdf410" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-json-strings@7.8.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-json-strings@7.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-jsx", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "a21b8522c38c5c99db38c45f5fbff0ecba1c751e91ef0861b910f86b1f088a92dc2cf9591892a4071807a7ef94e0dfef2b2535ebf60342bd9fe6c79a8c3de323" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-jsx@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-jsx@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-jsx", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f33bf6fb188f1f0972df544ae119a7118639cf38ae1773bb5b69080d6fb4edec160e1e8e8b4751abc930bee95190582de8307ded194ab39735cb4ebc88f94252" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-jsx@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-jsx@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-logical-assignment-operators", + "version": "7.10.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "77cc1a4a19691438a743932dbc653dc4300ecca1f8efe145a277b2d9b68522832bf79da128e2e9d4747b56cce866f3ac57fe3e451b33358ec3d7b6dad2d7b48a" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-logical-assignment-operators@7.10.4", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-logical-assignment-operators@7.10.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-nullish-coalescing-operator", + "version": "7.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "6927dfe333c8235bb6403ef2f85f280eccf5f5ec3820610983d4955be6eac29c2d7c595e8900cc77303f47e525583cdf9c7142c7195e153d0f308ad1dfa5cb35" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-nullish-coalescing-operator@7.8.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-numeric-separator", + "version": "7.10.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "f47e9875f91c2bfb8e9d8fcaeff680db1a73680824427dfbcb35943112bb39a3cea8ea464b5fa7d07e61c53f40530f44b128cf5bc495c8c270611b56b375f7ba" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-numeric-separator@7.10.4", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-numeric-separator@7.10.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-object-rest-spread", + "version": "7.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e8a8c8a31996fdcb7cb65ec90df8fd70506895c16679266a03470c79fb71a612994dc95336b360e0f082c5426f2b58ce3ca2b1b2e58a48e4197c535cbbc9d94" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-object-rest-spread@7.8.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-object-rest-spread@7.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-optional-catch-binding", + "version": "7.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "e953c3d0f7359694eac3468aa1e45332207e916840a13db83c0fa4b16481ac5b65e52211569665c0ddcd34f4237a103613ff75155dd18cb5a855382559c495dd" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-optional-catch-binding@7.8.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-optional-catch-binding@7.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-optional-chaining", + "version": "7.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a82bd12b1f53019423f15745403645d6dbf770e2f95b183ac5833f1b994b0119890545c6d1c0c87a70826e6dd3eb931470b8676d0a4d2fff03d329b42006392" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-optional-chaining@7.8.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-optional-chaining@7.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-private-property-in-object", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "d30567a7d77127bd995090d5dbb65f6d28fa8872e8cad6199a1deb15cc4d9efb0917792d9332c364fcbf980d7b1c6b1a413dff0d0b16617d5fd50196902a1552" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-private-property-in-object@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-private-property-in-object@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-top-level-await", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "871fbeba92efe54d6b8187f07b5c41414851994e35344be952fae9f2392b48276f1929cce7fa9d44cb72949e8f1b938590168791b4c02939dddff63211244717" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-top-level-await@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-top-level-await@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-typescript", + "version": "7.17.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "4d86344971623b7d585ed360dc7b45c0d2478cbb00c88221021356910e7084f3d2ec759416583dcf44dae2a01036341b3f5c2c4adfe82a4999ff8fd659d314a7" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-typescript@7.17.12", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-typescript@7.17.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-syntax-typescript", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5efea6117a9575aa8205f245c9e69bd1f1f60e752832c0e685a9b1b128b88fc9cb77856dc36d7758c26be79c71aa2a42fd8556c8f6372b46e526770f6238be75" + } + ], + "purl": "pkg:npm/%40babel/plugin-syntax-typescript@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-syntax-typescript@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-arrow-functions", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc815be76e7445b87bae858046f08bbc827f3ed014e4b86fec1b59d6edb808ec2923d6298ec87e6d970a93aae52326a52beaf48ce7355d0f08e28bcdc4dad6ac" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-arrow-functions@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-arrow-functions@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-async-to-generator", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3db22bec6f6447cb5d1fa83c5a8ba2af9b958e49444e4f7518c55252af9568e8228a76c29013fa43b34dfecb8cfd0bad66430932f73202b8a881c60076183c1b" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-async-to-generator@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-async-to-generator@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-block-scoped-functions", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "575e00b3785a50e3f8656acb277555c79ac29eb6213121cdfe35fbcfa140b798634642ec6f4b273c2989c1238c2f9a3190a3b814da0dbfb579870ff2d9b8eebe" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-block-scoped-functions@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-block-scoped-functions@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-block-scoping", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "dbb9f797aeff47752b5df8b396f1c6b93c2c44817271edc3ffa6b7ec64719f6f22c933ef357696e17bf39dec51875cd434b3e36cb2f6d887745d012557de2bbb" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-block-scoping@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-block-scoping@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-classes", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1d4c4cbf2e86b4075df862813580d608803befa6f25101fcce39df8f1c13d4fd4046fff016ef1e043a665d070b4bf23046daf12117868a994ec0c7b23bb9ec0d" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-classes@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-classes@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-computed-properties", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "eb79757515dd6b2e92f15dd6158e665c9c1c4409cf631bc57d396debb6f0575ad3c954cce73ae9d030416f5dca97bf9e864095c0864fba63e914fff8bbbd3e4f" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-computed-properties@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-computed-properties@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-destructuring", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "43bb415308f12d3b07128aa4b5e98704cb5bdcd630c893d325d33ec03c1bd20f0f677910508ccdbf00f994f6aa5bfa79e135c173f31766ef49afbb5b50450cf1" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-destructuring@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-destructuring@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-dotall-regex", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "15794365f41e2c82df2650ba235ab21307072b95294421646a85720359e4f40d4bd58bb9f3760ee2e9f62ac2c1b2edc825be0251b72d664b3cb43f713d0b9b2f" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-dotall-regex@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-dotall-regex@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-duplicate-keys", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c87b691c1ca0193890cdc6e8ef9a9eb3de67cde95f65271b9b5387c9206a100a429edc473639c6dd9583febd6fbee0ca71c06d1dd70483389b505b990b9e465" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-duplicate-keys@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-duplicate-keys@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-exponentiation-operator", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3b0604bf3148dfc857925b2b6cd8afce93b77e1f3bb24cf1f0f9ea8b82e849879abf4c4796e792a0226b4a04cf7e76f2ce8a68e5bdd8540264148714a4adb0b3" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-exponentiation-operator@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-exponentiation-operator@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-for-of", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e50294c3690ef865662abdb03184804c24d39c7cac725eacc4544063eaef37b87b581d25706d28e0da15e99414df6399195b1852c7cb1a03d0a4315d91f8e525" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-for-of@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-for-of@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-function-name", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "941ccc95ef6370e5ed48e5d4a5ceedbef4e910dbbf36e7a4349568bdae6508258257dfd4d61a361c7db2d29ea6060f1f3e6fecc8401b7da69e99818e1c26379a" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-function-name@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-function-name@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-literals", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8100e5b121758aff51534e1c9605ea463acfcb2a0931372516ddcad5c8cb9932a291cd2cffabc4de1943784542ef5c0b4d1bbbd85abbeb9d24001add4dcdb031" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-literals@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-literals@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-member-expression-literals", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "591a70e472f82619f1c3c40047346fc288e9f4c204ed3764ddecfabd1c9493533082324dd1a3694685da8a72d1e528319a85f1fefb17199e8eb613fab7f45b52" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-member-expression-literals@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/plugin-transform-member-expression-literals@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-modules-amd", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ad616159b089f56766ce59f5366482aa7ecfd11003fa88171bf6ddf4a83973b3ca5a426d9225e662c3017978c39731e955327823f8678ece39cd7e1d12ff35c7" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-modules-amd@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-modules-amd@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-modules-commonjs", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f38be356ab2128b60ce4fec6fb92040f2507fb009910056b15a7537a256735941568d2f9049549c676bd4fcd40667ec08237938e1726b746da5e1e4d79a0b29" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-modules-commonjs@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-modules-commonjs@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-modules-systemjs", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "cae1816874b7945d66ff947ee9f8c891eeb88a2e65b91520f7b376c2bfb3d6c17457eb0d4973f15c374410bfe260bb33b0de552b1541d483df12a8735698aabe" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-modules-systemjs@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-modules-systemjs@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-modules-umd", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f1e1fea7a39ee18a65a21e1c43339a63c2169ee6f2e94cadb30a70c7f3ec0d2c9cb44d5111fcb2511e5d9b92deb0f4069ddac3c3e6234da14a58dd7f6c4c60e" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-modules-umd@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-modules-umd@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-named-capturing-groups-regex", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e880df3cb8efbb121c5673c599b90f2fc5d4b2546c61921f164c2dedce54fc2dc70cb90740f357bd48657acd8ee46362e30e1843385750571746c0fc810a7be" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-named-capturing-groups-regex@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-named-capturing-groups-regex@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-new-target", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7e18eb0c462fd8306c18dfcfeab96a6a4c11c08a7bac118b3dbacac7087ba15b7934d90885954e63619157e50b2ec42b8b56c3ab00d69d4def8659b1e41d9a0b" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-new-target@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-new-target@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-object-super", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7ddb3ea6e79d4079f870f2ec8681dc4750d330dd2ad55f68bb49948e6f30871f6919c36f0eb555ae0c3e289cf309a89375a62195db6b529b3c0d654c82b484ca" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-object-super@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-object-super@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-parameters", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e09d0126d427af29138fc7eb9d3a2ffc7fc4e21a1ad45a21e2694088a78eed134b691438f35cd4d973d1390a60b0c4d8d74d6115aaf45f59960e4c5bcc6bf65" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-parameters@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-parameters@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-property-literals", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5cb95d0f857cfa93aa5f68707d6860c17cc67670ce4e1c5a35382a6a039ca41808c5b52fa6053614cbe8e44d51c876e4ef9e9662075b4b44fccb40a3f452a459" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-property-literals@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-property-literals@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-react-display-name", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "14915d240a9a0a99dd2fea487f469e0ffaa54304fb4173af47a09cf093ef361289062db373f0cf738834e58ddf6c3ff489600c4051a28f8f97c3ee0bfc13294e" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-react-display-name@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/plugin-transform-react-display-name@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-react-jsx-development", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "aaaeb9892a8146ad07af7c2ae7b606d80996d07eb08139c8ce97df4e986b5165202c238afb37f57fb1b4bee3a25eba7b754d6aabe7d0068a99df0083024845cf" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-react-jsx-development@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/plugin-transform-react-jsx-development@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-react-jsx", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "aea0e021bba4678e29aaaecd2113c63c636496c84f92f966bea8ddc773997063e4e331887a7624c434ef9772ec48bf20a9c7376731a65cf13a851feefefa0d3b" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-react-jsx@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/plugin-transform-react-jsx@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-react-pure-annotations", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "342fc18f6306fadf047f93dda68df8032ef85f846df34e21e72f353f03a97cfb6600ade2e828b3990ab0c8143321ea73d58b7cc0daf66762fb2eedea04c7d930" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-react-pure-annotations@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/plugin-transform-react-pure-annotations@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-regenerator", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "240bc6c602aec12d8f8a189215a0eba7de173b3cd351e0de39095c2b3540c9a3daa7b0676572bf96f3038ae6e43d3768b4f28e219abdc565d69e0814318884c6" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-regenerator@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-regenerator@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-reserved-words", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e0b3c34d09e8474af5dd8448659fcbbf4ed2717d5c0660280fd8e3abe59dc0afe07ecd789c10e28d4f273e79c6b672e10e32d8d6ea6f4ff628ceb7c41da9692" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-reserved-words@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-reserved-words@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-runtime", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce53dfd7f5c59f9faf59dbdedc00217fe4b197e3156b9565c13c168272f1db7bb81a56ad491409dc4a28f6f9657f46bd8a5df0a10b13e122bee59edcd3a87c6a" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-runtime@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-runtime@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-shorthand-properties", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8956f5993703f1fba14afde4f7dfb9b655eee4dd2ff3f0cf9b698edd60022c6e9a975086647eefd3d1c9c946f54ed625fd9f8aaccea91d2209759c4fe40fb1a3" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-shorthand-properties@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-shorthand-properties@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-spread", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "028e0c49845a2c041ccd9569f7fec4ed01ec0ae2bddb21d1ae654d45efd29442638738afab40529fc984ada8a62fcc22cc76777ee687c4a1f48b0cc8d771b21a" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-spread@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-spread@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-sticky-regex", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe7b53d8d96347d7e8a1b2a4e04fd8c8e4b0706517b585afe6d8a730aff7464ca9c8d04d7611d46aae8eaf0e435aaf5970d952d3704894400b15e420795028e1" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-sticky-regex@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-sticky-regex@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-template-literals", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "45de0873cf6103f7fbc54489424e4f9c2fb8b28e74bc1a017f18dd40076f9e0c2274cf23608055c4167fb004710f87b4c8c5d16c9543ad87fb77246d208293e9" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-template-literals@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-template-literals@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-typeof-symbol", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fbe5762fc05d7f8bdc6878b6ada20b9e9b530631841719f9df5e5853e7bcf84a9722e700faadf8f6a5a78022e9518aaabf6df7b2e27a34e89e9c8554a52f5caa" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-typeof-symbol@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-typeof-symbol@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-typescript", + "version": "7.18.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "978bc7b922d46a3a6da473443940c41ac9e997da5f44bb0dd575280d00c3fd806e5d333ebf7ed21c64be73a9f88dd719cbde90b6e52e4af65830b492b231fc33" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-typescript@7.18.4", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-typescript@7.18.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-unicode-escapes", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5458b876180933b06993c95173908c6911a5299dbd5bd0b781e663b7d6debb3494ae5271b0dc17ed178bc1a2fa584bec39fd84424c882443ed17c1178c1fe0d8" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-unicode-escapes@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-unicode-escapes@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "plugin-transform-unicode-regex", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c72cae0bc611e3bc27990d6c80f5cf8ff571f5b0ec5177544ef7132d0d544038d0ff3dcccfaa2cc4b55771e13405ff0c8f69ec2aa53fad81015832737f3fde0" + } + ], + "purl": "pkg:npm/%40babel/plugin-transform-unicode-regex@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/plugin-transform-unicode-regex@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "preset-env", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "71d4eefd6d08aef89a9ad9d98937e2c4f7c89dcaf633556a46b923cd95a5af50784d562298214ae6393239d3f8ab0d8cae52878be6f73918fac7c1a809ec3c0e" + } + ], + "purl": "pkg:npm/%40babel/preset-env@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/preset-env@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "preset-modules", + "version": "0.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "039eed87a6111bba11ddcabfcadfd8f3832f1a01347891b617524b84abb21be8c5c4482b77f1c03096ad885b663a266eaf3fb40e4aef6e17822da5797f625f8c" + } + ], + "purl": "pkg:npm/%40babel/preset-modules@0.1.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/preset-modules@0.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "preset-react", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "777d48156d9b2d1076f2e2f55a8125caba3c447e65eb9df55dfc4cb427829a9e91540175b937f1c540342c7d6d5e5fa9b197707e621bc281b853957081b86d2f" + } + ], + "purl": "pkg:npm/%40babel/preset-react@7.16.0", + "type": "framework", + "bom-ref": "pkg:npm/@babel/preset-react@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "preset-typescript", + "version": "7.17.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b556217c5b643000a506257c4ff4d01f35aa860dd10124aa589311dfe58cb60b834f3f35c6791dcb864ec6f3125a68b7054d17cd8d56ed6d5b66f066f49aabe" + } + ], + "purl": "pkg:npm/%40babel/preset-typescript@7.17.12", + "type": "library", + "bom-ref": "pkg:npm/@babel/preset-typescript@7.17.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "runtime-corejs3", + "version": "7.15.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "956700a8a781eb6e3fb70b53737c3ac3fda8f51a893da34184f18ae8328b4a2c2e5560bb585932a56c8d83e0a9668c891f48d5cefd6e32d5d9ff9fe540e2ed0a" + } + ], + "purl": "pkg:npm/%40babel/runtime-corejs3@7.15.4", + "type": "library", + "bom-ref": "pkg:npm/@babel/runtime-corejs3@7.15.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "runtime", + "version": "7.17.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "8737b2272300d5819d253b965347bf8f8c0a5eb53838c16f63631295a23d07b5506f4af97314c4dc40084b643b4e7d9121c0e446f4c0fefd89b00121c5ef7dbb" + } + ], + "purl": "pkg:npm/%40babel/runtime@7.17.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/runtime@7.17.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "runtime", + "version": "7.15.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "f7d71ab69e9b1c26b1af8b09fc36d31a01d2e3e46cd9155dda0ee239aa7a48b18f0e49d12bdced28db04fc583a42149e8751461397fa8071909afbe7dc8df187" + } + ], + "purl": "pkg:npm/%40babel/runtime@7.15.4", + "type": "library", + "bom-ref": "pkg:npm/@babel/runtime@7.15.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "runtime", + "version": "7.18.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfc63c7fb61485c7bf2bb44cc13a7b9b4b82ba6a6ff616648ad09b04296a408a30d6a49b0af1a471e80a397a4458240b7d699ebe04625a8919d469297e16d9ba" + } + ], + "purl": "pkg:npm/%40babel/runtime@7.18.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/runtime@7.18.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "runtime", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "361b7c2f43bc60292d9ac0d5e85a85b9eeef40b471dc76f4077ee54b9cb48c346a4719411b8c082479dff7f6e0484d94ca2a4a140d3562d4be9e945d4d6054cb" + } + ], + "purl": "pkg:npm/%40babel/runtime@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/runtime@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "runtime", + "version": "7.15.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "3afc0c2ea3579025d2cf59129b9f2c12c36e86a3b1fdf2a99d49ca9c5079bfcb8375ae5b2cd10736028fbe10cde885342c37271d0f742e527443a8e7c8148804" + } + ], + "purl": "pkg:npm/%40babel/runtime@7.15.3", + "type": "library", + "bom-ref": "pkg:npm/@babel/runtime@7.15.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "runtime", + "version": "7.14.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "fcf081dae27ba0ce38b73f18842e19ffa3de38a5e9e0ae7cf1ffb9337725af5338cdbab3b65a345c47c9d8b1338ff160c1f806708765f27ed86234c2234058c2" + } + ], + "purl": "pkg:npm/%40babel/runtime@7.14.6", + "type": "library", + "bom-ref": "pkg:npm/@babel/runtime@7.14.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "runtime", + "version": "7.21.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "f2323af6da19aaa72c9ea186ab0192e106f55702ce129e21cfe0973f2c1cbe3b3ad2edc1e0fa26fd4ffbae6e16f2d30e60407e13dc200f4996d65debf2a948f5" + } + ], + "purl": "pkg:npm/%40babel/runtime@7.21.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/runtime@7.21.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "runtime", + "version": "7.17.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "95288106fa1dab6f6e4a1a5618d6e015d298362143a39fc7218b1a08463d7dfe2c6f5d31f638b3a36fa946b4b21788ca6425ea833baa04e40a6d49bdd2043026" + } + ], + "purl": "pkg:npm/%40babel/runtime@7.17.9", + "type": "library", + "bom-ref": "pkg:npm/@babel/runtime@7.17.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "template", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "32765da450ff65d6215f08ae9ccaaa832672b9c698b1b2f422b8e81a36958468a5cfec7c601fbe9117f28123888f5c8eb5628f971ecd069fbd2354504a0b1de4" + } + ], + "purl": "pkg:npm/%40babel/template@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/template@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "template", + "version": "7.16.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "23c8ffc7c90752b6d84535315ebacc6df09aee3c6413bb59adedfdc77923afd86f23cd9c2b515fa8bca0a2d71637991d3c659c2dd58c1e94816afb1ee6d5b0df" + } + ], + "purl": "pkg:npm/%40babel/template@7.16.7", + "type": "library", + "bom-ref": "pkg:npm/@babel/template@7.16.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "template", + "version": "7.22.15", + "hashes": [ + { + "alg": "SHA-512", + "content": "40f12b5159b8bb225aeb4ae423bdea9de0da72f76fcf1b214f7924b06aa519661d3932143b027b44350bf2c1aab25635b975922fac4c14a1170d2de8c76b85d3" + } + ], + "purl": "pkg:npm/%40babel/template@7.22.15", + "type": "library", + "bom-ref": "pkg:npm/@babel/template@7.22.15", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "traverse", + "version": "7.23.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "6b3a5ee7d490e3ca86ea7bb60b370c2dbc54b9db4df9d38cf640db52a1aadc75d4251968ee2f1fbcfa31414cd880b67870c566b99826f2fbc1a4d79185de974b" + } + ], + "purl": "pkg:npm/%40babel/traverse@7.23.2", + "type": "library", + "bom-ref": "pkg:npm/@babel/traverse@7.23.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "types", + "version": "7.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c9820fe4dd274bb066f78618ac16fb4b3b0e6db35d77925ae92ee20fb4224853e041db87eaaba95ff115aa289123cea5d1f40107d6b21be574eac011c1fa442" + } + ], + "purl": "pkg:npm/%40babel/types@7.16.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/types@7.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "types", + "version": "7.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "33f37306910bf792391e1e1dc218a7e49944ec4ccee4f1cc02ece3c6cb37b623810f8e8a7d0bd579d37fde310f66f751bedb0adb6db65df747a20348b6d16072" + } + ], + "purl": "pkg:npm/%40babel/types@7.14.5", + "type": "library", + "bom-ref": "pkg:npm/@babel/types@7.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "types", + "version": "7.17.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4e629234ee03e6bce12f96e35857151c72c44f37d0fc099b2a928f3928e53f45a81d9e8bf75d5f82838a638025a7f7a6cc6e1c1c9772378f73a6091b5c51071f" + } + ], + "purl": "pkg:npm/%40babel/types@7.17.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/types@7.17.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "types", + "version": "7.18.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "4e137598170cab9a46fd59b621c0663cf7f23d76ddf12d36ad2f8e0480c435db9fbea0bb67f8c73c2bfd21c3f4d76efb68ab4323c83fd97cac04de2103c9e28b" + } + ], + "purl": "pkg:npm/%40babel/types@7.18.4", + "type": "library", + "bom-ref": "pkg:npm/@babel/types@7.18.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@babel", + "name": "types", + "version": "7.23.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d2823251f2a8237992a8cbecc4175c943c315ca5c0500f2ffdaa596dcfa24b2011628bb5a3c6460f16d46322c5a16d9aaea4b68c31aa26e66fbf577f8a8d5ac6" + } + ], + "purl": "pkg:npm/%40babel/types@7.23.0", + "type": "library", + "bom-ref": "pkg:npm/@babel/types@7.23.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@bcoe", + "name": "v8-coverage", + "version": "0.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "d21610f120780dbe73bd90786b174c1c6c046908e467316342237d2d562f2050769d25075bdb58a715ab88fad60c0488c626976b1f3744470bc6e49d9c63d9b7" + } + ], + "purl": "pkg:npm/%40bcoe/v8-coverage@0.2.3", + "type": "library", + "bom-ref": "pkg:npm/@bcoe/v8-coverage@0.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "accordion", + "version": "2.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d0156ea4afe05daeed038ca03c6a40b8040cf5540262b0b828e13b09c233ceda04d2d33afdf42fb76c1b3dba80e78d22407f5f3f439cdd5efd7569d03c9f65c" + } + ], + "purl": "pkg:npm/%40chakra-ui/accordion@2.1.4", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/accordion@2.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "alert", + "version": "2.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "ecba8fbfa11406d7b85ccfd0daa045213e68e010b47529678bd047387d81800739075345fa90403034d41fb24d06237b4474d5ec41c02160f38a25ff34adbcf9" + } + ], + "purl": "pkg:npm/%40chakra-ui/alert@2.0.13", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/alert@2.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "anatomy", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1378cc3c6a8ab864dbb7b98ab5cf20fcc38e7a7c36738c2a442d6f3b2a72160982f30b1ec1d63e0c924d10d1776ad5c02bba7954c04a41f67b8a93651e70c0c0" + } + ], + "purl": "pkg:npm/%40chakra-ui/anatomy@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/anatomy@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "avatar", + "version": "2.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b208a881f2ccf2f6acf10253b7b0092385f135761d5620968fec58270c8ec1437dddd58a226aaac773b68a1097a174c8a905a0d6b7048282790b10a0eab41a41" + } + ], + "purl": "pkg:npm/%40chakra-ui/avatar@2.2.1", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/avatar@2.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "breadcrumb", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "3926be17da89d71985d335710b5194e3a3966db8467f492eac78a8481ef6f5dfad470fce3339aaaeb7c227b29551437c3449d36574f914882890cbc7184b7e1e" + } + ], + "purl": "pkg:npm/%40chakra-ui/breadcrumb@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/breadcrumb@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "breakpoint-utils", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "f2e86b724330a11fe9a3094087188564f334b3cbe7d01db213211a45cc29cb93664402524c4a2d0b65a44b2425fc28f2b31f6c72b79dba607983e7c15fb22a19" + } + ], + "purl": "pkg:npm/%40chakra-ui/breakpoint-utils@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/breakpoint-utils@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "button", + "version": "2.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "4fd5bfcc7a4765571bc7f04c8342485c2811c9cbadfde6284d879efc4f9e071c8f087e399f7d3c02c614d9b67c4e06715306d835180ca78a912ff2875100efe6" + } + ], + "purl": "pkg:npm/%40chakra-ui/button@2.0.13", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/button@2.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "card", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "bef99fb8d9fa8247efe9b19c5d07ba92f587b29ce23d98189e77df8848cf69962d69ff7c591b33a63c8f6c5bf4a1047fd87d51484d68693a9afc9d6b1ebcf0dc" + } + ], + "purl": "pkg:npm/%40chakra-ui/card@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/card@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "checkbox", + "version": "2.2.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "edf347f90da7076b8c4a76003ed6319eec19d4c389a9b9591dafd271f67f7e388f0f211a7b59b4ebc64ffe5f72279ce56b060c4e4a7cde6fc955cbb940562eac" + } + ], + "purl": "pkg:npm/%40chakra-ui/checkbox@2.2.5", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/checkbox@2.2.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "clickable", + "version": "2.0.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "e58d9d9797313603b11db8f1cb1b0be957737b8c1452fc2c302096de45f0833d8e508db2e54b0164d72f84d271dd17212447747f294c2a22a82a69d93073766b" + } + ], + "purl": "pkg:npm/%40chakra-ui/clickable@2.0.11", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/clickable@2.0.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "close-button", + "version": "2.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "648ff7a7ce053e55b4c680c2658aac9c8bd1e9b4dcd9dfd3961c324c7b030f1abd64e5a9f5cd8989c567e964dd58676c864f22b67659746e7421c9e2cc69e298" + } + ], + "purl": "pkg:npm/%40chakra-ui/close-button@2.0.13", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/close-button@2.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "color-mode", + "version": "2.1.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "6943e8b8e50f9fb20f9b5bf4d3ff4022446e36b902c0995b8d52f5909ccbcf18a36236c7bc41cfc67b484edf895a3b573d3f3174eaba99ec4b60238603aec9c1" + } + ], + "purl": "pkg:npm/%40chakra-ui/color-mode@2.1.10", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/color-mode@2.1.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "control-box", + "version": "2.0.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "5096f8beaabefc53eec130ae68f7876b6970b64eaeede16f2eec030924f67bfb01586242d51fb5fc8979a4771c9d6b34f455b1c99f6ffcec6483f086de3651e1" + } + ], + "purl": "pkg:npm/%40chakra-ui/control-box@2.0.11", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/control-box@2.0.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "counter", + "version": "2.0.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "d5846dfe3a26fa6de25b0f49f6dadc33aac01c3bc3e25c138623bdadac542bb051b185219cf66fb0ca5c5d4d4ca1ac76d7c0b8ad1a5b23d29f3cb6a28349b5c5" + } + ], + "purl": "pkg:npm/%40chakra-ui/counter@2.0.11", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/counter@2.0.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "css-reset", + "version": "2.0.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "1701ce7f0d8fe1c91ba526a10d979fd8aa3172f1cf520d3d8e589c59da76e3f32376c38ee4f001fdaa66d9406f41f958e16009c8ea9868e7675c5951ea717871" + } + ], + "purl": "pkg:npm/%40chakra-ui/css-reset@2.0.10", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/css-reset@2.0.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "descendant", + "version": "3.0.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0d2c8e8d4bab9482bbd84ba22686873562523a6dc93aa5fc4c0497275d549f7488c3e978c299e636620cebb434bea3e27c6c1dd825e2001bfbec572e54484e5" + } + ], + "purl": "pkg:npm/%40chakra-ui/descendant@3.0.11", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/descendant@3.0.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "dom-utils", + "version": "2.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "3fddfaf962a29f3e5f807cdfc225108c4fedecd0bc6d4f3d4dc7a29b8b5b9fc0889bff5bf82b075fae1e370e2fc89a91c2defc4d740aeda18121b4b5f11d2ae5" + } + ], + "purl": "pkg:npm/%40chakra-ui/dom-utils@2.0.4", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/dom-utils@2.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "editable", + "version": "2.0.16", + "hashes": [ + { + "alg": "SHA-512", + "content": "90814fb9fcc895588dbfbaa2d8fc7159606f8cb6fedc83f98541a6a8e03da9c633e5301da9b950a830a59b489a8e52033541569d2e21d39ea8f232ac438d9ae4" + } + ], + "purl": "pkg:npm/%40chakra-ui/editable@2.0.16", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/editable@2.0.16", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "event-utils", + "version": "2.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "648a2a51b809e537026d945c84cbf89fbace97524bd3876831e6c40fcf0b3b99aec77ea254ff5eaff9e7398e0e91ed5b00d28a51132b41fe554d3f61a18780ec" + } + ], + "purl": "pkg:npm/%40chakra-ui/event-utils@2.0.6", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/event-utils@2.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "focus-lock", + "version": "2.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "015489b7edd49226bf9bd4c26598325af4d8ee9c3cf2302b8af59527683248661822ceb3fc524c9e5c1b09595d57669f4b48377186a28bb68045bfd6ae51b7e1" + } + ], + "purl": "pkg:npm/%40chakra-ui/focus-lock@2.0.13", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/focus-lock@2.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "form-control", + "version": "2.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "27deb826582bc4ff8b3f791898b935b6d6e5ef7bba8214fe2500e312390451cf25492f48bf8bbd5e4443407bb3daddb2d0a1e341d1f5d8f51f51f06a7084db63" + } + ], + "purl": "pkg:npm/%40chakra-ui/form-control@2.0.13", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/form-control@2.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "hooks", + "version": "2.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "fef0c13aaaa7868f6afbe95acb465cbe71fc56e134c13d8e9198fea83c05c2388702d18f5711c24a9bbd282f01207304e539568f23baae25725026f67b68a9eb" + } + ], + "purl": "pkg:npm/%40chakra-ui/hooks@2.1.2", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/hooks@2.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "icon", + "version": "3.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "45a0cb0b8a6c77cab2227636457e0095845fa4b04dc3756c322875ec115ff04112561057349718cbb43d78c57f2b836f65f653e36bee56a1953459a41bcf6505" + } + ], + "purl": "pkg:npm/%40chakra-ui/icon@3.0.13", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/icon@3.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "image", + "version": "2.0.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "b9c94586cd3ec2adaaba31aef169387845884c0de26594138ad1a21521243bd5ace55507f86aad9f79948a51f4a2bb9bac8e6cac9b170268d54ee57081ed4a25" + } + ], + "purl": "pkg:npm/%40chakra-ui/image@2.0.12", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/image@2.0.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "input", + "version": "2.0.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "0a44ab50978a5a880e4adda951fdaf56fe6cd1b5157008b8fd71a3d4954209fc885fa6ba8759bc47af4c4a14cfc4f890d0c75e6eae404eb5bf6994105d9cd119" + } + ], + "purl": "pkg:npm/%40chakra-ui/input@2.0.14", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/input@2.0.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "layout", + "version": "2.1.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "50fd7d57c11e23f0c43836d6ad996a0b4b20db8f1ba45696a4c88cffe83d06cc6cf5aa1fdf27b1a4c0ffee06f4cab7db22b91dbd206b7107aac571b36dfa28a7" + } + ], + "purl": "pkg:npm/%40chakra-ui/layout@2.1.11", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/layout@2.1.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "lazy-utils", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "490e48e6b26b707a5551c11fb472ce87c532798fb4e91f06bf7936463729bccea66f61a4b65cffe3197619c521dcb5b27601900d6ffb46c7b9ad084a5a0ce672" + } + ], + "purl": "pkg:npm/%40chakra-ui/lazy-utils@2.0.3", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/lazy-utils@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "live-region", + "version": "2.0.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "96d39b68a41e90fef918209b37ebedd7f98600148269175010b9a8b474c1739022a00de2c820c71faf5ebfe7ebcc4c0bbca16aa3e468980740020a8120c274d9" + } + ], + "purl": "pkg:npm/%40chakra-ui/live-region@2.0.11", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/live-region@2.0.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "media-query", + "version": "3.2.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "76398483f789e50ae39fb480ad3aa3b2f97017a98d78cba26b0ad3c2753ed042aaf4fabfc1549bed56888717506092c0fc36d1844fca3cca20c352cd54a6b847" + } + ], + "purl": "pkg:npm/%40chakra-ui/media-query@3.2.8", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/media-query@3.2.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "menu", + "version": "2.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "d94bacad0b711dca9c3bd9ffd18a1b34ddd1242f3201953aa096d13eebec43d20bf3db1c1160932315c462b9c88de87fe738a47121031a8f7333d51d83f5dcb0" + } + ], + "purl": "pkg:npm/%40chakra-ui/menu@2.1.5", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/menu@2.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "modal", + "version": "2.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "2b671a7f2348d1be0e480079e6a217b790cb66a8fb1351b4f85cdad3664e059a604c2350c83b5cd0acdd54c259f6bcb129dd7a2d4939526287ba063f5691c459" + } + ], + "purl": "pkg:npm/%40chakra-ui/modal@2.2.4", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/modal@2.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "number-input", + "version": "2.0.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "20045401b3f8a67d603f97d8d9d2b8c2d6d1dce363cc78138c7e198f712b66f76eff24d444b6999a56fa5061f082a8d62f28a869cb59ffe9f83638f90918ecf3" + } + ], + "purl": "pkg:npm/%40chakra-ui/number-input@2.0.14", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/number-input@2.0.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "number-utils", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "4e186886796acded22e470493bdc647ce3ead6bbf78e2fe134f7f6c61d5f878871acdcdd9b71c2933d1cea5c914301ae5687a5b441f2b1864b1ffb962c54c249" + } + ], + "purl": "pkg:npm/%40chakra-ui/number-utils@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/number-utils@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "object-utils", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "feb20ca18237736b8bb4522b9d314e3d1008f12b54baedf7e56b33a8a3342805b59701bd1fab926f1aa5a594f53f18bf550a9929f85e1a23103b1e657d398cfc" + } + ], + "purl": "pkg:npm/%40chakra-ui/object-utils@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/object-utils@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "pin-input", + "version": "2.0.16", + "hashes": [ + { + "alg": "SHA-512", + "content": "e75722a0d629052822f7f8eae82af3a03be8f1fa4cc055eedd268545b28ee3bb3d0f3fce016d0ca63c9a6d37d2a703afd3129913e6b2ad8189a290b36525973e" + } + ], + "purl": "pkg:npm/%40chakra-ui/pin-input@2.0.16", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/pin-input@2.0.16", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "popover", + "version": "2.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "35756dc8cc58cc32b3cd0a61ffe185452337b448f780dbe5097ff1191b023adf48e38eb327522709dfdba1740a01cf35ddca0437d31c48e8cd5a0a3e342043f9" + } + ], + "purl": "pkg:npm/%40chakra-ui/popover@2.1.4", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/popover@2.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "popper", + "version": "3.0.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "e8b69c6c1197d29887598fc36313860934c5028446447a46211cd381f372f23c70e1ffabba4695b9d7783dcd9fc230937686c928cf2718d60860dbfdfc39aaf5" + } + ], + "purl": "pkg:npm/%40chakra-ui/popper@3.0.10", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/popper@3.0.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "portal", + "version": "2.0.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "0acb3ad62e162b328ef28bb56868c1cdcb17332f4b9df9e990e15fbda342a5450d11de9ce3bcfaf8585936aec6737f0f18d8d27cc2c07782e61fe1f465a9d820" + } + ], + "purl": "pkg:npm/%40chakra-ui/portal@2.0.11", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/portal@2.0.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "progress", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "75d01769818d39b1aa1f5b2d44063191da2ca5fe89e020ce841d2ecb0f41787452b189025105a450177f99e949b997861c41f622d17d4fb159e0985c7a93f718" + } + ], + "purl": "pkg:npm/%40chakra-ui/progress@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/progress@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "provider", + "version": "2.0.24", + "hashes": [ + { + "alg": "SHA-512", + "content": "df6f8319fa1700e50e5f08cbb2d74643e93f6280b0745c566f09c4029ed695e8ac958b0c725d0978834301bbe4b101f4a6206dcbbeecc13b967d4539708a31ee" + } + ], + "purl": "pkg:npm/%40chakra-ui/provider@2.0.24", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/provider@2.0.24", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "radio", + "version": "2.0.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "7bf858d60f765ddbb9779036ecd15f6b5f9c704daafc0e47eec73f33ba747c877a28edf70ecb76e47cbe1d386daa760dd18dce9b9f1f89710aa394ac76dbd27c" + } + ], + "purl": "pkg:npm/%40chakra-ui/radio@2.0.14", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/radio@2.0.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-children-utils", + "version": "2.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "aac29411f2bf0210db31ec56a3926199d964c4b839584c367458785e8aef535fdd4d8b117cfe9c8c57cef3313e5f717464536c80acfaadb379a14df8f462c417" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-children-utils@2.0.4", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-context", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "5984b4541979437fe4352850dba04ff90d0e18c793416728de14a2256bcedb060b63b37504baba74ab3cbf228765fa702a1d982f66d078039b8bebd2917a7ab5" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-context@2.0.5", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-context@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-env", + "version": "2.0.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "acfc141d17925a1eeb6c2c341de3daf0fbdcf90f367d416f5631d321b5ca9c4e9dfb4d5c084ee3e1fd4d2de443f694ad28f23ab08666f714c6bce0b397c17c8b" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-env@2.0.11", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-env@2.0.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-types", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "180a69f91fd58d2d545799ace62aeb8a3e4b38881433476a4951da832105133f3c2d12a4a8c0fd46e3b9efb66c55de069f450bb1a715242500d07b4d50124dcc" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-types@2.0.5", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-types@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-animation-state", + "version": "2.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "336914cd99120600e97ef9df7e1de44ec3083370ef9fe09332acbdcdf63decd2f83f72c058bd4cb85b4a76529f43c86cfd0a704bf7b0f024e60ad6b2c27e2c2a" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-animation-state@2.0.6", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-animation-state@2.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-callback-ref", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "bca9d795e0f63f30749c669b637e5f46d925322778cfb71e71b306d1f91ab0d36c8169ab41c5c93ae10a514542ca72fa14153a8019e92858b902a8fac7e2b8b7" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-callback-ref@2.0.5", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-controllable-state", + "version": "2.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed6b8aae1424a52468888e4f281bee22c3b8e8820fd30b114205ed4ad49a217bfe148bc8265f5cc505d36e6679ab50eceb8d5074050ac78fbabf42bfce86441e" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-controllable-state@2.0.6", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-disclosure", + "version": "2.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "e143de3cbf8e702637eca679f3988b8e0f22e89d2c8e92e6ee2646dcf53099bf7ba0a1d51eae83a6658833455f4a3713e806d2ab219c779057650060c2df0759" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-disclosure@2.0.6", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-disclosure@2.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-event-listener", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "7ad2c1a61322831cbf726ed8836db2dbd810f2efcadcf9e2479003657ed6557eb50a0b1af1c882aa34c4f6c4ed949416010c926d6c6df7e9a3953e7369ffba67" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-event-listener@2.0.5", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-event-listener@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-focus-effect", + "version": "2.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "c08f0e50dc1f6e4bac6a32da73c42d8df4b2366b0dbb50f9a403669d21c89ed1e1ba2e89c2fef93f1c7b4609811277c112995e06776147d13be620a33cb859fc" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-focus-effect@2.0.7", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-focus-effect@2.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-focus-on-pointer-down", + "version": "2.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f760aa2e222efb41b5c7f6648b18417325b243872acf95c45cbaef93482ee661a2bd13edc0a7e4554805718fe09f433ee1096a6290f79c283baca483d6972b8" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-focus-on-pointer-down@2.0.4", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-focus-on-pointer-down@2.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-interval", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ab6e28f97394242f836e17253899f63f9f245c90d060a067bd89cf39ef85553492177dab2c7af664d1607e96fa819f95d978b7f64e3f8e189ae0e23e07f70cf" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-interval@2.0.3", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-interval@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-latest-ref", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "7b1352403e2b3dc9434a6370b5c0a150227836e0b6509e1a9b234606ac128f268ae6334793692433bad9e88d08f2e97edba96fad7952ba1cafe9cd8f1706c541" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-latest-ref@2.0.3", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-latest-ref@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-merge-refs", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "b9cf8ca33059f1ab1a5293bc49670ae83e2cbd13c008deb78efe6ea2c5245c947ed398d02645287e47d06dfd8778655bad60abd1766c7ed2c89b832dfd032857" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-merge-refs@2.0.5", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-outside-click", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "5a6b5751e55a32dc4ff5a506186f8641a0de527fc1bdff13237114e66135f93b6a2c7c7203dc2dbd0babca7ae882fa6294b681003c27fc97817aab36c07a6fa8" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-outside-click@2.0.5", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-outside-click@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-pan-event", + "version": "2.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "56d825ddcf8c8f885d7a115114882bb9055772dc271b5e7dd048a7d45894f2c56796a3ba6e9ba0e99f81d78c416be17e5f468af83c67864245c9623ddcf92cda" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-pan-event@2.0.6", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-pan-event@2.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-previous", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "03638339ad2b9b61cce1aa977f1c48d333cb727e50ee20448d1c9f21085bf841fe776385ba3dcbdac955a08a69e9efe49b75f3bf677ebbf59b8e04f3750dddd3" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-previous@2.0.3", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-previous@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-safe-layout-effect", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "7654ef41447399d7f205b35dc9d80ee16cb6fc757c68937c2eccd3b726f9bd166cc9ab250ccfdfb5cc68f04f108c7c112c3fd5d44a5bfc0f3bdf541f8a67d569" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-safe-layout-effect@2.0.3", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-size", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "e1aac00297625e4e6ebf965e14a96d1140ace61df20fd769ea04c86976c076afbf10d2b78cc593c25ab335b26d0b2870a0e16b6e52d2741aecb01308b0d41f65" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-size@2.0.5", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-size@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-timeout", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "ac1054919490ab79c943c7ee324819358d92820e2f2a228da74e46c40c254fb4e2b4e7d5672a13ae2a90a6acf6f7a6d696690809367196a0967c4e5f5a9b13b2" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-timeout@2.0.3", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-timeout@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-use-update-effect", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbdb4232bd72b8397c01361d87ae06bfc9207b9c44d4333292a3c3670fbe3a806c4da5abdebc78d306e503c3485ae4b225ee44aed28fd8e7a096f264621af225" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-use-update-effect@2.0.5", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react-utils", + "version": "2.0.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "9e5c0f05595099c9753e22f3656cab4f71529eddef292901333434105e1225603f9ce22a4ef99f7dbe430b30aa3f3810684fc36b55e0bacf89b9f14633c18b09" + } + ], + "purl": "pkg:npm/%40chakra-ui/react-utils@2.0.9", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react-utils@2.0.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "react", + "version": "2.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "94f0c20ae6374bb5d27882be3feca91882fe945a84650b7c1f7232ab87286e550b32c8fcb2475252a6a843823d7c680e8b59284cf7b83a55dbfab9aac1043d31" + } + ], + "purl": "pkg:npm/%40chakra-ui/react@2.4.2", + "type": "framework", + "bom-ref": "pkg:npm/@chakra-ui/react@2.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "select", + "version": "2.0.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "7ef546c40b4b6885c638c89caf349aea298cc39876e92d5aaf7c723665e0478d1d6e94cf1e6b502646c705ff45c3041781280a5a0073b33b70e620c70a93d5cc" + } + ], + "purl": "pkg:npm/%40chakra-ui/select@2.0.14", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/select@2.0.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "shared-utils", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "a4253e49419d5f38c0b948944fc9ab89e90bded2557cd77049321a35e8a9ee4fd2583ce2beb2863300050717775d54c37afb55bac9dd90ee0626e437c882f30e" + } + ], + "purl": "pkg:npm/%40chakra-ui/shared-utils@2.0.3", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/shared-utils@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "skeleton", + "version": "2.0.18", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa3703f01815c7890bf0b99bf04be698318cd880a5e82aa1544d8b4a126b806ecf0cce91b7aad833ad7b92a2eeacb6198db2548b081ff555d689f4b42294f7d5" + } + ], + "purl": "pkg:npm/%40chakra-ui/skeleton@2.0.18", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/skeleton@2.0.18", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "slider", + "version": "2.0.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "cf8439ad6b5855374580156f47a694852320dc242e0208c9187bcb1c41830948d80ae057adbdd2996cafbf4dee2b28d26f04722aa4acbc09d20b1b661ce0edff" + } + ], + "purl": "pkg:npm/%40chakra-ui/slider@2.0.14", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/slider@2.0.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "spinner", + "version": "2.0.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "a623b682159d273432ffef3d983cdaef12e13e75bba40f800cd6e009bd6f9ab8889d679d4b8d4804a7bea523f3e0889d8c26c5bbbc70284d007ab1486eba1c08" + } + ], + "purl": "pkg:npm/%40chakra-ui/spinner@2.0.11", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/spinner@2.0.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "stat", + "version": "2.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "e977ae13fef0d018f20874b131bb1febfacd38eb3c0528add4d4bb83bf8977fe343dcfd22a53562ddde4c573e2778793dd1c3234874c3ed9b7d0e01cb6bf67a9" + } + ], + "purl": "pkg:npm/%40chakra-ui/stat@2.0.13", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/stat@2.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "styled-system", + "version": "2.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1b81e96c5111ab80b5701c0a343364a428a588e2022d78d8c0a23f7bfea1c4d63e1a53f1b7c042cf3dee85ddef984a06daf44ce2a8e2765563a61856b1feaf45" + } + ], + "purl": "pkg:npm/%40chakra-ui/styled-system@2.4.0", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/styled-system@2.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "switch", + "version": "2.0.17", + "hashes": [ + { + "alg": "SHA-512", + "content": "05069b7c2eaa622e71049bc414fccaab4ca5e9f4ed4cd3441d389de6bee1d0f59c0a70221f04094e9411a71a7e0232b9ebd2cc2ed4d745e4d9bcd06bcc4c0eac" + } + ], + "purl": "pkg:npm/%40chakra-ui/switch@2.0.17", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/switch@2.0.17", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "system", + "version": "2.3.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "ff69bc8457c5cce30ed8e9701f14d6a8834e049323c56c14e55fc0701ec2d2a4b9d43723f5cee4ba98a533a41daa238b2dd312ee621545262bf239fc80cc3d7c" + } + ], + "purl": "pkg:npm/%40chakra-ui/system@2.3.4", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/system@2.3.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "table", + "version": "2.0.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "4d2c73a5facea01fbd2d374d4cc9da402e8e4eca77e93942471275fb59c08829a593e9be1623734d0b2605a9430e1736f6b9bee80751b3148fb2319607c615c2" + } + ], + "purl": "pkg:npm/%40chakra-ui/table@2.0.12", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/table@2.0.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "tabs", + "version": "2.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e69ca0dc94025ed05a16e2d742f009676693cde5f723f76978af6b2a88bf56c9854433bd610f166e7844c8a61fc64ed7cc7a51bb67c7b9bc11cfe2b875453e6" + } + ], + "purl": "pkg:npm/%40chakra-ui/tabs@2.1.5", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/tabs@2.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "tag", + "version": "2.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "5b5bab7feb6f18cb7a27771cdf51ee7726d84a5f81e636143f90c9c735ccf69fa7dc9aef5d6028e03e8b9a92c11d8e734f698d9ded78245d6b55e45c1b846d76" + } + ], + "purl": "pkg:npm/%40chakra-ui/tag@2.0.13", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/tag@2.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "textarea", + "version": "2.0.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "afc845d6b0a2f86b1e2ed63f20679559714dd14bded9bf36d1442e9918f8ab18fb3ec3eac3584583b09e71b6dbf73c05dfc2bf9be0f721dc05789cc8d4cb6044" + } + ], + "purl": "pkg:npm/%40chakra-ui/textarea@2.0.14", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/textarea@2.0.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "theme-tools", + "version": "2.0.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "9557039aae69c94d106ec2052a3b7f8955050daa7b762d901ef3ef182840d584a3b60d4fb6e522f81c445d6ce9dcd7e0c3f378accbe506cf92d329c9ca97706e" + } + ], + "purl": "pkg:npm/%40chakra-ui/theme-tools@2.0.14", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/theme-tools@2.0.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "theme-utils", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "410a3048cf1fbd0953993d30f70b6a52558e0788bef5e03b3f85d19b86df841319ed7a4ae1cb55f79b0f786a9a5d571cb33e66d2ad40b8659afa3e9e3026ebae" + } + ], + "purl": "pkg:npm/%40chakra-ui/theme-utils@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/theme-utils@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "theme", + "version": "2.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec394e4225e69daa98caa5f0aa67c5482586914a27baa98d0b99a6502c31238df92a01cd09a1366c89ba0c8ecdd8d70872e55c7dcf159f452aac3a06537cc906" + } + ], + "purl": "pkg:npm/%40chakra-ui/theme@2.2.2", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/theme@2.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "toast", + "version": "4.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "1afe76510e1f26dce22fd420d18b5eadbefa0b51a0cd58abc8f0dfd9dc52cd396709c2886d8e24b4485e8721418c35d8a069056f8ecd654132872faef29dc650" + } + ], + "purl": "pkg:npm/%40chakra-ui/toast@4.0.4", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/toast@4.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "tooltip", + "version": "2.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "58381054430776cc94a4a1bd368832d8528b0607dd246ee14d2ad26c7d562ef1ec3e4a4f2e49cbe22e59fe90afa5ae00ed2cd36baa6cdf9d26c6d274e7831e32" + } + ], + "purl": "pkg:npm/%40chakra-ui/tooltip@2.2.2", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/tooltip@2.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "transition", + "version": "2.0.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "7dfe9e53e9b4f1c7187c2924d2129f63f5e5986c42adf6c182c2a05789a2ad9e122942f5195c9ef0262e1f0590941268fbcb34c88a6c4cdc40b97e27fdc5bdff" + } + ], + "purl": "pkg:npm/%40chakra-ui/transition@2.0.12", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/transition@2.0.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "utils", + "version": "2.0.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "d59d4c82cadf31084d7a349dacf264f2fe49e2009e7c7a3ed700663cf1d3cf96c611b0006d9d7769701f5f2f30d1e172d0dbe76b09f41075bb3b29e9fcc747f9" + } + ], + "purl": "pkg:npm/%40chakra-ui/utils@2.0.12", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/utils@2.0.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@chakra-ui", + "name": "visually-hidden", + "version": "2.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0311e7848cb7c80f7df7102e3a35d09b84ad87c8c5e5a65e47cdc263bb0588a72573e04d60290f61970a6aea0ae28ef9b3792cb04390f7b53c14aef65c93829" + } + ], + "purl": "pkg:npm/%40chakra-ui/visually-hidden@2.0.13", + "type": "library", + "bom-ref": "pkg:npm/@chakra-ui/visually-hidden@2.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@csstools", + "name": "css-parser-algorithms", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7532922071d6734ccfbdc4b972a18ffbf4cf154241d1e909f5d18abcc005a0db811610cf06df4e306359888039bd388d7461c705e49c60f5c818132754e6a1b0" + } + ], + "purl": "pkg:npm/%40csstools/css-parser-algorithms@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/@csstools/css-parser-algorithms@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@csstools", + "name": "css-tokenizer", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "19bad38f667c3024d4bfee76184d116c518ce76ef1b976745dae60d19f98379ef7baf792e06d2a8ba58d38ccb3df2ac533f8da20b4d3c09d3eba6c7cd44cea7c" + } + ], + "purl": "pkg:npm/%40csstools/css-tokenizer@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/@csstools/css-tokenizer@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@csstools", + "name": "media-query-list-parser", + "version": "2.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "33c705186c25f3aea8ebefaf218ee3d402aeabdbf9edc7fe7467a949cc0271bbadf72a4936be028fe2cb4d6962818519d2eca11282432ade65bf205f8762f765" + } + ], + "purl": "pkg:npm/%40csstools/media-query-list-parser@2.1.2", + "type": "library", + "bom-ref": "pkg:npm/@csstools/media-query-list-parser@2.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@csstools", + "name": "selector-specificity", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "84123db5f06db8f222f3ce59b19df620c114ff99e5647fca39560908e87b8323316952c698b79d62a14de948b52d7908f09942f08b2e0b4ac5d1bb5c45929de6" + } + ], + "purl": "pkg:npm/%40csstools/selector-specificity@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/@csstools/selector-specificity@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@discoveryjs", + "name": "json-ext", + "version": "0.5.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "74156e5d1d3cda09378ec169ed177f248e24cadc061de7270a84ed5c56fb0c1e82347a78ae0e64d5b860d2759d2c62e7395ef59660f319068b332f223cb634a7" + } + ], + "purl": "pkg:npm/%40discoveryjs/json-ext@0.5.7", + "type": "library", + "bom-ref": "pkg:npm/@discoveryjs/json-ext@0.5.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "babel-plugin", + "version": "11.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5192b0055dab003ba1469f9938680d5a0d9e6206f32b34177d03ed25bbbf3cbcbca27babc653422efc4c404be5af5fc6b9d82e3c8e4853da88635fb6cf53396c" + } + ], + "purl": "pkg:npm/%40emotion/babel-plugin@11.3.0", + "type": "library", + "bom-ref": "pkg:npm/@emotion/babel-plugin@11.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "babel-plugin", + "version": "11.9.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ebffb1c61fa1fac8a8275453448f631596b7aedc00ea7edaa3ab052f0f2fce27328583129e4d0f9e7947f6d05393b875640ce37688d6b6e6b017558b562428f" + } + ], + "purl": "pkg:npm/%40emotion/babel-plugin@11.9.2", + "type": "library", + "bom-ref": "pkg:npm/@emotion/babel-plugin@11.9.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "cache", + "version": "11.9.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1d82423f24a9425dafa5117be268cb4604bd329e9c78a2c87bae339713bd6af5b205f06f9784982f8bec03bb407421d095c77ec17df8b05e537d23752ecc5be" + } + ], + "purl": "pkg:npm/%40emotion/cache@11.9.3", + "type": "library", + "bom-ref": "pkg:npm/@emotion/cache@11.9.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "hash", + "version": "0.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "90126d7fb3c7e9a5b067a7e46b7cd0d29e92058cf1e1f9752e865713646b9d8493f579639bb59f289ad4e20fd7af705e83bd8c2eba750163549ae6094cbec2a3" + } + ], + "purl": "pkg:npm/%40emotion/hash@0.8.0", + "type": "library", + "bom-ref": "pkg:npm/@emotion/hash@0.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "is-prop-valid", + "version": "0.8.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "bb95ad9de100af92031b65afeb9ca1ba73d230b229b8ab1bb8e92d4688dfac4884bd1c82f392e03cc648eb772becd52a4fc64819d49583c64a1b122e83895770" + } + ], + "purl": "pkg:npm/%40emotion/is-prop-valid@0.8.8", + "type": "library", + "bom-ref": "pkg:npm/@emotion/is-prop-valid@0.8.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "is-prop-valid", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f5192296f5c0b9f407b12b234373c8cd29ecfa9c6e5f8116f046c67923e364c1ee331eb3fcc3b36fd2e9a8d89e417e05de6adedcd592dbe5f724d4474d0ced51" + } + ], + "purl": "pkg:npm/%40emotion/is-prop-valid@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/@emotion/is-prop-valid@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "memoize", + "version": "0.7.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "25afd57ea7b71e9bb346c1b5a01b564c79363c667b191fb6573e626067a5030f1dc77d8ad32ecf8d5bb12bacf59cca593aa005b1150f0a42b5623279eaa26583" + } + ], + "purl": "pkg:npm/%40emotion/memoize@0.7.4", + "type": "library", + "bom-ref": "pkg:npm/@emotion/memoize@0.7.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "memoize", + "version": "0.7.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "8a05fd6b7ec347664f198b55eacb99eb086bf294c5b721cbdcafe82d4a2dc694953b60126a9ae601ed8392aeed068ec2458ecc303ac06bd9ee40ff7f606f05c5" + } + ], + "purl": "pkg:npm/%40emotion/memoize@0.7.5", + "type": "library", + "bom-ref": "pkg:npm/@emotion/memoize@0.7.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "react", + "version": "11.9.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "83d43519c4ce9733848eac2e2c5fd977d2c2fb81658e33e30dfc5233b2a611a926fa1b075e4f9b619daafbf853273af4394364ba3a3bda95cb42f5e3e87f8625" + } + ], + "purl": "pkg:npm/%40emotion/react@11.9.3", + "type": "framework", + "bom-ref": "pkg:npm/@emotion/react@11.9.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "serialize", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "f79320349f7efda8f153b40802bba2380758363c595fb1b69a182bb435acc00db556f8982113f5479422959fdb0d8e36c622ac6a4b4fe1e8096f741d610662d4" + } + ], + "purl": "pkg:npm/%40emotion/serialize@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/@emotion/serialize@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "serialize", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "d491da992a47f0f21f17000caf23b66cd91afb2f3e280e7281ae4e71fd9ded91222636fbc652d6eda92704666a24b6a3b8b3af27eef6bcdf88052c0f9570f53e" + } + ], + "purl": "pkg:npm/%40emotion/serialize@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/@emotion/serialize@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "sheet", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "27760f71c5513224d9c58018d083aade477e8543fc89d63c2b3e81fc2ca8f89b97ab9d8493ecdb3db49052b550a7de5a27e96c016ec33cbd4fd99f94d631a428" + } + ], + "purl": "pkg:npm/%40emotion/sheet@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/@emotion/sheet@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "styled", + "version": "11.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7d4a0b70ddc17cc88b951849f02b8f50c1322a42c4a0cfa7f94c806e7a8612c09de48cca43b55014bb73a4939a083dbf551dbed615d04e74995d525e893365b4" + } + ], + "purl": "pkg:npm/%40emotion/styled@11.3.0", + "type": "library", + "bom-ref": "pkg:npm/@emotion/styled@11.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "unitless", + "version": "0.7.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "3963913697e332c49250156b44154610292159c50b380273f595bcb8af6a8310fef3b33b8c745cbe1fc0f7a5d73615d32e629ca18490b41117ee51cc3bb611c2" + } + ], + "purl": "pkg:npm/%40emotion/unitless@0.7.5", + "type": "library", + "bom-ref": "pkg:npm/@emotion/unitless@0.7.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "utils", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8912dafd8e11b391ff7f69e299ccd8992e6414911ba6256f80ddd755f674db621886e340d484521c48b37287fcf0bb424d7b65f52d82c6ddf62a069712eef625" + } + ], + "purl": "pkg:npm/%40emotion/utils@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/@emotion/utils@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@emotion", + "name": "weak-memoize", + "version": "0.2.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "e94ef50b65a9eebe57b45b50cd8ad6e622854faece8b1ad2c63238329b421f375256581a6dccf3a8b7b4652827b9bff92a9e2149ba43075b4ccad658f69c31c4" + } + ], + "purl": "pkg:npm/%40emotion/weak-memoize@0.2.5", + "type": "library", + "bom-ref": "pkg:npm/@emotion/weak-memoize@0.2.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@eslint", + "name": "eslintrc", + "version": "1.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5165b44cc4e693677b84b7160f5fdeda0e470ccfc743772c68b4aa5c27eac21e2e343b8daa568a597984b0be02b38d59d0a9c82cdbf06c701a8770b6cadd3a93" + } + ], + "purl": "pkg:npm/%40eslint/eslintrc@1.3.0", + "type": "library", + "bom-ref": "pkg:npm/@eslint/eslintrc@1.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@exodus", + "name": "schemasafe", + "version": "1.0.0-rc.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a85f0d14d9069adf79b7794731b879c7a4dbc78cd94ba3482d574f755c1a5a44835a0785fa146086e572b148534588fa6e8140ea36bb87cdaaa94dd0e6e003a" + } + ], + "purl": "pkg:npm/%40exodus/schemasafe@1.0.0-rc.3", + "type": "library", + "bom-ref": "pkg:npm/@exodus/schemasafe@1.0.0-rc.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@fastify", + "name": "busboy", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "25414969de65bfb8f18fddba18f8329ab590c718cf62e24d88d8cd333a93f878ae3fa565ddd939c731bef2c4d7f7a9e9d19025baf68cccfb23847679acdb8d41" + } + ], + "purl": "pkg:npm/%40fastify/busboy@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/@fastify/busboy@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@humanwhocodes", + "name": "config-array", + "version": "0.9.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "39bc8cc96c59882bbfc938ac03bbb3c7cd6ce34c51d9f0f90a0ff62aaec6d366a390db9b25fe81a298034e60f273753bb17a4d28cf1c60ec3bb3b4f2afe0e70b" + } + ], + "purl": "pkg:npm/%40humanwhocodes/config-array@0.9.5", + "type": "library", + "bom-ref": "pkg:npm/@humanwhocodes/config-array@0.9.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@humanwhocodes", + "name": "object-schema", + "version": "1.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "66740c9cb5787bb843954bf0f07f94f0048bd36492d869fafbd01cdf01862c87bbfa37b601e00ec4f63e8b320f2437c50dbede0e37afd14b3c30ed6215137c84" + } + ], + "purl": "pkg:npm/%40humanwhocodes/object-schema@1.2.1", + "type": "library", + "bom-ref": "pkg:npm/@humanwhocodes/object-schema@1.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@istanbuljs", + "name": "load-nyc-config", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5637874a5233a6ffcdc83dcdd18b877d738f0c88b1700d6ad9957df30b0ca9c6253e6bf69f761bda560ff5730496768555783903b60b4de2eee95f38b900e399" + } + ], + "purl": "pkg:npm/%40istanbuljs/load-nyc-config@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/@istanbuljs/load-nyc-config@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@istanbuljs", + "name": "schema", + "version": "0.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "657458e2336f56049543c0cbdcb4dc6a4680b57c13554c44f3586c96cc83d80b685d6ff05686f5d0790e2755ffa4095c23b0fed98a192a0e5da3c1bfc3a45880" + } + ], + "purl": "pkg:npm/%40istanbuljs/schema@0.1.3", + "type": "library", + "bom-ref": "pkg:npm/@istanbuljs/schema@0.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "console", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "919fed3694b73579f49a55d75cf36e0d99dbe1cd28676d2be0ae5e7a6336937d190b71b44f4da75d4bf285fe5875b5d61cf1092dcf6a18bc44676d7a31d2fe66" + } + ], + "purl": "pkg:npm/%40jest/console@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/console@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "core", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "00aebf513aef403d02776e0d4aa98803aacab2ed2d288c5f88276e719beac58766322b0e600b1d22db294fe7d00d060044f7fc5e08c01598b4a205b66a01f99d" + } + ], + "purl": "pkg:npm/%40jest/core@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/core@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "environment", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd642384f25edff8216a897fe01ab8f3424a5d5fd17f0f2741d37b7f8d5f33c5431cb731297a2ee90c97021dc416bf7f6d51b7c7be33d4d58390ff3b12263c80" + } + ], + "purl": "pkg:npm/%40jest/environment@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/environment@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "fake-timers", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "fda3e8c28a25c1ad3b93bfe83376804a778d78118298642c737ba0378bbab380bfface4ceb8305a3ff9d8d3762c1c6d09517c51251ae0d75b36968fa42028e6d" + } + ], + "purl": "pkg:npm/%40jest/fake-timers@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/fake-timers@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "globals", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "64424d078d4e0504201b383222702fd1451f0c38f7ba9987c9d8e2792c45bd346e64496bc7bb5783fb95439858544c225ecdfe68cb0078473d5fbc6248a0a6e1" + } + ], + "purl": "pkg:npm/%40jest/globals@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/globals@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "reporters", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "70f5e1f6158895524c424564f38688bd7b81078b9042616a66269c96816e1a23f76a1d6c6c2c42a2c89d5c50dfa86f3ee9f3b5a11d9d4c94e5b0ecb85459947f" + } + ], + "purl": "pkg:npm/%40jest/reporters@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/reporters@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "source-map", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbd3481d4605dcf25194793df0d742fcdd6097cf012f4f1a41082ee24e19a294240b0f6df5c57c9ad9774d5f1bfd8081f176954c5ae6513009be3b27b438ab7a" + } + ], + "purl": "pkg:npm/%40jest/source-map@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/source-map@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "test-result", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "116df9976458154714431149cf90afe4c4cec6524842ce08ee0c738b6cd553b3c984ec1f62ad4c742e678529988d7d6098c98b3ef077b08682f8191c1d105f6a" + } + ], + "purl": "pkg:npm/%40jest/test-result@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/test-result@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "test-sequencer", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c285e245ed6076fbd26e092ed507f126188750ba1b6a8d1348f40e3789d1efdc4e0a96d093b0fb0bc6f75ab9b147498c18fdf3633168e5eaf35184388deefa5" + } + ], + "purl": "pkg:npm/%40jest/test-sequencer@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/test-sequencer@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "transform", + "version": "27.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ddf4af434da4baf8ce2350b5b2ca8c541289a597fa9f0a02892bb4d3300a8799eba774a9b4db59cbff2ce5d79ac879eac618c3f4258327ecaa430b90d1969f5d" + } + ], + "purl": "pkg:npm/%40jest/transform@27.3.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/transform@27.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "transform", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "8a938de96b58825ff5df6f60e4020955b52e121d306556dda46c02f7d270e0bc2ea01352f79315a6153acce783f690e4a27f8b2db14bee539045aa5b07c4821f" + } + ], + "purl": "pkg:npm/%40jest/transform@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/transform@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "types", + "version": "27.2.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "9e6b8ce15b83b4265c63e793a70fb49efb2dc1178cb233e88fb651f34fc16e2c6e9612da897f9f6eff2878b5bc59994931cb0642c4e630a4ff89366ed54cbf95" + } + ], + "purl": "pkg:npm/%40jest/types@27.2.5", + "type": "library", + "bom-ref": "pkg:npm/@jest/types@27.2.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jest", + "name": "types", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0b1e3a889f50a704138c876ae5526ed904cc32cdd09448c8d31d506c13f95b5fa7333c9cd979a29a2451fc26d7f533b470f4de525c5630ebbc9ac958b09f0313" + } + ], + "purl": "pkg:npm/%40jest/types@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/@jest/types@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "gen-mapping", + "version": "0.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b105c26ac164f94f2559811eeba5b1443384f4f8d5cf8bd2339d5f4eedc7c3e0a54e951241bef5f3bef6bc7de9c92e694a1a7a96f40ced2c602035d75e6397ef" + } + ], + "purl": "pkg:npm/%40jridgewell/gen-mapping@0.1.1", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/gen-mapping@0.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "gen-mapping", + "version": "0.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "9a1eb9c4a400cc8ea205c173c2fdbc29559298291d4415a83a1f9b610196dfee8e66f6db3774ea306a3986a631427891707f45d95648a090a6e296b704f0cafc" + } + ], + "purl": "pkg:npm/%40jridgewell/gen-mapping@0.3.2", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/gen-mapping@0.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "gen-mapping", + "version": "0.3.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "1cb85258e2d18bcef9ce38cc1bfafe36fd28096f2e9866f4060121c97ddd0d7dde83066d07c3ea2e78f3df279db7c4794ad06bcdc838681a6787c500f43d41a1" + } + ], + "purl": "pkg:npm/%40jridgewell/gen-mapping@0.3.3", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/gen-mapping@0.3.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "resolve-uri", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1769ac95aded69df8c7e1b79709abb2d25dc76e74a4d6095614830ea92c538e1d24ed6658fa496358029f8086ea8b9967413b65f984facb72ef1c54ff1fcb6f3" + } + ], + "purl": "pkg:npm/%40jridgewell/resolve-uri@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/resolve-uri@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "resolve-uri", + "version": "3.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "75261987b1e1083b422a6e106a45f4c45a6c443aa38ed65ffe48c8fefdd3dcdc2de6bf3fab3fccd7d17dc92c8ea94f78497066786f6db53ba5f989d1e0b3b114" + } + ], + "purl": "pkg:npm/%40jridgewell/resolve-uri@3.1.1", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/resolve-uri@3.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "set-array", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0ade4ca9990b1845d35664186c6b71f5256a0f67eac2f76e6dda6ce43ddd8e30248242b04fdd7c54d3b3eb9a441c56984de59cba4989987e52c2c03d4e7d8e6d" + } + ], + "purl": "pkg:npm/%40jridgewell/set-array@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/set-array@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "set-array", + "version": "1.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "c6792c7ae3400ccd20b766ecf81be13b4a7bf0c93beb662765db2ecc5574d7c3681b54a3d52090be94aa6bb5d46936a6e6f0066ac00157da9701230a9c533033" + } + ], + "purl": "pkg:npm/%40jridgewell/set-array@1.1.2", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/set-array@1.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "source-map", + "version": "0.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "9bb3bda36b91f24d8e6c3cac658cdd7e16f4f15b849a5e685868a8b1ad5575a3d9fc0e90c8f90026ec0dd10d658542ce7fa07b32d4261c4352ef8de15ad0ab83" + } + ], + "purl": "pkg:npm/%40jridgewell/source-map@0.3.2", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/source-map@0.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "sourcemap-codec", + "version": "1.4.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "5cf4891d69a2dfde1fb94bb30e71b3d7088aa967e8d725de70740c45fda5ea1ced4cefa73ebbbae7c0320e781a05eee2b08c44911b0f47715987eb3b8956b853" + } + ], + "purl": "pkg:npm/%40jridgewell/sourcemap-codec@1.4.14", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/sourcemap-codec@1.4.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "sourcemap-codec", + "version": "1.4.15", + "hashes": [ + { + "alg": "SHA-512", + "content": "785dabc4246e9442971d34620eb0f2e9eacc616a8dc382cf750f14400e21baec5a42c55e44f165da833ca031b130584951665ff4c7292ed25ab030d96ff0697a" + } + ], + "purl": "pkg:npm/%40jridgewell/sourcemap-codec@1.4.15", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/sourcemap-codec@1.4.15", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "trace-mapping", + "version": "0.3.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc5bfdb6d21e762bf1d2ec774128e182d0958cf65de65e3a64e303482c271f5c943b67bdeb880ef0b646cafd9092a72047a4e7054d6ffb5205aa67a81bed1425" + } + ], + "purl": "pkg:npm/%40jridgewell/trace-mapping@0.3.4", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/trace-mapping@0.3.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "trace-mapping", + "version": "0.3.19", + "hashes": [ + { + "alg": "SHA-512", + "content": "91fdfb42d7d6f87c31fdbb9618c3dc47ad2217dce21daeabfc26492076e6726e3ed2aad78957717a0007d05eb275d11543bcdd9237060a00b352ef8171b850c7" + } + ], + "purl": "pkg:npm/%40jridgewell/trace-mapping@0.3.19", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/trace-mapping@0.3.19", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "trace-mapping", + "version": "0.3.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "a35c5b2a1a7daa7200a0725259de8a94265faac94be2f6a5485f351fc2268a8380c65b966163a95a4a7292d636be7b78b5bad7f5761ac68beae9c828c1a269db" + } + ], + "purl": "pkg:npm/%40jridgewell/trace-mapping@0.3.13", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/trace-mapping@0.3.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@jridgewell", + "name": "trace-mapping", + "version": "0.3.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c95847d0f653d3be6dd29de5b044554bceb87a9e18f0ab0ed350514110ccf0be0eedecf0837a77f6943c2aa383505f37698015f21600d69d003edaf92bba4b1" + } + ], + "purl": "pkg:npm/%40jridgewell/trace-mapping@0.3.14", + "type": "library", + "bom-ref": "pkg:npm/@jridgewell/trace-mapping@0.3.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@nodelib", + "name": "fs.scandir", + "version": "2.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "beadb806adf29b91c4426d8d282af7c970f08dceef4ec1138510e7929d832bda75baa2d1f831eeae6fcd393a34286ec760753b7a9a4a663dcccaa62e3017fada" + } + ], + "purl": "pkg:npm/%40nodelib/fs.scandir@2.1.5", + "type": "library", + "bom-ref": "pkg:npm/@nodelib/fs.scandir@2.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@nodelib", + "name": "fs.stat", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "46484f3e9db3aea0c0400ff68cd867ced70f025bfae17761229edaef8e78039a2f23b06e93182decc5fbb9dc00bb7ce0d437293d4d2bcf7555d5279aaaf638f8" + } + ], + "purl": "pkg:npm/%40nodelib/fs.stat@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/@nodelib/fs.stat@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@nodelib", + "name": "fs.walk", + "version": "1.2.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "053221a1c6cf052ad1987c4e00916d475f282e1c53b4014302f2fc858d52de253c93e13ad16fd816ce23ae2c46cd08cca45e2a3d7c48407723543f5dcf50b640" + } + ], + "purl": "pkg:npm/%40nodelib/fs.walk@1.2.7", + "type": "library", + "bom-ref": "pkg:npm/@nodelib/fs.walk@1.2.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@npmcli", + "name": "move-file", + "version": "1.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "d5251ffc28361b3183c9a7f5e5a47d4adf535a56fe5ef6d95d6a43c7c60ab3b30bccc1ff0427a8a6ffb2f6fcebce091fca4086b963a54aede66618f6f8541cae" + } + ], + "purl": "pkg:npm/%40npmcli/move-file@1.1.2", + "type": "library", + "bom-ref": "pkg:npm/@npmcli/move-file@1.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@popperjs", + "name": "core", + "version": "2.11.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "f761519a9a638eacf6f55309d9d9fec5dc97641acc944e36015e8aaba0708d657b08d516d61b3616dc5234b404fa0261699e8002662e3bdcbc76c86170197bbc" + } + ], + "purl": "pkg:npm/%40popperjs/core@2.11.2", + "type": "library", + "bom-ref": "pkg:npm/@popperjs/core@2.11.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@reactflow", + "name": "background", + "version": "11.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "49841b091094d06bb14ffe344e6ed92be979c01c869cd2522ed6616cbf42fc797b261b095d5dd4197af4beb96155950112d91603b5e164cff94bd5c40395d214" + } + ], + "purl": "pkg:npm/%40reactflow/background@11.2.4", + "type": "framework", + "bom-ref": "pkg:npm/@reactflow/background@11.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@reactflow", + "name": "controls", + "version": "11.1.15", + "hashes": [ + { + "alg": "SHA-512", + "content": "fffdf75df058bbcbd0e9badf9a56702ab0e887ef2187ddf13b677cf178aa7c86eb3c411bdf64988ec6fd992f55b8728d952216f9e076edf040d46b74d26123e7" + } + ], + "purl": "pkg:npm/%40reactflow/controls@11.1.15", + "type": "framework", + "bom-ref": "pkg:npm/@reactflow/controls@11.1.15", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@reactflow", + "name": "core", + "version": "11.7.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "9edd13f04469f1313b6020d05626a8118f656f44ad0cfad61d5c77cc18e14ad158113df073cf2df1045ab1975ff7dc514e6c8db48dd4dcce343391012cd52933" + } + ], + "purl": "pkg:npm/%40reactflow/core@11.7.4", + "type": "framework", + "bom-ref": "pkg:npm/@reactflow/core@11.7.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@reactflow", + "name": "minimap", + "version": "11.5.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "d6d0c18f6cd7da0c6eda81d4eaabc7e5118dace5917d1c6ef37ebd2a10e8b6eb81379c89ac65c9cd620a8a4c21ce3b0db10258381f81d1c4b8e325807f04b0cf" + } + ], + "purl": "pkg:npm/%40reactflow/minimap@11.5.4", + "type": "framework", + "bom-ref": "pkg:npm/@reactflow/minimap@11.5.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@reactflow", + "name": "node-resizer", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e50f8806665fa69fdb62cc37f8a455241d6751b8fa5b75c0a79c9cc78b8d587f8af7cbdbb2cca6c90b16d2fbca90887110f83ab6488cccee145915afc01c2dd6" + } + ], + "purl": "pkg:npm/%40reactflow/node-resizer@2.1.1", + "type": "framework", + "bom-ref": "pkg:npm/@reactflow/node-resizer@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@reactflow", + "name": "node-toolbar", + "version": "1.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "b85432f71a6883ddacd06d70b0f2e78b057d9f21f88bf3262fb42832c59d9ca68e8bb5cc85df1225c0b351d1c2de2991db51e5b6cb902137dffd7439d40a4c6e" + } + ], + "purl": "pkg:npm/%40reactflow/node-toolbar@1.2.3", + "type": "framework", + "bom-ref": "pkg:npm/@reactflow/node-toolbar@1.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@redocly", + "name": "ajv", + "version": "8.6.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbda8d8f4fffb59b560768df5cd2b7057d7c052069f73351eca13b94ccac547c1b66d637f763890a39ba45bfe1e141c7dabd40aa33441c50fa6d19fe0ea53d33" + } + ], + "purl": "pkg:npm/%40redocly/ajv@8.6.4", + "type": "library", + "bom-ref": "pkg:npm/@redocly/ajv@8.6.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@redocly", + "name": "openapi-core", + "version": "1.0.0-beta.102", + "hashes": [ + { + "alg": "SHA-512", + "content": "dc5af77e0fbd544178fb8ba8caf38e93ef62a665f61988656f5f2e65ba42e2fddc5201a991344664cd907ad7da87b4e0c762e0a8bbb0f00d627030fa65e7761b" + } + ], + "purl": "pkg:npm/%40redocly/openapi-core@1.0.0-beta.102", + "type": "library", + "bom-ref": "pkg:npm/@redocly/openapi-core@1.0.0-beta.102", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@sinonjs", + "name": "commons", + "version": "1.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "c6435c2c09ffc19697d7844f9708b370a89c0e4f46dc5f26da75372fb5249b9cc1813c224f4c2ca05007c7d26ae7a7c9035cffeee286b4246ed7ab0e5022c81d" + } + ], + "purl": "pkg:npm/%40sinonjs/commons@1.8.3", + "type": "library", + "bom-ref": "pkg:npm/@sinonjs/commons@1.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@sinonjs", + "name": "fake-timers", + "version": "8.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3803c9500b6078836187f4c0954203e104ece773639bbc7375d695944b3f497c20b620f5b56db6cc007f5b5c1da9fae99a292069643d170e96b3e86c8919b956" + } + ], + "purl": "pkg:npm/%40sinonjs/fake-timers@8.1.0", + "type": "library", + "bom-ref": "pkg:npm/@sinonjs/fake-timers@8.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@testing-library", + "name": "dom", + "version": "8.13.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f551e07c86ad28d5d035a653b4b9da948cb48cd673637e5ae12de88b4f1802df47bf556c7d9fc37c0e3994cf03fd486d1c1189e3f946c29d0f66456775192839" + } + ], + "purl": "pkg:npm/%40testing-library/dom@8.13.0", + "type": "library", + "bom-ref": "pkg:npm/@testing-library/dom@8.13.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@testing-library", + "name": "jest-dom", + "version": "5.16.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "1b2f88a05bad6cc41c932d24f9baaaba65d9d5c4c6b302ec16a98d2f335d48a914f4a195daef685e1ba409b6c9f7f2d13ca8aac31104f15a55ffe61995f90f50" + } + ], + "purl": "pkg:npm/%40testing-library/jest-dom@5.16.4", + "type": "library", + "bom-ref": "pkg:npm/@testing-library/jest-dom@5.16.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@testing-library", + "name": "react", + "version": "13.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0c1efd680e36ebe75e1601928e77f982b7330cf88be2d68ade115a6be339abbab6d0a72f7bd790a2db4e1b9919ef8284af9e6fd2d536090a2b9924832bcef361" + } + ], + "purl": "pkg:npm/%40testing-library/react@13.3.0", + "type": "framework", + "bom-ref": "pkg:npm/@testing-library/react@13.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@tootallnate", + "name": "once", + "version": "1.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "45bcc9be5373991ab97373b4f548a97ae5e7a38b40d4513a8a43a3c592b4b6ec55bf7e35da5eb8979b755b9a63e3eac9abdbe9926fe4c22474eda6579ec28fc7" + } + ], + "purl": "pkg:npm/%40tootallnate/once@1.1.2", + "type": "library", + "bom-ref": "pkg:npm/@tootallnate/once@1.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@trysound", + "name": "sax", + "version": "0.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2fbcfd060acd11c632518b45f876847e24b979b921f635ea6eccf3ee90b485104f69ab55d178d20f7f9e1eba6a15e9907e0c22145d103c86ab9c88a12039fb38" + } + ], + "purl": "pkg:npm/%40trysound/sax@0.2.0", + "type": "framework", + "bom-ref": "pkg:npm/@trysound/sax@0.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "aria-query", + "version": "4.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e7629004d58ea447228cfd7904ba24508531ef933301bab4c79e914b60b0463c8ca564d3ecf6325cb8e3985b13cb242484b66653d18f2b1c3a2428deeb4538a" + } + ], + "purl": "pkg:npm/%40types/aria-query@4.2.2", + "type": "library", + "bom-ref": "pkg:npm/@types/aria-query@4.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "babel__core", + "version": "7.1.16", + "hashes": [ + { + "alg": "SHA-512", + "content": "100107b62b1330cf8a68ac1f59d0b7a3296522ab309739d7088542b7bfe844dae1f838604f850404d0bf8e5003363bf0ed49df6dc76419070f559d716222dcad" + } + ], + "purl": "pkg:npm/%40types/babel__core@7.1.16", + "type": "library", + "bom-ref": "pkg:npm/@types/babel__core@7.1.16", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "babel__generator", + "version": "7.6.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "fc65829b3256a95edd8905b9e2c98967359b4857f8418b45ef55822a1731e91bbfb45c90218d9e8a221370201eb8f6cd4af4fd6021a454caaabd293667499788" + } + ], + "purl": "pkg:npm/%40types/babel__generator@7.6.3", + "type": "library", + "bom-ref": "pkg:npm/@types/babel__generator@7.6.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "babel__template", + "version": "7.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6b304529e997ea4320e48a3efeb7464f47641ab79ba14551d02766ddfcfd4095a96901894505e5ec2fba84e4c265c32597b285c8442981b608da51ddb12e14ee" + } + ], + "purl": "pkg:npm/%40types/babel__template@7.4.1", + "type": "library", + "bom-ref": "pkg:npm/@types/babel__template@7.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "babel__traverse", + "version": "7.14.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "2b6c1a5dd5c18b6df4d9751d707711d6309e5342cbe130fd1d1b3f824d0dd97beb86df86fc17c96b840e6c14197e131dc620a957708e97935fab8b8a4de4e724" + } + ], + "purl": "pkg:npm/%40types/babel__traverse@7.14.2", + "type": "library", + "bom-ref": "pkg:npm/@types/babel__traverse@7.14.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "color-convert", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9bb186ec828a1ae2545ef919d6aa86dc285c71d20cfea041a3dd77cfe5dfb749ca097e21014fc8c4ac19054e1ca5167b192e64578bce6e552420bb524a108f5d" + } + ], + "purl": "pkg:npm/%40types/color-convert@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/color-convert@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "color-name", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "aebf8e432023c737bb1a05ab49a270c9d1d2b48847ab696f63704e0b6323eca9f323b5cad14c354ce39d23d943a1a8c46d258b898828a387f5479d5ead07e13d" + } + ], + "purl": "pkg:npm/%40types/color-name@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/@types/color-name@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "color", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "5fffeacc9ddddd98fcd89f6c0bf0b5f196397f8deeb4f6c027a3e162dfcceee1ba7ad705e8c46929d37cf34281cb8dc1d0133349f793f7a333aec363148dc66c" + } + ], + "purl": "pkg:npm/%40types/color@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/@types/color@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-array", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "45ea32fa92a7bec92c374950525707e9d3868d167fdd64705d1fff9beffc96dd415de238c72694668a942cd8f25d746e874323e0b369902be15294256375f9c5" + } + ], + "purl": "pkg:npm/%40types/d3-array@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-array@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-axis", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce38bf8886dd778f60f56374688b067307130549202ec092c01fae1fe2cf54302229610d32d237709116b7eeff618c1e94ca1999b05fcc0dea09dad9d9714d9f" + } + ], + "purl": "pkg:npm/%40types/d3-axis@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-axis@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-brush", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "079df60e8cec893b90307bb660285d654d2ab052528a8dd0ea398160660da7780c0f3066b851603edf6a280e1562e2d9329e2a73a797ec8505504b2f1e25d903" + } + ], + "purl": "pkg:npm/%40types/d3-brush@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-brush@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-chord", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "7907dcc481eb83b57ef96f10c67e9092a04d06893285d592012ef701b91b333bcb42655506f8a49e8cf64914bf6497483a685c9a6742444fcd14e9b6f19d4033" + } + ], + "purl": "pkg:npm/%40types/d3-chord@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-chord@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-color", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1caba270f1c9baf3e0083fa7a7a49ef4c42f4ba3826c998e8c6bf29733094650f05178ca4d35ece8fc2093bf4ed3d563fe1a37bb5a1f5e784539a11658fae5c0" + } + ], + "purl": "pkg:npm/%40types/d3-color@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-color@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-color", + "version": "1.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "7d8b6254b058cbb5505fe2b1ef053fb8e2241909fc680118f2858ca328dadcde1d2ddf187fa5e048847fe325af32ebde34e1f9552867a82811aaa87f50d6a704" + } + ], + "purl": "pkg:npm/%40types/d3-color@1.4.2", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-color@1.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-contour", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0b7cdf06b84766fae90002b7617a8b595006a3cec0e12bc9f3743fcd527cac558974a7a35270d869664f900f0af3891bdaf0c0fe0f742d3400cfb7ad5dc82841" + } + ], + "purl": "pkg:npm/%40types/d3-contour@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-contour@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-delaunay", + "version": "6.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b4bc50dac7d3d29eacc5d1bbe5ce9ffde92ac63c98474f8bc0faec3b599b0bd6030733c986cd876c9251ae7f04cf50c1a07468db2c7b60401323ef15d6718c9d" + } + ], + "purl": "pkg:npm/%40types/d3-delaunay@6.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-delaunay@6.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-dispatch", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "361c4c9f76c092a863a3169b54958aaf28676575d86154316819db00dbb43bde3e3bf9d7f6a4a3ac0d4fd636c0409c497fe542ef64f10d7fd825c2ae7b96d1ab" + } + ], + "purl": "pkg:npm/%40types/d3-dispatch@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-dispatch@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-drag", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a3555aedb2f0c24ea1d37fa748cf1da5a184627a081b5f4fd252aa96273c527dfaca687d35290d157d7289730a34cc7cac9d0a7e79f67a8bee15a2fa26f8f4cc" + } + ], + "purl": "pkg:npm/%40types/d3-drag@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-drag@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-dsv", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a34ffb465325f69e67e85403a6db8954cc437ffec40c4bf649810efc2c1d1b6b6bd614df5158b421abe49366b1f95a5a43fd63561a678f9aead678fcbf0867d8" + } + ], + "purl": "pkg:npm/%40types/d3-dsv@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-dsv@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-ease", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "68ca3879a00e8a326303ab94f8621e5b4d7c76fcbdfa81f963654f3f38e37f17afbc643fa110ecfad7d80bd6f9d10e01ca0451f321364022ecad3d16b4056c78" + } + ], + "purl": "pkg:npm/%40types/d3-ease@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-ease@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-fetch", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6864934ec2b388ab3ece87a43b976ce468d7d791f47b985489bc6be50ff0a2abff92437f5de60ca71c967fd1f8edf3779cdd62fbfaedecb2a2228d0b41212b3" + } + ], + "purl": "pkg:npm/%40types/d3-fetch@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-fetch@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-force", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "cfc1ad78655f91624c2acc7a8700b74a24d22eca4bf7c54da66bcba4414942964fabac6903523c1cd043352a6e91f2b455bd25eb8cc6161cee9cb80401c05648" + } + ], + "purl": "pkg:npm/%40types/d3-force@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-force@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-format", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4a63bd227c20b3a2b90bb889037b467d6137fd451d828c15f589a246fab80cfdc3cffac3beabd61d43d59d8507203e3d44422276ff4fb25249338931ba2ee6e" + } + ], + "purl": "pkg:npm/%40types/d3-format@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-format@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-geo", + "version": "3.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "0dba8aecc2d803c2e9c8741fbfa2a5cf4e36e9b4047fb6d14ef84ccb8e2c3465726685a7fff07473e41b7a0f0eb22d8e6dd73d04b2d76002a9c967a07b6ffb2d" + } + ], + "purl": "pkg:npm/%40types/d3-geo@3.0.2", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-geo@3.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-hierarchy", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "83eb1ecbbaab09add46ec42531964138744e905ab1eca64abd4a51cc8fed029ffc7ab656a58abb16034abd8c1e6e2d8b684895b359258547dddd60938719a659" + } + ], + "purl": "pkg:npm/%40types/d3-hierarchy@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-hierarchy@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-interpolate", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "8f1e657a8b5279a7378ebd1178f387d4a751f6b2121bdd50204e10d8f613bb83b298b4d97c0dd2ae751148bcca1f8f07997554aeee746fc9e37b813bf6841243" + } + ], + "purl": "pkg:npm/%40types/d3-interpolate@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-interpolate@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-interpolate", + "version": "1.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "ca5c9cb6cea59457fcc8012cd6d5f3c76968c71cc3647b1eba13e892ba8aa6b4d0493703dc96c9235a2664fd6ba61b042d93b743ea1fddf7f4652efe3bac95ce" + } + ], + "purl": "pkg:npm/%40types/d3-interpolate@1.4.2", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-interpolate@1.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-path", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d20fc0fa6657805910c4ddc79e24436d730defd2b709d4e92ec7af8fe3d789371bda1572be4654060dfb4ad9a009091a0fce1c509e2e683016abb509390cb64e" + } + ], + "purl": "pkg:npm/%40types/d3-path@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-path@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-path", + "version": "1.0.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "35a21e488062160482e8819406365672c714244abbbe956eecab611cdf1e89e4d5f5df4caa448e64b1f8721ab53e670acb4e8f35eddac4b78a991232c49f8f65" + } + ], + "purl": "pkg:npm/%40types/d3-path@1.0.9", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-path@1.0.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-polygon", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f8f73e03cb34ca5ccd2c18a56a8930d362bf831e0feec6c8960c090daf05d8ba265577da3dc17648a3e62c1e489f3a2c819264969449e01c24267b9e3f8671f" + } + ], + "purl": "pkg:npm/%40types/d3-polygon@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-polygon@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-quadtree", + "version": "3.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "40d70af0982ebdcf2553ee0e7de371faa9d5cbb73456b0c9f82095152f6cac1a3618bf58d7c0a723105d4c5defdfc7e5ac6cb9b3562081ca008aeeace1f2d023" + } + ], + "purl": "pkg:npm/%40types/d3-quadtree@3.0.2", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-quadtree@3.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-random", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "20813a6137a419cce92d8a3f1de840cb7246175b72efebac23decbaab68d6bc2220eeafe2f8e1dd153a302f15058955d64e247ba4509c3e65d641960794b0739" + } + ], + "purl": "pkg:npm/%40types/d3-random@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-random@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-scale-chromatic", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "76ca09184212868b0a551059074568dc2f27a920ea546ba3254ead3f39ec049c4d24dc0c17cbad992f379ef08129060fa630b369a1dcadfeba893469668b0b3f" + } + ], + "purl": "pkg:npm/%40types/d3-scale-chromatic@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-scale-chromatic@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-scale", + "version": "4.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "624e21b6e9e13c0c0dd171a523002b46898e8dda011570b7fa40b12b651b83b23db21425552272fe91bf1ede4048dfa074c21a96993c4c9e7157be2316c7ad2c" + } + ], + "purl": "pkg:npm/%40types/d3-scale@4.0.2", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-scale@4.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-scale", + "version": "3.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "806aabef1d68b2df69c7716f21f50c8b95c0fc5ff201fe149140ed7508691fdd97093d0e6bbce4911cd8eb580f549abe0f1a479ff6eda2ec39a215a46c1b02cd" + } + ], + "purl": "pkg:npm/%40types/d3-scale@3.3.2", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-scale@3.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-selection", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "330e5c7fa9e55b532579fa43f73aec859f830162f8210e4b9d67d185e5bac70b1d69639be88451bb61fb5cf0107325c4c750fb5d05a0768291f37ba2d7f1e510" + } + ], + "purl": "pkg:npm/%40types/d3-selection@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-selection@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-shape", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d8218c45140f6fac9f0777849ef37608e9717e8330cbd5a0b90c2b2575a8b85d862254d761b6919b03f18cea2c90f1aca14a9ddad78f0b637e21cbb0384f164" + } + ], + "purl": "pkg:npm/%40types/d3-shape@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-shape@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-shape", + "version": "1.3.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "82a7e7333e857791fa18e2d88b13993ffc65accb499acf41692fbaa16c5328736a3c667ddc19165aea50482626e981eac7a87dc2346ea6e25bf746ee9fa65a62" + } + ], + "purl": "pkg:npm/%40types/d3-shape@1.3.8", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-shape@1.3.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-time-format", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ca37c151ee83241b038a7d81308ba58521e6af9a8d4793f1b35efea16e03a153f25485d9fa6e9bb3b8f551528fd3c126bfa8d1998ad8ab16333bade6431cb5af" + } + ], + "purl": "pkg:npm/%40types/d3-time-format@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-time-format@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-time", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b192c2747bc151c35bcb5701e85777641ac005b8f3defd559bdd27cac090e95b7bbdde9efe1f4bb7b4a2254a045f49780f373b3f99652b286a4a2d727127f51e" + } + ], + "purl": "pkg:npm/%40types/d3-time@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-time@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-time", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f4c558966220991477d42e5be055525adb8c9811e1da63964187e5ed701839af1db276fb88499499149648581716d923c4eeb977b853507402f91851ffd21616" + } + ], + "purl": "pkg:npm/%40types/d3-time@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-time@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-timer", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1cd07ff461eabbb168f00422ba0c896efe99c58cf9f3079fd1eb25e0cbfcdbcc3564aa40b21c3fb855950d470807d28a15e14aa314b7707634ec5160b53459d6" + } + ], + "purl": "pkg:npm/%40types/d3-timer@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-timer@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-transition", + "version": "3.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e8e68fd17fefeeeae7ab27ff7adc3737f4d235e85433ab039ce786f0be4b0601d55fbc3aea0e955eabde5b12f3ed0702c2559bad004c80b664b210cc4deefc5" + } + ], + "purl": "pkg:npm/%40types/d3-transition@3.0.2", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-transition@3.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3-zoom", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "eece4bf538dfa8861099040451ca4c01c04e6a17a6ed346848effe1a4cf4d866cc56e50b899ce317604e770dbdd5d6ced9a3689f89b639d16c446682ab671a2d" + } + ], + "purl": "pkg:npm/%40types/d3-zoom@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/d3-zoom@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "d3", + "version": "7.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8c87cd54ad1997172e4432ad452fd2ca9132390e941da15004abf4df65f8e55bf1489e988b91bd6de872f61ead3531d30c687956af8a6e60635162e063899e08" + } + ], + "purl": "pkg:npm/%40types/d3@7.4.0", + "type": "library", + "bom-ref": "pkg:npm/@types/d3@7.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "debug", + "version": "4.1.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "f40a27533c938d75e110e6b40e7aa9cd98ba54796a28cb3081af445e3a579e7ab1c0bb5dbcf3ed94ef1ebeb2390fd4ba6ac151090eaffb0a6250a6f0faf2aaca" + } + ], + "purl": "pkg:npm/%40types/debug@4.1.7", + "type": "library", + "bom-ref": "pkg:npm/@types/debug@4.1.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "eslint-scope", + "version": "3.7.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c1de5772adc9c089c4f7e5358fb3921cc0a0fc4b7df71cc69ad9556fe3ec1dbde6c99235ae5bfc444a807c23045ca20f0761561a99bd60fd1df542fe41c74de" + } + ], + "purl": "pkg:npm/%40types/eslint-scope@3.7.3", + "type": "library", + "bom-ref": "pkg:npm/@types/eslint-scope@3.7.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "eslint", + "version": "8.4.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "60fd52ed825130fb3eeca64a0dbf46eb79fc61e8c8c16f4100babb6b98f6f87e3297a88ebfd081dbd79d868f9cb8546bbe625b6da1f6ca254284a2c9572b031b" + } + ], + "purl": "pkg:npm/%40types/eslint@8.4.3", + "type": "library", + "bom-ref": "pkg:npm/@types/eslint@8.4.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "estree", + "version": "0.0.51", + "hashes": [ + { + "alg": "SHA-512", + "content": "0ae3e053a7f7793fd780a28fa8a77f80b655d579af7f56b64793ce04e1906babaff36c6996cf3d1d4e7329e568c91f17cc777544634e95096f51edc21648d635" + } + ], + "purl": "pkg:npm/%40types/estree@0.0.51", + "type": "library", + "bom-ref": "pkg:npm/@types/estree@0.0.51", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "geojson", + "version": "7946.0.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "3668742b7896409ce7893b8f45c267e61c5791f0754f5a6007cf520628393e5250539ca871acdebb88c04c995a03419814a58ca8376f61e9a84a7176a5780b54" + } + ], + "purl": "pkg:npm/%40types/geojson@7946.0.10", + "type": "library", + "bom-ref": "pkg:npm/@types/geojson@7946.0.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "glob", + "version": "7.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "48461e1802102105fc34de8b0caa6b2e36eb77974044ce445ec77c188fc0e65d1aa582357c631680f1d27b864a2f87a8ce503223e768504f576d84b8c42910d7" + } + ], + "purl": "pkg:npm/%40types/glob@7.1.3", + "type": "library", + "bom-ref": "pkg:npm/@types/glob@7.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "graceful-fs", + "version": "4.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a72a42e6659fb19b8a7c25605fe2112590ce1747e119780d8cf4102491395d99cc8363899b748267460843247dcebf9a2863bfd402810db6674c4a468077b0b" + } + ], + "purl": "pkg:npm/%40types/graceful-fs@4.1.5", + "type": "library", + "bom-ref": "pkg:npm/@types/graceful-fs@4.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "hast", + "version": "2.3.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "c0b126d10bdaa1ac040e84d1c334d7a786f88e9c22243bd1e4a327167568766dec72e7d3941396443e8dd4e05ff5364c86394db127dc3b957eec0178f95cbef6" + } + ], + "purl": "pkg:npm/%40types/hast@2.3.4", + "type": "library", + "bom-ref": "pkg:npm/@types/hast@2.3.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "istanbul-lib-coverage", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "b33ee22eabd5520d6021e7413af964c4f95cf3fb95cf24b93b01b3d5c2a35f3925dc5a4bdda97472b53c6065355a81e4c67d16c5bc39b728ba86fcc928dcc5b3" + } + ], + "purl": "pkg:npm/%40types/istanbul-lib-coverage@2.0.3", + "type": "library", + "bom-ref": "pkg:npm/@types/istanbul-lib-coverage@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "istanbul-lib-report", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a651a05c03df54a16861f6bd369603024b1e1be83a26bdbde11a9ea9ca838b149b537e0c6552518bf3feed8f060e9ce41302da19964ea4a20499e55936d2acae" + } + ], + "purl": "pkg:npm/%40types/istanbul-lib-report@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/istanbul-lib-report@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "istanbul-reports", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "737980644b8ad25bc1a7cb66b8bef85d12a7d7ecb675cc0e5291fbc785ab17a824d462208a5b8346031842dc36385701bc025696de80494ded4aac69d14bb403" + } + ], + "purl": "pkg:npm/%40types/istanbul-reports@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/istanbul-reports@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "jest", + "version": "27.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "e1d471912fc0157d1ce575ba20f30d3b274b9f6b4484d84957b0e760afb46e3a0967e41399fb9c0658a15fb6a812c87fa1c62d90b0bbdd46e7057057231b142c" + } + ], + "purl": "pkg:npm/%40types/jest@27.0.2", + "type": "library", + "bom-ref": "pkg:npm/@types/jest@27.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "json-schema", + "version": "7.0.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "c0ebaf1b548de14b38adecfeb72970c30095d69b223553a425e33701459435683f8c3418dbe1c4ff8e38cb981cfa306646a0123a6d8e7a1e5cd5ac47a1bc1129" + } + ], + "purl": "pkg:npm/%40types/json-schema@7.0.11", + "type": "library", + "bom-ref": "pkg:npm/@types/json-schema@7.0.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "json-schema", + "version": "7.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "731585415b1e066e8ef466f0d4859bf2be8e4b83a14adde13d92e4140a4b8ccf1311744e06e4062c01f68b6819a5c5dd2c122ba57b930e11fb55b9b589798d18" + } + ], + "purl": "pkg:npm/%40types/json-schema@7.0.7", + "type": "library", + "bom-ref": "pkg:npm/@types/json-schema@7.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "json5", + "version": "0.0.29", + "hashes": [ + { + "alg": "SHA-1", + "content": "ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + } + ], + "purl": "pkg:npm/%40types/json5@0.0.29", + "type": "library", + "bom-ref": "pkg:npm/@types/json5@0.0.29", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "lodash.mergewith", + "version": "4.6.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "458ffc21a5443631b5f6bc5366ef4dba4aa1d16d94ad8826063e6c767b38856459695f0fa91ef020a1c52b3bce4e3a38cd5455eec548fb2161009aa5d7629faa" + } + ], + "purl": "pkg:npm/%40types/lodash.mergewith@4.6.6", + "type": "library", + "bom-ref": "pkg:npm/@types/lodash.mergewith@4.6.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "lodash", + "version": "4.14.178", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1de56774f48b50587d6a15b13243ba13437199acc7ed8792646cddc4bd328b5dc1cb44349778b9e5be53a7d30bf1548c0ae68d8cf09ccffce5b3ed3dcd46c6f" + } + ], + "purl": "pkg:npm/%40types/lodash@4.14.178", + "type": "library", + "bom-ref": "pkg:npm/@types/lodash@4.14.178", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "lodash", + "version": "4.14.182", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd31f28aac9000ff407c0468e2917e68219cca243de2d5ff22cd88ec7a1f351aa860b80dd4f068396bb6ff34c0e73331ccfe4416eb4cb56b4600544a51ef7ad5" + } + ], + "purl": "pkg:npm/%40types/lodash@4.14.182", + "type": "library", + "bom-ref": "pkg:npm/@types/lodash@4.14.182", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "mdast", + "version": "3.0.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "5bceb8b60fceb33d7ef5fe25ac64d9a4248ee7fcf8eb4f1e529d7db5ba3392ad8724aea2df3d644f41fdb650035ee6086f561838107253826caa493be6ae3ca8" + } + ], + "purl": "pkg:npm/%40types/mdast@3.0.10", + "type": "library", + "bom-ref": "pkg:npm/@types/mdast@3.0.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "minimatch", + "version": "3.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "d73f24e30cc59cd8d52bfb65c6fad6b8ae5632dea6c9d5963fbfb3bc7e5e15ea78a23f9492b7e225346d8c27815cda70680fc562aaad6f8fd04b889a9c5a4844" + } + ], + "purl": "pkg:npm/%40types/minimatch@3.0.4", + "type": "library", + "bom-ref": "pkg:npm/@types/minimatch@3.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "minimist", + "version": "1.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e1b8a2c846b86f08f2eac0f731e8836a98a7a2039116aec08e3e1ae5152adbae653864c3e38f9525fe82c23033bdf17454230566efcc480b3e043c27a4b7379" + } + ], + "purl": "pkg:npm/%40types/minimist@1.2.2", + "type": "library", + "bom-ref": "pkg:npm/@types/minimist@1.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "ms", + "version": "0.7.31", + "hashes": [ + { + "alg": "SHA-512", + "content": "8a25202b357d02e684919aa438b0c8be54222fa96db9977db46716de0c299d7f096ee8ae8459441a69855c45e4379d02beaeceb3cf08636bf47640ea5d859580" + } + ], + "purl": "pkg:npm/%40types/ms@0.7.31", + "type": "library", + "bom-ref": "pkg:npm/@types/ms@0.7.31", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "node", + "version": "15.12.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce343af46e7ae0e088588387497c901040e97691a5f86df8f1100a6345d7cbd679914f55cefd4630d9e46abfd927c7735c1dc23b30fd328f4db51678c5f814c3" + } + ], + "purl": "pkg:npm/%40types/node@15.12.2", + "type": "library", + "bom-ref": "pkg:npm/@types/node@15.12.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "node", + "version": "14.17.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "7ba668c20189993b976b71b268f6d31b15f5eed9d3865d9a4928b3ac5b6143b9bdb8b199057886860139e5c8d165317992366f627f4438f38c963763c1b7e5c7" + } + ], + "purl": "pkg:npm/%40types/node@14.17.3", + "type": "library", + "bom-ref": "pkg:npm/@types/node@14.17.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "normalize-package-data", + "version": "2.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f98f96ff19fef52fe75bab12294386765a5988fe63c9d1f3a418698582d6fab00bbdec43dccf36d2dffb492b199c6038f9e4e5fab2cab00c058e1c860344318" + } + ], + "purl": "pkg:npm/%40types/normalize-package-data@2.4.0", + "type": "library", + "bom-ref": "pkg:npm/@types/normalize-package-data@2.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "parse-json", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fffa28ac46632fab1b3dc2946827481a5214787dba9a0ce29a3041efb1ba5d18270e5fcbe703a7a7204645efcc99fe42556dcfc04044d4d8e2319fecb05878c0" + } + ], + "purl": "pkg:npm/%40types/parse-json@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/@types/parse-json@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "prettier", + "version": "2.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "168efda238f7bdd119387837c11f64b00311cf83f74b97c30797bf616662167c85408d5663655fb6ef57a17555b497f107b06971efd04ea5924a7b64cf6667af" + } + ], + "purl": "pkg:npm/%40types/prettier@2.4.1", + "type": "library", + "bom-ref": "pkg:npm/@types/prettier@2.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "prop-types", + "version": "15.7.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "ad9e5dac2fe35a3ac0aeb4bc051e9222be1c5a95b4f5135362df40319a37270c227fe89a71702a8158e6d01d01bff4b58e10d7287a9154d09b002909f3d4409d" + } + ], + "purl": "pkg:npm/%40types/prop-types@15.7.4", + "type": "library", + "bom-ref": "pkg:npm/@types/prop-types@15.7.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "prop-types", + "version": "15.7.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "24207c0ba4a70e841fd1c37272a77fdf903b3237272be653a84ee3b9d4baa3bbadc540a0ea298983740adaacc72acce54e3723d9c9fe370301da2f7ab9ba63ef" + } + ], + "purl": "pkg:npm/%40types/prop-types@15.7.5", + "type": "library", + "bom-ref": "pkg:npm/@types/prop-types@15.7.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "react-dom", + "version": "18.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "3963d64d4ad8fcd22b8ec00f900935c16f4b65e2234af917461725b053bc0997191823a0d86d18672e1fb7eacec98c72f01eee8b9899ce2f4e90379b67bfd048" + } + ], + "purl": "pkg:npm/%40types/react-dom@18.0.5", + "type": "framework", + "bom-ref": "pkg:npm/@types/react-dom@18.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "react-syntax-highlighter", + "version": "15.5.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "8bbc05b8b6c800595a6d3783d88d5c2e310eac6ff174c6bfae9c76cf0cc0a061ee5c90e14aaa7d0527c394c1d287d252b8d7f11e4f5e126317e83e791a2ca31a" + } + ], + "purl": "pkg:npm/%40types/react-syntax-highlighter@15.5.6", + "type": "framework", + "bom-ref": "pkg:npm/@types/react-syntax-highlighter@15.5.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "react-table", + "version": "7.7.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d151e9edf8d47f5b0b431b023f06a859f179c7821c07c341d429ea21cc1e713772b6a8a598139c35f5eec60ae3a42f50970fd1a2d47172ed3226d80be05941e" + } + ], + "purl": "pkg:npm/%40types/react-table@7.7.12", + "type": "framework", + "bom-ref": "pkg:npm/@types/react-table@7.7.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "react-transition-group", + "version": "4.4.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "8ee283fde892337ff1658ce3bb31fa670a4ffbf95e8e5b66892dd013357fbe66ff43cf877c39b1bbe05a81af1410c181a95f3c35b838976858fcad8393268b2c" + } + ], + "purl": "pkg:npm/%40types/react-transition-group@4.4.5", + "type": "framework", + "bom-ref": "pkg:npm/@types/react-transition-group@4.4.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "react", + "version": "18.0.15", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b3dc1b4bb88607d6e59db2feb05d8761a3386a8f6d280f8fc79360cd5c89f5905b26a7dc7c77d401e859cf85f91b85dd8f80438db7d435c7f79b9308df14ba3" + } + ], + "purl": "pkg:npm/%40types/react@18.0.15", + "type": "framework", + "bom-ref": "pkg:npm/@types/react@18.0.15", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "react", + "version": "18.0.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "76e17539301248142d722814be1ba24c1d586b73af4b2fb13910a211fdb41f43f4973c7efca795b00f7d5395232d749bca8d434490e52caa9378cd67828b2ab6" + } + ], + "purl": "pkg:npm/%40types/react@18.0.12", + "type": "framework", + "bom-ref": "pkg:npm/@types/react@18.0.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "scheduler", + "version": "0.16.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "869a501010e69708450172895f62a758b62ee7231f8bdd726b33dbda5fa56c98b05bec1da3580d79103edd180d48edfd5985f67ae7b2e35284c27a9eb14d897b" + } + ], + "purl": "pkg:npm/%40types/scheduler@0.16.2", + "type": "library", + "bom-ref": "pkg:npm/@types/scheduler@0.16.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "source-list-map", + "version": "0.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "2b92beca697c2d3a3d6d6248feb1027c83eb1a0c5da5e35b8fe779de5c0de108d6d4c0b09648549acfa0b5dce2813794c81af4f7ebbc070388637317bc775cb0" + } + ], + "purl": "pkg:npm/%40types/source-list-map@0.1.2", + "type": "library", + "bom-ref": "pkg:npm/@types/source-list-map@0.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "stack-utils", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e5db5f7f053e5f2c06b3e8d0e44ae8736accb8f5dc104bf0d276ee0c76080507ccdc5efeef7e5048df1a7b1449a499d0e40542366cf50d78cb6da7692761dc7" + } + ], + "purl": "pkg:npm/%40types/stack-utils@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/@types/stack-utils@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "tapable", + "version": "1.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "d15069ad5a9f8050fb1216f6bddf0b87d4c6de33fdf20bebf2b81e850ab3ced64d23ba3ccd2f007788f266778a10ba61a6e136d760fc27bd0b9d23504b23ba6d" + } + ], + "purl": "pkg:npm/%40types/tapable@1.0.7", + "type": "library", + "bom-ref": "pkg:npm/@types/tapable@1.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "testing-library__jest-dom", + "version": "5.14.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a4f6f6977dbcdce7309723d79813d048e41347129e03dc55a382a044fde3c660494b00ff8abf105cb1d9307c856f7b3b3ad39a22c9dfd5ae98877b739e83e03" + } + ], + "purl": "pkg:npm/%40types/testing-library__jest-dom@5.14.1", + "type": "library", + "bom-ref": "pkg:npm/@types/testing-library__jest-dom@5.14.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "uglify-js", + "version": "3.13.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "10692b243e54cbe3e0d0d511f2e0386c9e5631f963c9a7741beefce2f2c2354903f90c0e25751b0581315df5467fb62dcb3750a772ff5cc61c96207df3b90be5" + } + ], + "purl": "pkg:npm/%40types/uglify-js@3.13.0", + "type": "library", + "bom-ref": "pkg:npm/@types/uglify-js@3.13.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "unist", + "version": "2.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c18c85316473ae8f4475e7fc6ec09623162f8a65d345ade86870286fe20e61bba685ae81ee7bc9b49413f43ce74ada72b36f0d1c815d66c2cf3e57f24070491" + } + ], + "purl": "pkg:npm/%40types/unist@2.0.6", + "type": "library", + "bom-ref": "pkg:npm/@types/unist@2.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "webpack-sources", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d79ffa1822905eb9c80fd442096ca436ff8666a6f465f9d96b15d5fbfbde12291515dc4bf2dc5b1f319637d7cbc68645944b930f86d38cdf0d7f84238039772" + } + ], + "purl": "pkg:npm/%40types/webpack-sources@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/@types/webpack-sources@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "webpack", + "version": "4.41.29", + "hashes": [ + { + "alg": "SHA-512", + "content": "ea92da391695359c620771521dbc8189633b41d6b301675ad73bc0ab849b64e6d9a874836d62e2eb688575b95579ae922bd7b2048569e721e12adff2350751ed" + } + ], + "purl": "pkg:npm/%40types/webpack@4.41.29", + "type": "library", + "bom-ref": "pkg:npm/@types/webpack@4.41.29", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "yargs-parser", + "version": "20.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "eed1489a080d78d05532c9f4bcbae99f51f5b8fad405d9c044f4e96688ad637ed9add2511337fb235ead32b94ade17a7df8f60af535887c0a66506bb0931ba03" + } + ], + "purl": "pkg:npm/%40types/yargs-parser@20.2.1", + "type": "library", + "bom-ref": "pkg:npm/@types/yargs-parser@20.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@types", + "name": "yargs", + "version": "16.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "4fc61cf70b7fe4b6c9c8268b8873d17896b4900a5c22027b067ef7e468c8b547e1d3c675a49beef1066a6fdb3e98cbca57a59441157b2b6478e986e33174d327" + } + ], + "purl": "pkg:npm/%40types/yargs@16.0.4", + "type": "library", + "bom-ref": "pkg:npm/@types/yargs@16.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@typescript-eslint", + "name": "eslint-plugin", + "version": "5.27.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e9d33934a4f9ed976e36725fa58f353e17bd9dcf70a259cc0a79276f58a6e9bad68b5458bfce276cc4b7a2525adbb07afa2ad4555d57fd66fe026d058c974617" + } + ], + "purl": "pkg:npm/%40typescript-eslint/eslint-plugin@5.27.1", + "type": "library", + "bom-ref": "pkg:npm/@typescript-eslint/eslint-plugin@5.27.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@typescript-eslint", + "name": "parser", + "version": "5.27.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed56b664e9078b934ff806706f945e2e0345ea758b19379425fc5d9155003cf49a01d6d6367159ccb6781061a69a209383e03095b1352b25184c1825a2c48b1d" + } + ], + "purl": "pkg:npm/%40typescript-eslint/parser@5.27.1", + "type": "library", + "bom-ref": "pkg:npm/@typescript-eslint/parser@5.27.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@typescript-eslint", + "name": "scope-manager", + "version": "5.27.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "7d010e49afd0ae8584e9f00483e6c9c6d4592531fc353b24820c9ba201ede07f436bccdde1c2638bbea0039481951d0c82dc05eeb79bc536c3281e3d6140a902" + } + ], + "purl": "pkg:npm/%40typescript-eslint/scope-manager@5.27.1", + "type": "library", + "bom-ref": "pkg:npm/@typescript-eslint/scope-manager@5.27.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@typescript-eslint", + "name": "type-utils", + "version": "5.27.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f940b5bd55166831d19c2d9c42b089e10b558e98e30a08cd16983c6f4de71119a41eff4957d5f9335f43ed414c77efc6ed3fec805c17da91a658adfcaeacaf5f" + } + ], + "purl": "pkg:npm/%40typescript-eslint/type-utils@5.27.1", + "type": "library", + "bom-ref": "pkg:npm/@typescript-eslint/type-utils@5.27.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@typescript-eslint", + "name": "types", + "version": "5.27.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e0a203559018424d953f9bc5e01182162020fa9b87661036ca5c44826ea3977ca67144a7aaa6225740812bbfaeac768a512993e8e65df6ca636a89b6041ffc6" + } + ], + "purl": "pkg:npm/%40typescript-eslint/types@5.27.1", + "type": "library", + "bom-ref": "pkg:npm/@typescript-eslint/types@5.27.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@typescript-eslint", + "name": "typescript-estree", + "version": "5.27.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e766fbeadd3009e647be864d0b925bf1c18b275e945da9463981a552d03e2b68ab5bce73f3ef55091a73d31c4168d060f1a8b38b74c9249956634a9113d6117" + } + ], + "purl": "pkg:npm/%40typescript-eslint/typescript-estree@5.27.1", + "type": "library", + "bom-ref": "pkg:npm/@typescript-eslint/typescript-estree@5.27.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@typescript-eslint", + "name": "utils", + "version": "5.27.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "999f56127d592c3695ae145a620cdb9170644cf8213c5b2ea7ccc36dbb184f10b93a6aab144eec924292fecada56c2cfdd3713dca8b9092c841414642c7fc7ff" + } + ], + "purl": "pkg:npm/%40typescript-eslint/utils@5.27.1", + "type": "library", + "bom-ref": "pkg:npm/@typescript-eslint/utils@5.27.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@typescript-eslint", + "name": "visitor-keys", + "version": "5.27.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c58b3a7dfa34d6785d2603e27b293b1c03a98e14ecc7baffa01f4b5848700178309f7ded92bf96f032360a16e8aa16650b8ab74c2ea078360fa225fc44eab239" + } + ], + "purl": "pkg:npm/%40typescript-eslint/visitor-keys@5.27.1", + "type": "library", + "bom-ref": "pkg:npm/@typescript-eslint/visitor-keys@5.27.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@visx", + "name": "curve", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f5be893a7c7dd6098e42248f8543b176cbdc9d6f3c7e0a9f4cf2a856043189d32c0ff237c24b22c6dc28f1347fbed133d9a1f3cec104865bf5a8aed8df26920f" + } + ], + "purl": "pkg:npm/%40visx/curve@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/@visx/curve@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@visx", + "name": "group", + "version": "2.10.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0cd2435fbd5feb912dd7e52042f62565b13aea8c185007dcc53902f7a0dbe939f1576db554a2374f9976dd459b9cccf01413fd751dcf5948e3aa1845d76379a4" + } + ], + "purl": "pkg:npm/%40visx/group@2.10.0", + "type": "library", + "bom-ref": "pkg:npm/@visx/group@2.10.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@visx", + "name": "scale", + "version": "2.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "dda0f2486513a5ee95ca40d0985fa0da7cf9a5a16ef6248f4dc08e12091caeed3fbf9b661b351dbe2bf2f029186ebf3b1cdef757f25ce779469be90951070b07" + } + ], + "purl": "pkg:npm/%40visx/scale@2.2.2", + "type": "library", + "bom-ref": "pkg:npm/@visx/scale@2.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@visx", + "name": "shape", + "version": "2.12.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "e203747f21d6617889f8293c5406b35d7d22f133a72c9bce7398d90676890d5c609d221f0a3267d3e36ccbdea5f43cbf6c23138780c161406ff64f9820205438" + } + ], + "purl": "pkg:npm/%40visx/shape@2.12.2", + "type": "library", + "bom-ref": "pkg:npm/@visx/shape@2.12.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "ast", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ba4061d78a852e3c5340d4d7a1c77292c37941d336f12d42c47b76addb241722fec4557b56b7a6b812d56e609e3e3f9445a957044371ffd2e6ee59e18a1b424b" + } + ], + "purl": "pkg:npm/%40webassemblyjs/ast@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/ast@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "floating-point-hex-parser", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "88645fc9ce41abe36736e5fc6f987006b463cdfd2872b24f23a1961687411739859f2beb43cdd21ca8668a5094ffc26febb8b818964132113396dc7370d6a0b5" + } + ], + "purl": "pkg:npm/%40webassemblyjs/floating-point-hex-parser@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/floating-point-hex-parser@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "helper-api-error", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "465852f020425df45447f730a36868f5b9217925c6d3e370a285dc7373c020b00b7f640b745ca3eca1ac2916d573de61667867111a27e245bf0f7499a69e9372" + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-api-error@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/helper-api-error@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "helper-buffer", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "8308a417ae5a0cd79e5daf09c576b604093e4448d2ca1acd0bd670753d1ff2373875041e0d0ec6e26d1fd9008b3c988c4d33bac1f0e64668ffa56d0fb14bc870" + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-buffer@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/helper-buffer@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "helper-numbers", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc391bc6207ccdf9cf74d2bd45a8dc7b2e42d30f9026e804825374a1ffa498ef25ee50dbefb02794a61017b69aad9b82aeffa5d14bea2feebc8120ebde4f4b3d" + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-numbers@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/helper-numbers@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "helper-wasm-bytecode", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "3efa68386889c17793ad27ffa9fb9d261c25bc34311607a56ccaadab9d965a25c2e97820d484447678263cdddbb384683bcdcf9cbfe716bc6e7178f5f815fad9" + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-wasm-bytecode@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/helper-wasm-bytecode@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "helper-wasm-section", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "d743fd368dbdad85f58fb1771153d7dc9bc63d03da7be0289ae4933e217d78141e0a11c8ea2aa3308c11f4998e257c299e7fe85460e4ec8e4896c92e33053fa6" + } + ], + "purl": "pkg:npm/%40webassemblyjs/helper-wasm-section@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/helper-wasm-section@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "ieee754", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "849f3b4083ed00c29b16ae821939196098af1306436d052061ddea29269d4cd3a1558ee9fa07cfe92af494b4554da1b5263163fabdd8721a2a458c4d1f733419" + } + ], + "purl": "pkg:npm/%40webassemblyjs/ieee754@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/ieee754@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "leb128", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "049d8fd21359d2ef938756195c9a735ba9a2c2a41419c2074f51bfb1fef680b543f4367901d613a8f35b1d987a2b53395662af157c064966400f3faa056c5e47" + } + ], + "purl": "pkg:npm/%40webassemblyjs/leb128@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/leb128@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "utf8", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f64a9cc4011d3218b04241e990d8a8ad9ceaa46ae8750436206ac71f10b2f8ece7834a1fc8c034953aa22e456cd6ecd345e8d7fbf3b410e4fb2b1a953ee5e8b1" + } + ], + "purl": "pkg:npm/%40webassemblyjs/utf8@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/utf8@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "wasm-edit", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "83e46cba9502d5a4c77d1f020e09ec551559149a9d9051e9b0731f26e590cd6537b6f9cb0b4ed4a872027cffb85f22f6b67af56a6be5d52769d3a4e760299590" + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-edit@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/wasm-edit@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "wasm-gen", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "17b42a297c30365326b2e963ebe3bbaf89a6b4094259f3bfd077603b14a49597d0703bb44e92e20f5991b7fcc5db9064e7d1488c4b86008ca7e5e8b8c8c7cb84" + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-gen@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/wasm-gen@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "wasm-opt", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "56a9e436a9d9954e4407ae29a7597b85d9b7866430ed582a6b4285fca08d3bdb08a48e8593a6eb0c4897fa208e62bbccb81583c2cd0d9133b16046fce574071f" + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-opt@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/wasm-opt@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "wasm-parser", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "aeb06e8f0f9d26edf681807bfcbba9e9485d90fc7d4bd4a7a1b6734552fb55c047f41b7d6c204b12e5ff61738eb41b0e678350ad1ca42a17df4561ef8a042f38" + } + ], + "purl": "pkg:npm/%40webassemblyjs/wasm-parser@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/wasm-parser@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webassemblyjs", + "name": "wast-printer", + "version": "1.11.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2106e851633878acd65be37f8e28f6b116ad28c87df5011e968dc46f6ab4a9792f3d1212023f10c6d9b0e62b70a8af934e406e508138e40c583d3a2a3ed2f982" + } + ], + "purl": "pkg:npm/%40webassemblyjs/wast-printer@1.11.1", + "type": "library", + "bom-ref": "pkg:npm/@webassemblyjs/wast-printer@1.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webpack-cli", + "name": "configtest", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e0507c4e3eb1c95932aa38f539a4ea0a35d850b07d14c92a43cc86ad98d10eb621d27384fbb2e1b38e568a859040c57e71e165137ebc52485eeb176f24cf4482" + } + ], + "purl": "pkg:npm/%40webpack-cli/configtest@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/@webpack-cli/configtest@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webpack-cli", + "name": "info", + "version": "1.5.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7bcb525d9a70da13e5dae30963a7ec32cc1aa24e4576518d45392dbc5936b03f118c7d21136f978acb5ac09c75be62ad7a1e0d98698d52ba7e4dbdb0fae74f71" + } + ], + "purl": "pkg:npm/%40webpack-cli/info@1.5.0", + "type": "library", + "bom-ref": "pkg:npm/@webpack-cli/info@1.5.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@webpack-cli", + "name": "serve", + "version": "1.7.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a319c23468fcf1f2fec7357e75a717b38e07703c1fd68becdc0b84cef3fb9aa5f0edf427b6a2214350519b29e1e2a10a412492452595c974639936d9217f55d9" + } + ], + "purl": "pkg:npm/%40webpack-cli/serve@1.7.0", + "type": "library", + "bom-ref": "pkg:npm/@webpack-cli/serve@1.7.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@xtuc", + "name": "ieee754", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d7f272a0a9c1b0b1cd1e252a98b799703f80c7e459479e6b96581472ed7d0d71a191d19b6ec9e11280cc1361512dc66b0d198faa8ade10613fcc2184ce4cf78" + } + ], + "purl": "pkg:npm/%40xtuc/ieee754@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/@xtuc/ieee754@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@xtuc", + "name": "long", + "version": "4.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "36e1ea058d4f07f0fcc54eacfed84180e02200fec73980d0df6f8115920b27c8af9149001d09d67e7e9684befd3b08f5aa6527a0dfd83e192d748a2e722a6401" + } + ], + "purl": "pkg:npm/%40xtuc/long@4.2.2", + "type": "library", + "bom-ref": "pkg:npm/@xtuc/long@4.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@zag-js", + "name": "element-size", + "version": "0.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "405f30a74f95f3efb3f851d7888c3ddfecee76db9b62ccceb586cd80adfd7e0de98be9c266db929b82f58c2e5064c6ad359f3731f3b3c8d09f814b9b6a96a025" + } + ], + "purl": "pkg:npm/%40zag-js/element-size@0.1.0", + "type": "library", + "bom-ref": "pkg:npm/@zag-js/element-size@0.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "@zag-js", + "name": "focus-visible", + "version": "0.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3de68171399d6567057fb9f568cfa888e75973eb32d78aa2d1e98f21e52e18c4e36cfd312c6ad9bb8de47691e75925f2effaf851ba7fbe5839d0c095f3ef48b2" + } + ], + "purl": "pkg:npm/%40zag-js/focus-visible@0.1.0", + "type": "library", + "bom-ref": "pkg:npm/@zag-js/focus-visible@0.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "abab", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "f482bd11a76c6c7a3a8cb588a71a51ea92f4b1acd35d5ebe490bf6e5907e17b063f6624d68e7389c245a6f077933f2709946bc89dcfa11c8ba78a7c9af23ece9" + } + ], + "purl": "pkg:npm/abab@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/abab@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "acorn-globals", + "version": "6.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "65097b2ce59a17978faaa717e212eebff6cb5d840d7cd5b0d9cd3fc97fd3b0f44a6a6cc77131909e50a31d3dd3b2690e51510f4b772b0b188f7ddcc4fd3ae586" + } + ], + "purl": "pkg:npm/acorn-globals@6.0.0", + "type": "library", + "bom-ref": "pkg:npm/acorn-globals@6.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "acorn-import-assertions", + "version": "1.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9bb559de3c33e1e2ba03856db7c130d7f98d6cfdb8bb41617727c0edf4af9c947a2cc75f3989e6b88aeb24082b61f609d7417fa2d6874edaedaed98774c37313" + } + ], + "purl": "pkg:npm/acorn-import-assertions@1.8.0", + "type": "library", + "bom-ref": "pkg:npm/acorn-import-assertions@1.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "acorn-jsx", + "version": "5.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "aeaf6cf893617f4202863b435f196527b838d68664e52957b69d0b1f0c80e5c7a3c27eef2a62a9e293eb8ba60478fbf63d4eb9b00b1e81b5ed2229e60c50d781" + } + ], + "purl": "pkg:npm/acorn-jsx@5.3.2", + "type": "library", + "bom-ref": "pkg:npm/acorn-jsx@5.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "acorn-walk", + "version": "7.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "38f74217a1ac3083fe033f9a59f000384b76ffe8950ca13ba32ea5274f7c6a87b9f680262bbeaa57a1b0eb449b67c8c7b86db01f4e7c185e292c56d86a662b54" + } + ], + "purl": "pkg:npm/acorn-walk@7.2.0", + "type": "library", + "bom-ref": "pkg:npm/acorn-walk@7.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "acorn", + "version": "7.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9d0ca9d28d7f98d75b4ced4f3ba9079304ab9a0674313fe3082a4d8b06d48c6a11378765061a89b6842e0a710e2b3813570834656882a10cba4b131e6d0561f0" + } + ], + "purl": "pkg:npm/acorn@7.4.1", + "type": "library", + "bom-ref": "pkg:npm/acorn@7.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "acorn", + "version": "8.7.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f1e78b8b250675f652b28055ce5acb1c2946ec0595b408fca43e155076121e230adb3e6273a9e0120c89dcf272819e9fc94fa8a04ecf36a8f5f3d3af47f08fc" + } + ], + "purl": "pkg:npm/acorn@8.7.1", + "type": "library", + "bom-ref": "pkg:npm/acorn@8.7.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "agent-base", + "version": "6.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "45937035c945efe312ffc6c383bd1a9a0df6772799199c620ee42667128b025423af78c6c8bc7ee0a924e7c50eec3d90760148402a2fb92b991129dee911ba5d" + } + ], + "purl": "pkg:npm/agent-base@6.0.2", + "type": "library", + "bom-ref": "pkg:npm/agent-base@6.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "aggregate-error", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e08ed3774d6ab96fd1a6871f35ac85745564d6a4aea21d04ec9adb449d7a9c7d351e128543cf0836af5277e9ddef6cea4724a5afd0660c0f3194427abc932b60" + } + ], + "purl": "pkg:npm/aggregate-error@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/aggregate-error@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ajv-formats", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5b1d0ac79da1c44ec2d7c8643048206251227ea599b58691828b89a2bf9631d3e743210ad77be0116c9536ea7b4a879ea0b32caf891fe61e9d396d75235e4c50" + } + ], + "purl": "pkg:npm/ajv-formats@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/ajv-formats@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ajv-keywords", + "version": "3.5.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "e69e964cdd03753195424e958dc123bb5f4881a1ee75a95c7da6c3ef284319e03a6dc42798bf82a6f78b26aff786f7f07756a87fa2f7f3a3ae824c7a45fc8c21" + } + ], + "purl": "pkg:npm/ajv-keywords@3.5.2", + "type": "library", + "bom-ref": "pkg:npm/ajv-keywords@3.5.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ajv-keywords", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6024bf24d140532af9bc0ba19350d69b5081c511d6f4b6c9da8cd679e9ab22aa5bb2a2a31d5c583f28b9182d2b8d9213e49c49def8ab5534bcc24e22fd9fa4af" + } + ], + "purl": "pkg:npm/ajv-keywords@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/ajv-keywords@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ajv", + "version": "6.12.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "8f77d52e0bd3a39dbb6a7c98c893864d825b1bebe79d062f1349b99a691cd532be9f1029a6408b3082f4699e1d6e55423681928619be933138654ca4068320e2" + } + ], + "purl": "pkg:npm/ajv@6.12.6", + "type": "library", + "bom-ref": "pkg:npm/ajv@6.12.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ajv", + "version": "8.11.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c06829add0af31a942d01ced5ef8ad0f6842d3861f7c0bedb149fddc96c65d82c0b4250ee31775ee6082650c54388b6207066f252716a3c348bd0310ef5adda6" + } + ], + "purl": "pkg:npm/ajv@8.11.0", + "type": "library", + "bom-ref": "pkg:npm/ajv@8.11.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ajv", + "version": "8.6.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "727506e0d48188ce18141c606488ff227dffe8a5fead0da5d983d155cbc031019610f2ae5e83c8871cf0aa1df58c0dc83db238a843a9ff920b238ca78a85ec19" + } + ], + "purl": "pkg:npm/ajv@8.6.0", + "type": "library", + "bom-ref": "pkg:npm/ajv@8.6.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ansi-escapes", + "version": "4.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "80a5e3e402eb29640bb181bd8e54d1991ff12a5bb11d5f99f501303488027ccd7fbb03cc0aecd55678799b04ddf8eb8165cc1220c6eab2c356466d65139d5069" + } + ], + "purl": "pkg:npm/ansi-escapes@4.3.2", + "type": "library", + "bom-ref": "pkg:npm/ansi-escapes@4.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ansi-regex", + "version": "5.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "aae2505e54d25062f62c7f52517a3c570b18e2ca1a9e1828e8b3529bce04d4b05c13cb373b4c29762473c91f73fd9649325316bf7eea38e6fda5d26531410a15" + } + ], + "purl": "pkg:npm/ansi-regex@5.0.1", + "type": "library", + "bom-ref": "pkg:npm/ansi-regex@5.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ansi-styles", + "version": "3.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "553d1923a91945d4e1f18c89c3748c6d89bfbbe36a7ec03112958ed0f7fdb2af3f7bde16c713a93cac7d151d459720ad3950cd390fbc9ed96a17189173eaf9a8" + } + ], + "purl": "pkg:npm/ansi-styles@3.2.1", + "type": "library", + "bom-ref": "pkg:npm/ansi-styles@3.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ansi-styles", + "version": "4.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "cdb07dac22404f5adb8e25436f686a2851cd60bc60b64f0d511c59dc86700f717a36dc5b5d94029e74a2d4b931f880e885d3e5169db6db05402c885e64941212" + } + ], + "purl": "pkg:npm/ansi-styles@4.3.0", + "type": "library", + "bom-ref": "pkg:npm/ansi-styles@4.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ansi-styles", + "version": "5.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0b1c29b7649f4f34ed5dc7ce97318479ef0ef9cf8c994806acd8817179ee5b1b852477ba6b91f3eeac21c1ee4e81a498234209be42ea597d40486f9c24e90488" + } + ], + "purl": "pkg:npm/ansi-styles@5.2.0", + "type": "library", + "bom-ref": "pkg:npm/ansi-styles@5.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "anymatch", + "version": "3.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "3f8dde3df38022ea6482e1d4c9cadce2a27d933f198ae3948a36844f05fb4c7b7463f18d2bbbf469af2b63cd7ac568d9eeb25d0395dd31ca5515328cabe46f5a" + } + ], + "purl": "pkg:npm/anymatch@3.1.2", + "type": "library", + "bom-ref": "pkg:npm/anymatch@3.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "argparse", + "version": "1.0.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "a39468cbab4d1b848bfc53a408037a4738e26a4652db944b605adc32db49a9b75df015ab9c0f9f1b3e7b88de4f6f4ea9bc11af979810d01e3c74996c957be84e" + } + ], + "purl": "pkg:npm/argparse@1.0.10", + "type": "library", + "bom-ref": "pkg:npm/argparse@1.0.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "argparse", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f3ef56a9e6db173a57f4e47e59ae8edbd6ac22881e44ccdc1ad00835da4c1c7c80835d1fd3969215505b704a867ff3d7c35123019faadbf6c4060dc3beeacadd" + } + ], + "purl": "pkg:npm/argparse@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/argparse@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "aria-hidden", + "version": "1.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5c2f12132ded8761ad5c9d89f00a390e3b53ea507429a3307cc7d011d0e816376c283818b99120d5c4a7ddd1beec6f5870e6a15e2615e6f47d67bb7c527cb79" + } + ], + "purl": "pkg:npm/aria-hidden@1.2.3", + "type": "library", + "bom-ref": "pkg:npm/aria-hidden@1.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "aria-query", + "version": "4.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "a3f1de97086e2a94e3fdfaec3ac6cd2cd82734654816c54ffd25b6052175e20565ee401f30e27affcc14014bc6d51d4d1caadf1bedac1d94eed326ae4f5a81ac" + } + ], + "purl": "pkg:npm/aria-query@4.2.2", + "type": "library", + "bom-ref": "pkg:npm/aria-query@4.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "aria-query", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "57e48cec06d4c09f8406707cf835ecd213d91ced16ea9a8171cd1d5bdd0ec2d546d363ecc0ebbfb5eb804682d08dd0ce1feb7da498069d6e7f426a2e7f780f26" + } + ], + "purl": "pkg:npm/aria-query@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/aria-query@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array-buffer-byte-length", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2cfbb06f63fe36b430dd787119cdfaf974afb813e8a68bd761347d130fbe0eef586ff6f1e40cc17eb22c0688f41195227e3414fac1cbdb5b2c799de37ab58efc" + } + ], + "purl": "pkg:npm/array-buffer-byte-length@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/array-buffer-byte-length@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array-includes", + "version": "3.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "81c7a6d4a94153b73dac1f91abcff73cf2ac2b6923a9e1016b76c3e64910a389d894e1d0089a88245a815c311fc1a46e6134f813e17103dc5ecfb19ffdedd0ec" + } + ], + "purl": "pkg:npm/array-includes@3.1.3", + "type": "library", + "bom-ref": "pkg:npm/array-includes@3.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array-includes", + "version": "3.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "8920d864c3324cf92215ab15a9fb8042758061cbcefd278148218a78fa04b618e9e0b10c4dee2e2dcedbd36e68e23019a47862861f313e8f7d4cd5945969060d" + } + ], + "purl": "pkg:npm/array-includes@3.1.5", + "type": "library", + "bom-ref": "pkg:npm/array-includes@3.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array-includes", + "version": "3.1.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "b204db2ef2fa70d9f0db81676da0f28e6bdd750d8c2fc6ab66c81a261a0004ca29973ff841186dad84be6a5af5054335070a7a761c7cbd508148b1be4adc0e17" + } + ], + "purl": "pkg:npm/array-includes@3.1.6", + "type": "library", + "bom-ref": "pkg:npm/array-includes@3.1.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array-union", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "9a34410e4f4e3da23dea375be5be70f24778ec39" + } + ], + "purl": "pkg:npm/array-union@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/array-union@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array-union", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1c6cb1a0e4d853208ceacb547ba1098277781287b0008ef331d7ea3be9068e79599810f3fdc479a5ff2bfdc4785aaeb4b0bfe9d0891c8d41043f04b7185ac8cb" + } + ], + "purl": "pkg:npm/array-union@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/array-union@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array-uniq", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "af6ac877a25cc7f74e058894753858dfdb24fdb6" + } + ], + "purl": "pkg:npm/array-uniq@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/array-uniq@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array.prototype.flat", + "version": "1.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae84d4d0a5883a62780d12e6c0a775f4eb60d3f993dea3cdb7441bdc6596f2239bb995f1ae307fa739f447786aa514968381c2c2ac7ed2fc0e9d69ef94ec9e20" + } + ], + "purl": "pkg:npm/array.prototype.flat@1.3.1", + "type": "library", + "bom-ref": "pkg:npm/array.prototype.flat@1.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array.prototype.flatmap", + "version": "1.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d90bdffc4ca008c5c58a77279befb13350b1cfac85ffb4865e6cb25440e311d4ec18a2c4fcca081d7d649c7d30420e3e6eb4e36f3ae3d042e998b14d942db92" + } + ], + "purl": "pkg:npm/array.prototype.flatmap@1.3.0", + "type": "library", + "bom-ref": "pkg:npm/array.prototype.flatmap@1.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "array.prototype.flatmap", + "version": "1.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f141a7f4ed450d5bcc341d1494bbf8be8c513337bbf85a47c85e6648c46358750c969a035629e2cb4e7cef4565c617e04e72dba6ec13cef0fbe8c4ed5b107f99" + } + ], + "purl": "pkg:npm/array.prototype.flatmap@1.3.1", + "type": "library", + "bom-ref": "pkg:npm/array.prototype.flatmap@1.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "arrify", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "898508da2226f380df904728456849c1501a4b0d" + } + ], + "purl": "pkg:npm/arrify@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/arrify@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "asap", + "version": "2.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "0521d680348088ab39d28d917bca69be9dec7951d7491338e1c752b13f457cd1145192ce196542b2259a44f58cd599e7fa6a99d4e7d5677cf70d61334a9ee144" + } + ], + "purl": "pkg:npm/asap@2.0.6", + "type": "library", + "bom-ref": "pkg:npm/asap@2.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ast-types-flow", + "version": "0.0.7", + "hashes": [ + { + "alg": "SHA-1", + "content": "f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" + } + ], + "purl": "pkg:npm/ast-types-flow@0.0.7", + "type": "library", + "bom-ref": "pkg:npm/ast-types-flow@0.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "astral-regex", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "67bb4cc35cad4d7b798ea31c38ff8e42d794d55b8d2bd634daeb89b4a4354afebd8d740a2a0e5c89b2f0189a30f32cd93fe780735f0498b18f6a5d1ba77eabbd" + } + ], + "purl": "pkg:npm/astral-regex@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/astral-regex@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "asynckit", + "version": "0.4.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + } + ], + "purl": "pkg:npm/asynckit@0.4.0", + "type": "library", + "bom-ref": "pkg:npm/asynckit@0.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "atob", + "version": "2.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "5a6eae92868e1898bfef7a7f725d86bcb8d323924cd64fced788ac0fbdd830bf12b6b1ffeff9511609a0f272026600f76d966f8f0086c6d30e0f7c16340bbc72" + } + ], + "purl": "pkg:npm/atob@2.1.2", + "type": "library", + "bom-ref": "pkg:npm/atob@2.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "available-typed-arrays", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "0cc0f42a2378e9e8a97b38924f52cf3ff4937c3534b2e7c84979a34a0bd5b28536b6ac5cb5078049e8d671f36dc582aa11333553143cb29d8ead2056a4763ab3" + } + ], + "purl": "pkg:npm/available-typed-arrays@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/available-typed-arrays@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "axe-core", + "version": "4.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d501a1a9ff092481825c8e61eca0ac788ee4f5690bc9c8f716d3d30b0a355387757671ce8f9f27a6a622cc347e6231d7c85ffcdd6e3531d8a0e330b09374f78" + } + ], + "purl": "pkg:npm/axe-core@4.4.2", + "type": "library", + "bom-ref": "pkg:npm/axe-core@4.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "axios", + "version": "1.6.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "bdf066843a4a69f82587412574111b56ea1eec3c806af1922d686e4a6e594842909c78417f4c40030c9b6cd1f5224ac93469d2fd51b8239cb18a0d690845c4e2" + } + ], + "purl": "pkg:npm/axios@1.6.1", + "type": "library", + "bom-ref": "pkg:npm/axios@1.6.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "axobject-query", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4dde76e67fa23ce3b251021e05f7004ae1bab89b033884e5ecc76ce601727ab916897eea8544dd6140654a034cc95aad489ab0a6dd645c62dd52de92ca42cc44" + } + ], + "purl": "pkg:npm/axobject-query@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/axobject-query@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-jest", + "version": "27.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "4a3205f2187f8abd2979a7b60fa4ba64a461532eeafc39e91fb93f57a7d3e0182cfcb5d7533b4ea57e06dad0a0abc98ba391c0f6637a36694531e62d2a622c4d" + } + ], + "purl": "pkg:npm/babel-jest@27.3.1", + "type": "library", + "bom-ref": "pkg:npm/babel-jest@27.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-jest", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "71d4397578c645dd08051013890e2664694695113c909a633ce8b174d45d4fe9b751c36a99858deab2ba9efb5761f6370fbe9c6fcb3f3b54acf1e6b6e0f23072" + } + ], + "purl": "pkg:npm/babel-jest@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/babel-jest@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-loader", + "version": "9.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "98dd789e25d6e37b5d76884697c1cfbb9c9f42aef48944e1bc52ffe10cc4480ec6719a02d1e54e86f59d43cfb75254a368313d315b6c5bd9b10d8d3b5bb56954" + } + ], + "purl": "pkg:npm/babel-loader@9.1.2", + "type": "library", + "bom-ref": "pkg:npm/babel-loader@9.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-plugin-dynamic-import-node", + "version": "2.3.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d9548facf5983722a03f91d8b48ba5030b26d423769204b9e096161b4928ca955ef217517fe4b5aff0c6a4426bd8a676c90d2e9f7012f62b31d2c4d08cb5649" + } + ], + "purl": "pkg:npm/babel-plugin-dynamic-import-node@2.3.3", + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-dynamic-import-node@2.3.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-plugin-istanbul", + "version": "6.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "635210a24f7cdb5702f689c2c79a2d8057d19bb2e6f88fb0c313b1ef7f0cfd62cf67d438da6e081b95b414d5fc58b2f6818319a37264b97207d833a958cfaac0" + } + ], + "purl": "pkg:npm/babel-plugin-istanbul@6.1.1", + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-istanbul@6.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-plugin-jest-hoist", + "version": "27.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4cebb1f6484d29d8bae265bed0e2217266c09fbe6d4e5cca8719a23577af41a3dbac160aed82a33f58e5e8d1d327a5d1e54814ac96c29d694a567267dbd75f8f" + } + ], + "purl": "pkg:npm/babel-plugin-jest-hoist@27.2.0", + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-jest-hoist@27.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-plugin-jest-hoist", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e74c02c03e4430d5b8691a4ec2dab3c991c87b04d83712c0e27841fb4f5df0122cb1f35fcc146190120789a3efd528b6dba4d04afa7c8310099b6898daab3685" + } + ], + "purl": "pkg:npm/babel-plugin-jest-hoist@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-jest-hoist@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-plugin-macros", + "version": "2.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4843f9909a5f198a982a906b8f95d4dda870e69e46387274539b2c39243f58155dc240f60f395c7bde5ec504ecde339558f3ca2c1376ae51169022bb75298bbe" + } + ], + "purl": "pkg:npm/babel-plugin-macros@2.8.0", + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-macros@2.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-plugin-polyfill-corejs2", + "version": "0.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "3436746ae351ce601f135a030cf5b6261cc8317524f8515ed8809e8e6b794f8a1c2a0890c777b4542471f4d08089d70cb4bd91519696b579e68d30a4c74b5c6c" + } + ], + "purl": "pkg:npm/babel-plugin-polyfill-corejs2@0.2.3", + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-polyfill-corejs2@0.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-plugin-polyfill-corejs3", + "version": "0.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "24bc22f6f96855d5cb8f30022fcd23db86c6ebf4f5818c70a301b8e1d83a1cdffb6933ddc8f6c926275fe9a8e803744f1c7b56d23f4a32b48e2e9219a409cfa6" + } + ], + "purl": "pkg:npm/babel-plugin-polyfill-corejs3@0.3.0", + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-polyfill-corejs3@0.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-plugin-polyfill-regenerator", + "version": "0.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "25513bf284593ca148794a851ab48e44dcd09eb0f0651d7aa2259e18cf19ca3067d97013e4e8cffb05f1e444aea37de752c154109623b64967b0a6f15b92feee" + } + ], + "purl": "pkg:npm/babel-plugin-polyfill-regenerator@0.2.3", + "type": "library", + "bom-ref": "pkg:npm/babel-plugin-polyfill-regenerator@0.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-preset-current-node-syntax", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "33b2d0d1bc5aae4c50a0dfafcf96893ec2c19fbee7f10813166a3c58ad3fe386ae2b6c65097ad8714c47171814eea5b9633c3f0a398b44adae27368277b2efa9" + } + ], + "purl": "pkg:npm/babel-preset-current-node-syntax@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/babel-preset-current-node-syntax@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-preset-jest", + "version": "27.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "cfb320437a5e0703792f9682a812a717a8aa765bd9bc5510ca7121bb427e5fd9c72d4ef68cede2637df595c62b83e02cb09f2aef1b2fe7fdc0202cd5989ff0be" + } + ], + "purl": "pkg:npm/babel-preset-jest@27.2.0", + "type": "library", + "bom-ref": "pkg:npm/babel-preset-jest@27.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "babel-preset-jest", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "369b5fd85ce53c2598b89838d4706a5d54fcca6e9b5ce7afb824db871954a63c2dcac19a21616f0c48e9e32f86edf975dc580e763b3b3ff0e612ba87edd6b402" + } + ], + "purl": "pkg:npm/babel-preset-jest@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/babel-preset-jest@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "bail", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "d313ba99877b241d987acc432a995a7d1a6c88eccfb7d574d9d74f08b6d8d716063ce5f6e0d4f2379d2a9d4c6008f712a183212a902e0538d0a1164202450347" + } + ], + "purl": "pkg:npm/bail@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/bail@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "balanced-match", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "de849e50ed13315ebb84dd4099b5ec2b8c9aa94eed8e21e56f144364ea47d0a5bdf82797e1b440697d009f1b74b71d8cae94695b041a3f02252121098585393f" + } + ], + "purl": "pkg:npm/balanced-match@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/balanced-match@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "balanced-match", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d6e8144abf011d74672b6dca7ee612fa054c0b72c1f10187f56d621ad0cfb0d5a841b82d5d2131901bb66834787a98865993a366c8fa94397f37f02aa930b750" + } + ], + "purl": "pkg:npm/balanced-match@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/balanced-match@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "base16", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a4d75890d3e22549c48677d7579ebeb10cbcf8068f706dcf3990149f0af811ea82519173e2ed8f78f6e8ddee468f8ce260f096194653f511e2b2f24a9f016e05" + } + ], + "purl": "pkg:npm/base16@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/base16@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "big-integer", + "version": "1.6.51", + "hashes": [ + { + "alg": "SHA-512", + "content": "18f12277663d414d44c65d6ba4ef41d883c91873d2ba91791a75483f46e562f34e31eaf66d3bd25acd6318e520d388539aeebb9e62ec43d4c1a35a6e6a8b411e" + } + ], + "purl": "pkg:npm/big-integer@1.6.51", + "type": "library", + "bom-ref": "pkg:npm/big-integer@1.6.51", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "big.js", + "version": "5.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf22f63b2989c666ab3bc83132bd2684286c3bd406c21ca77eebb8f8c1d3016e9ccdfabd86e98207bacaa548c377d6148833d4e26ce9caea454af382940c1b99" + } + ], + "purl": "pkg:npm/big.js@5.2.2", + "type": "library", + "bom-ref": "pkg:npm/big.js@5.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "boolbase", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + } + ], + "purl": "pkg:npm/boolbase@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/boolbase@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "bootstrap-3-typeahead", + "version": "4.0.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "cb1c969044856862096fc8c71cc21b3acbb50412" + } + ], + "purl": "pkg:npm/bootstrap-3-typeahead@4.0.2", + "type": "library", + "bom-ref": "pkg:npm/bootstrap-3-typeahead@4.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "bootstrap", + "version": "3.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c8de686559910b07b968ac33463ebbdfa9d298a0d7ee92d8c2c5e20a3fc4626a35ea1383681893e049f96ed5bf8e1045fec795f97331dda630ba4602dc0e3d0c" + } + ], + "purl": "pkg:npm/bootstrap@3.4.1", + "type": "library", + "bom-ref": "pkg:npm/bootstrap@3.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "brace-expansion", + "version": "1.1.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "882b8f1c3160ac75fb1f6bc423fe71a73d3bcd21c1d344e9ba0aa1998b5598c3bae75f260ae44ca0e60595d101974835f3bb9fa3375a1e058a71815beb5a8688" + } + ], + "purl": "pkg:npm/brace-expansion@1.1.11", + "type": "library", + "bom-ref": "pkg:npm/brace-expansion@1.1.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "brace-expansion", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e7008bd0f1e33e902e9a50bc7ac2e422c15b27cec8bd7775b1cd5dc5a564c6035f45eb6d64c1d6ec01c14a5e02941d95accbe998ea22f5b074f1584142cad0c" + } + ], + "purl": "pkg:npm/brace-expansion@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/brace-expansion@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "braces", + "version": "3.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "6fcba6f8bd51cccdd60d2cef866ea0233d727d36c1b7a61395c10a02fb26a82659170e3acfadba9558fd8f5c843d6df71f91fe94142964c3f593c97eefc1dad0" + } + ], + "purl": "pkg:npm/braces@3.0.2", + "type": "library", + "bom-ref": "pkg:npm/braces@3.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "broadcast-channel", + "version": "3.7.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "70800a25703118971e359193652073331cf23a7ef671580f9cac7875ce8b4634206da25442a872e6bccbdf36ccc64316b062a4bf68521643d13045dfa0c67632" + } + ], + "purl": "pkg:npm/broadcast-channel@3.7.0", + "type": "library", + "bom-ref": "pkg:npm/broadcast-channel@3.7.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "browser-process-hrtime", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f68e5479c2371a192933a0eb5ebebd3db948b96c4f2a4f58d231c1461768719db2ed81020450ac1e6efd3ebdcec91d80be384391a6c525a0c931845acc782ca3" + } + ], + "purl": "pkg:npm/browser-process-hrtime@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/browser-process-hrtime@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "browserslist", + "version": "4.20.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "a24d5dfb55a99d4db85d837ba02dd05a04f232163f6af3c9febf53d34c71bd4388a5aac0fe073e50f50c6a87778be1bab3e9c8da751bf7167993bf78b88c1287" + } + ], + "purl": "pkg:npm/browserslist@4.20.4", + "type": "library", + "bom-ref": "pkg:npm/browserslist@4.20.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "bser", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "810c53344fc601f208ae61cb504de8272a7914ee874417e18e7c38ff032603add91832675819a063f972401a670d490698085b49edfdb71d9dfe24ce01f825c1" + } + ], + "purl": "pkg:npm/bser@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/bser@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "buffer-from", + "version": "1.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "13e5d0091c126da6a20a1b6fea4e83c2073e6f1f81b3abee2891c7979928c7f05a29b8625f3a903b02b870edb6c84946a763829a3c15853dc79b18323c69c97d" + } + ], + "purl": "pkg:npm/buffer-from@1.1.2", + "type": "library", + "bom-ref": "pkg:npm/buffer-from@1.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cacache", + "version": "15.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b8aa094879a7aea5e0b610c5c7f214e840ffe7177e34d19ef816fe90b672ecabb83fe05a8961147e500a3d9ede033b1819cb0018048966cc9b5e9faab847074f" + } + ], + "purl": "pkg:npm/cacache@15.2.0", + "type": "library", + "bom-ref": "pkg:npm/cacache@15.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "call-bind", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "ecef856c28a1ac1e5619b1587ac72dc264ca69eeab3a22339b3d6272b79627ed1a03b2c97eeaa112ca364fd9dca5c16dccc42dcd77f64061ae7962464d8b2aac" + } + ], + "purl": "pkg:npm/call-bind@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/call-bind@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "call-me-maybe", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "26d208ea89e37b5cbde60250a15f031c16a4d66b" + } + ], + "purl": "pkg:npm/call-me-maybe@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/call-me-maybe@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "callsites", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3fc06302c5ef652f95203508d7584709012fef8613ebb6148b924914d588a8bdb7e6c0668d7e3eab1f4cbaf96ce62bf234435cb71e3ac502d0dda4ee13bb2c69" + } + ], + "purl": "pkg:npm/callsites@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/callsites@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "camelcase-keys", + "version": "7.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa542510280397912ffa092f38d6a20f85f84c5da0c992ae2c1bf3c74ccba365300319b3de124fffce3569a3074de1f54fbbf91d1c2846af7575aba55e8616be" + } + ], + "purl": "pkg:npm/camelcase-keys@7.0.0", + "type": "library", + "bom-ref": "pkg:npm/camelcase-keys@7.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "camelcase", + "version": "5.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f6f124c1d7bd27c164badd48ed944384ddd95d400a5a257664388d6e3057f37f7ad1b8f7a01da1deb3279ef98c50f96e92bd10d057a52b74e751891d79df026" + } + ], + "purl": "pkg:npm/camelcase@5.3.1", + "type": "library", + "bom-ref": "pkg:npm/camelcase@5.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "camelcase", + "version": "6.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "73bc15bdbc377f7ee7ba86d036d82c806f4f382f6a31b36e3109930aa66fdb76fa308cf47dc6290623a5bfd80437f85d2dd9d94c342183a7bd0eae4cd6f2af7e" + } + ], + "purl": "pkg:npm/camelcase@6.2.0", + "type": "library", + "bom-ref": "pkg:npm/camelcase@6.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "caniuse-api", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6ec4f0b8883f05964afefade5536186d25a87b617eef53fb2b9406117fa94f6e740d96df535310e69ace2a93d1f8b2fab9628adca330302012ef8401dd49b5bb" + } + ], + "purl": "pkg:npm/caniuse-api@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/caniuse-api@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "caniuse-lite", + "version": "1.0.30001516", + "hashes": [ + { + "alg": "SHA-512", + "content": "5a679cf6908163c0966e62381ec8c17902ea0d3a95f759c5551f370e76696324673c8d7078f0ec4e0d1b18b3c2e5553fdce2195757e6c4479ad5bfad14a7bcea" + } + ], + "purl": "pkg:npm/caniuse-lite@1.0.30001516", + "type": "library", + "bom-ref": "pkg:npm/caniuse-lite@1.0.30001516", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ccount", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "7b2ac5d23885a58fb776b4fadfcddfd6a8646c6b0b4a27cd02303ad4852366398b0968c8b58e8b07d7edf588680e0c1f99c941db386ee752dcefef796fc35102" + } + ], + "purl": "pkg:npm/ccount@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/ccount@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "chakra-react-select", + "version": "4.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "4048f2486b1debaeacd0b4ab2f1a4988ebf499514f5475633cc723dc94606b71ffac7a54ba467ac9d617d2e5e5d16319b54493ed1f6170a36cd1bcc0e914cff1" + } + ], + "purl": "pkg:npm/chakra-react-select@4.0.3", + "type": "framework", + "bom-ref": "pkg:npm/chakra-react-select@4.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "chalk", + "version": "2.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "32d8be7fd96924d730178b5657cfcead34ed1758198be7fc16a97201da2eada95c156150585dbe3600874a18e409bf881412eaf5bb99c04d71724414e29792b9" + } + ], + "purl": "pkg:npm/chalk@2.4.2", + "type": "library", + "bom-ref": "pkg:npm/chalk@2.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "chalk", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e03dc1e967f8d4a39844576cce60ea3021aae5557fb8c001dbbdc920b98efb78c0961f17e2a0ed76d8024777f1b5b2c43334b1db641d8670dc26fbb6bb57d5c2" + } + ], + "purl": "pkg:npm/chalk@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/chalk@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "chalk", + "version": "4.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "7621f37432b1714f9b02c51ba072cf103422c34a847b4a9ded26149f71e070595681b0dc7cb1acc0e1d8786ac72b31bdcfa5187f4d5df5514c7d9c4f335c594a" + } + ], + "purl": "pkg:npm/chalk@4.1.1", + "type": "library", + "bom-ref": "pkg:npm/chalk@4.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "chalk", + "version": "5.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "168d3b58e606a8c7c25873b34973add82c436c2eac912fe33bdca711c9a900d3283eb0fe5b5af52ba571ee2366f804261135355ebdadfa7f27ce457db7ac61df" + } + ], + "purl": "pkg:npm/chalk@5.0.1", + "type": "library", + "bom-ref": "pkg:npm/chalk@5.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "char-regex", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "916597cedbd9e5205057e79180a15e87cab9b0bb99636fbc5942339715954e0fa81b0635e2aca5c7529b2b31ddf0fe99624020d31c880d4f4930787224c6758f" + } + ], + "purl": "pkg:npm/char-regex@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/char-regex@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "character-entities-legacy", + "version": "1.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd79ebfbb6454b5bb17a2503bd5d36c10f900db739e68f7bb48579cc749c48f26970b9bfaf40c53dca18ded611a7e559ba4c6e31e2a05d89ac5d01ced39cd078" + } + ], + "purl": "pkg:npm/character-entities-legacy@1.1.4", + "type": "library", + "bom-ref": "pkg:npm/character-entities-legacy@1.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "character-entities", + "version": "1.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "8813327841f17d59c86a4c0eb835e9564739e078a33600b2401db0d157c64138657ba3579f9d3353a57fbbe2c38711dc0d43e88e7e8aa606b73d3003f16d5b43" + } + ], + "purl": "pkg:npm/character-entities@1.2.4", + "type": "library", + "bom-ref": "pkg:npm/character-entities@1.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "character-entities", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "b21c7ba10d00c1e9ff05121d92392fcf9e0f9c4108fc48f05c3488669f3afca29d6da7c78750dffd16060619f885b7b6fae282f459d3e540847723f3dda8bd85" + } + ], + "purl": "pkg:npm/character-entities@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/character-entities@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "character-reference-invalid", + "version": "1.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "98a2949146e13e942508e7c8b9992f484824b633c522c64a4516c2e8a59510cbe5cdb963de2ddab10bf9383b2bc2dd0dde91c012f8cff0a4d03c7929d3eea33a" + } + ], + "purl": "pkg:npm/character-reference-invalid@1.1.4", + "type": "library", + "bom-ref": "pkg:npm/character-reference-invalid@1.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "chownr", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c8a26b43179286a5da2090b77d56ca6f17393d29fa72c86952f18155665ed318f0472f9b2720e9f17ac8705603ed790f5be04c9d97ea556c8c84d4372f09681" + } + ], + "purl": "pkg:npm/chownr@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/chownr@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "chrome-trace-event", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "a772942f2420e12ecd2078b17706c65fe9c51e4a01880e18426c96b636fc5e7812295d76e27266472b2001eba36d455bd79be1f91bc551f08fa94eeb5e4fa166" + } + ], + "purl": "pkg:npm/chrome-trace-event@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/chrome-trace-event@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ci-info", + "version": "3.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "755a915fb7cb526f09e85807278d7c5ee2200cb64391870315378be9303682de5694865442bac7e8466b3429704ff1f415ab5e52c66418838f46b2db3fe3d1f4" + } + ], + "purl": "pkg:npm/ci-info@3.2.0", + "type": "library", + "bom-ref": "pkg:npm/ci-info@3.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cjs-module-lexer", + "version": "1.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "70e53dbac670f3f7572172adc1af29334393250b8993130deb0df472c35151eac77de43947a53792453f16d25e21fdccdb4d8e1df63653c71c227046effc6880" + } + ], + "purl": "pkg:npm/cjs-module-lexer@1.2.2", + "type": "library", + "bom-ref": "pkg:npm/cjs-module-lexer@1.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "classcat", + "version": "5.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1ba643b0eb3e35de9f870c670110d7b8f7c58cf70a2a587889c42abb9ef9b17bd5a6ad49aa7c0731a48c0088cb4ce50dc08589335dc3501eab16ab498d0f9d6" + } + ], + "purl": "pkg:npm/classcat@5.0.4", + "type": "library", + "bom-ref": "pkg:npm/classcat@5.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "classnames", + "version": "2.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "3a541d6d9ee02df19aad2ab17ac31eb036b9bb3eca15b203f0aa6afd2c48a0d183a98f25498b340fe861b415e171d077adc6d702b16beef94785e2e4d6fa1e34" + } + ], + "purl": "pkg:npm/classnames@2.3.1", + "type": "library", + "bom-ref": "pkg:npm/classnames@2.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "clean-stack", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e1d882f4769313e29100c5a10e1ac63840a0599c687af31ce5396439b32a352b1553ad8f6335d9fd23138f3c8600517562eb20c46712593117061a7408fc10d4" + } + ], + "purl": "pkg:npm/clean-stack@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/clean-stack@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "clean-webpack-plugin", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "31c8a2ad41f9afe7182c608e2f9257fd92f33996d5af5a2ddc5c3e29cbdb8546fa3ccfb2c9ca9df5984895c8a0439825f97869a4d9b0ddb105b9a68c3722e3dc" + } + ], + "purl": "pkg:npm/clean-webpack-plugin@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/clean-webpack-plugin@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cli", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "22817534f24bfa4950c34d532d48ecbc621b8c14" + } + ], + "purl": "pkg:npm/cli@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/cli@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cliui", + "version": "7.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "39c444ebc70eb15317a7562fa2797f7f39103b28cb4aeffc6e13c37d0b747b4fc46f6f374ca3f6d05b3632aa0fb2bf52c00e7de6b44203e40ccd873d9c13fe25" + } + ], + "purl": "pkg:npm/cliui@7.0.4", + "type": "library", + "bom-ref": "pkg:npm/cliui@7.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "clone-deep", + "version": "4.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9de1c1f71bb387fc24d1d207c1ec805efd9a3c6648564de92cc7befd137320d7f5edf7b4386f7a42ba24b580149bb48cd4f067cd369b68b6e8aaac43c8c53e49" + } + ], + "purl": "pkg:npm/clone-deep@4.0.1", + "type": "library", + "bom-ref": "pkg:npm/clone-deep@4.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "clsx", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ebf6cf868eb6e29dd2da9332bcfe642813d79c8dee7c72ce6c11427e0c7e2e4791e658365d8cb686a66a51fe39ca90fc08e9f66e1806252504fa5e5d84d06278" + } + ], + "purl": "pkg:npm/clsx@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/clsx@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "co", + "version": "4.6.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + } + ], + "purl": "pkg:npm/co@4.6.0", + "type": "library", + "bom-ref": "pkg:npm/co@4.6.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "codemirror", + "version": "5.61.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f83d4d66302e72ecc4f77bc919b01a5f3be8047c29f67259596585f6eb63bf6e7ee4065489a87a08895f6f88a41b83280ec16c086f278a2247e7ef8e3b62e021" + } + ], + "purl": "pkg:npm/codemirror@5.61.1", + "type": "library", + "bom-ref": "pkg:npm/codemirror@5.61.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "collect-v8-coverage", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "8813ed9637c235c4ca340b68d0a12d0df677ab38c9bea137693199b1b863481968aeaa572656965ad3cedf90fe6489a80b72967a35fae28fb23c6c615924f37e" + } + ], + "purl": "pkg:npm/collect-v8-coverage@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/collect-v8-coverage@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "color-convert", + "version": "1.9.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "41f014b5dfaf15d02d150702f020b262dd5f616c52a8088ad9c483eb30c1f0dddca6c10102f471a7dcce1a0e86fd21c7258013f3cfdacff22e0c600bb0d55b1a" + } + ], + "purl": "pkg:npm/color-convert@1.9.3", + "type": "library", + "bom-ref": "pkg:npm/color-convert@1.9.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "color-convert", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "4511023ec8fb8aeff16f9a0a61cb051d2a6914d9ec8ffe763954d129be333f9a275f0545df3566993a0d70e7c60be0910e97cafd4e7ce1f320dfc64709a12529" + } + ], + "purl": "pkg:npm/color-convert@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/color-convert@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "color-name", + "version": "1.1.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "a7d0558bd89c42f795dd42328f740831ca53bc25" + } + ], + "purl": "pkg:npm/color-name@1.1.3", + "type": "library", + "bom-ref": "pkg:npm/color-name@1.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "color-name", + "version": "1.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "74ecbedc0b96ddadb035b64722e319a537208c6b8b53fb812ffb9b71917d3976c3a3c7dfe0ef32569e417f479f4bcb84a18a39ab8171edd63d3a04065e002c40" + } + ], + "purl": "pkg:npm/color-name@1.1.4", + "type": "library", + "bom-ref": "pkg:npm/color-name@1.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "color-string", + "version": "1.9.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b21ad56b0405a239d9bfac4ce346a7c780a4a033fe7d9b30fd97ab10cb16fe9cb3b116c4969b0bfc30555bbab7131c70bac74d5c8de55e9ba1119933b3ca7912" + } + ], + "purl": "pkg:npm/color-string@1.9.1", + "type": "library", + "bom-ref": "pkg:npm/color-string@1.9.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "color2k", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "9098701f99c0c1bdf8b66caeaaafe582310ace51579f553df4d96707a5ace2a55a1117115187983f5701c3a049e2fc5a592b4050479fe1632bed68ce0a706df3" + } + ], + "purl": "pkg:npm/color2k@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/color2k@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "color", + "version": "4.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "d6b5deb94522186af2921f8278176ee487bb389c229c28106346dcec6091c72e71547cbe9a86aa9292ff8ea42ad0cb5039e61caea133e1a6dce5fd0ab54ed6e0" + } + ], + "purl": "pkg:npm/color@4.2.3", + "type": "library", + "bom-ref": "pkg:npm/color@4.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "colord", + "version": "2.9.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "8de0b56b15e99dbd3fda79ff6352cfb8b7605c12c7eda0dc1eee0a10a7eac37094857ed9a5f05294f2b2a9713a6ed2201337d6b6b5f7fedc8109a0af5ef3243b" + } + ], + "purl": "pkg:npm/colord@2.9.3", + "type": "library", + "bom-ref": "pkg:npm/colord@2.9.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "colorette", + "version": "1.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "30a18ccf27debaeb42fd927571b6bd36a70da5f7aa3147189b217564563afc29fb08d4802b1e9aface3cb2a2eac80899b9a3f64dca8c868a3e765c059d5c53f7" + } + ], + "purl": "pkg:npm/colorette@1.2.2", + "type": "library", + "bom-ref": "pkg:npm/colorette@1.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "colorette", + "version": "2.0.19", + "hashes": [ + { + "alg": "SHA-512", + "content": "ded96ffdd20fec55af8f706c6c7ac62c9ea5fe82a1d4edd372006a327fb2c826a03b1736ddfcb30d2e87ca941b83159b9290e77f9da9d4bb91e1e58343f2bd59" + } + ], + "purl": "pkg:npm/colorette@2.0.19", + "type": "library", + "bom-ref": "pkg:npm/colorette@2.0.19", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "combined-stream", + "version": "1.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "1503783117ee25e1dfedc05b04c2455e12920eafb690002b06599106f72f144e410751d9297b5214048385d973f73398c3187c943767be630e7bffb971da0476" + } + ], + "purl": "pkg:npm/combined-stream@1.0.8", + "type": "library", + "bom-ref": "pkg:npm/combined-stream@1.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "comma-separated-tokens", + "version": "1.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "187b8344ed764b2a6ed9c57bd1dd5d900d845265c7827b6bcdba6f381f90cbee3dca935f1a0150202d9f8615db9f2ac94729c3080011b13ecebb433a862ae97f" + } + ], + "purl": "pkg:npm/comma-separated-tokens@1.0.8", + "type": "library", + "bom-ref": "pkg:npm/comma-separated-tokens@1.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "comma-separated-tokens", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "16ee2125dbf37b29427d03e9f5219689da73accb3bb53ae5bba55bf1719a446724f1048d649269e77f16adbeb42dac787cfc11eb8562638ebc3885136d194666" + } + ], + "purl": "pkg:npm/comma-separated-tokens@2.0.3", + "type": "library", + "bom-ref": "pkg:npm/comma-separated-tokens@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "commander", + "version": "2.20.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "1a956498cf2f176bd05248f62ef6660f7e49c5e24e2c2c09f5c524ba0ca4da7ba16efdfe989be92d862dfb4f9448cc44fa88fe7b2fe52449e1670ef9c7f38c71" + } + ], + "purl": "pkg:npm/commander@2.20.3", + "type": "library", + "bom-ref": "pkg:npm/commander@2.20.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "commander", + "version": "7.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "42b59707e6504953e6216221b443bd1fe8301da3066221790a1be827e2bd6461c6fec56c6baca27ac003d460bfc78eac113d345e5c28d6ee3d455555cef71293" + } + ], + "purl": "pkg:npm/commander@7.2.0", + "type": "library", + "bom-ref": "pkg:npm/commander@7.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "commondir", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "ddd800da0c66127393cca5950ea968a3aaf1253b" + } + ], + "purl": "pkg:npm/commondir@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/commondir@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "compute-scroll-into-view", + "version": "1.0.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "98a0e320d7b7b5cea119e95430d0f3ba1a2b21467b912ec1c32634af6c107761ce1f6b51b89ca4882d3a892117f32d53ba1373bf3e067099cad7a98cd89d4d31" + } + ], + "purl": "pkg:npm/compute-scroll-into-view@1.0.14", + "type": "library", + "bom-ref": "pkg:npm/compute-scroll-into-view@1.0.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "concat-map", + "version": "0.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd2aefe1db30c903417e8846a73f68e986f71b3dd2ad40ea047e6b4ee84647b6a1b656d82a7571c366c214c4658da03b1171da5d9f30b07768745bdb9212a6aa" + } + ], + "purl": "pkg:npm/concat-map@0.0.1", + "type": "library", + "bom-ref": "pkg:npm/concat-map@0.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "confusing-browser-globals", + "version": "1.0.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "80d95dff7972487c2e85a565b8950a2de3d88ab33740d08acd5c6a01d849208f7f5972955f93d447331526ca52d634ec952aa37ae1b828c5534a8ba2b7960f1c" + } + ], + "purl": "pkg:npm/confusing-browser-globals@1.0.10", + "type": "library", + "bom-ref": "pkg:npm/confusing-browser-globals@1.0.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "console-browserify", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "f0241c45730a9fc6323b206dbf38edc741d0bb10" + } + ], + "purl": "pkg:npm/console-browserify@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/console-browserify@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "convert-source-map", + "version": "1.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8e41d8cfe3dcd5888ffa8bb9c826903cac0978b15fc974f7d4f6766cdd5a8ec062208b3202bee376aeee9f31dfb89652f4b5aaf5f146095df67f4d6b668548c" + } + ], + "purl": "pkg:npm/convert-source-map@1.8.0", + "type": "library", + "bom-ref": "pkg:npm/convert-source-map@1.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "convert-source-map", + "version": "1.7.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e052645f3297103075b270856652cfe20a42dc920b89c0a919bcc6f5ff46eed1aa182cc44d0da158fadc8a703da14e30b5fd9b8946841f9d3ae549cc791df7a0" + } + ], + "purl": "pkg:npm/convert-source-map@1.7.0", + "type": "library", + "bom-ref": "pkg:npm/convert-source-map@1.7.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "copy-to-clipboard", + "version": "3.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b5deaa3a9081d34e90a6f3f5aea7ed1bd66556113beeda420cccaa0af05a642e417196dd339d400770cce8c7e4fcb0f96ab595eadc2ba5123407b1888614953" + } + ], + "purl": "pkg:npm/copy-to-clipboard@3.3.1", + "type": "library", + "bom-ref": "pkg:npm/copy-to-clipboard@3.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "copy-webpack-plugin", + "version": "6.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "317c8f0a374f571e62896ca5e3455adc91a1dbb6cacce4cd637363513ae8b03daaedd47f70b0f4d35deea89dc1a456d48f238d20d8dbeaa23b9c3209ba3acc6c" + } + ], + "purl": "pkg:npm/copy-webpack-plugin@6.4.1", + "type": "library", + "bom-ref": "pkg:npm/copy-webpack-plugin@6.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "core-js-compat", + "version": "3.19.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "43f549ee3005ff2ebcf9a52c409fda7cf39ec1db06903b5c31be3427c31bb962a52b763ec2d1eaf1b4c728f8f658a58b22a992e49847b380b31edcfaa53d96ea" + } + ], + "purl": "pkg:npm/core-js-compat@3.19.1", + "type": "library", + "bom-ref": "pkg:npm/core-js-compat@3.19.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "core-js-pure", + "version": "3.18.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6672bef6fcae3212ae9481aa4ffed11c646893c46d9073045ff0463c7907c7ea2e0e4abe314bdff667c881daa1a663c3bbcf95e54b519ff09b09173d238957e3" + } + ], + "purl": "pkg:npm/core-js-pure@3.18.0", + "type": "library", + "bom-ref": "pkg:npm/core-js-pure@3.18.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "core-util-is", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5fd54220aa2bc5ab57aab7140c940754503c1a7" + } + ], + "purl": "pkg:npm/core-util-is@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/core-util-is@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cosmiconfig", + "version": "6.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5bdd92faf8bf1bf492cb0b1dd9768672e3ed840a9842328d8fc2a80fd6d95f56ae8ce9845ecb3049b6f596b5b0d2a4dafd867f7aa640a266a51c14473ee7842" + } + ], + "purl": "pkg:npm/cosmiconfig@6.0.0", + "type": "library", + "bom-ref": "pkg:npm/cosmiconfig@6.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cosmiconfig", + "version": "8.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "deb4cc9c5240d6d08e3f0471b60178c1dec06f6aaf0db2fc8d7fb7b268c86d2e0795905a8139691116dd37b8806d696b7f113733c736ee44f04dac10eecb7e39" + } + ], + "purl": "pkg:npm/cosmiconfig@8.2.0", + "type": "library", + "bom-ref": "pkg:npm/cosmiconfig@8.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cross-fetch", + "version": "3.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "96f6f5481b08d19ec60f09ae89dfa6537916541c135546deed2d07e76c9a680750397ab6624b5309976501c34a17313a42d473d2c9e9c3d6cd88f78e224910bf" + } + ], + "purl": "pkg:npm/cross-fetch@3.1.5", + "type": "library", + "bom-ref": "pkg:npm/cross-fetch@3.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cross-spawn", + "version": "7.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "8910cf24a50f544343edd1cf3bcae46ce9cfa720f281c0c5b568e9796342832f163f6ad77315cbf13b2445e425e8eac1d86efe509ada82cd6ad7916e75cec6eb" + } + ], + "purl": "pkg:npm/cross-spawn@7.0.3", + "type": "library", + "bom-ref": "pkg:npm/cross-spawn@7.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css-box-model", + "version": "1.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6bb56be10fe477f6b0f7a6e7246df7d96f55f4b9093baf4945c68260352a8e9ebfcf4c3a55c6638007136e017110f7c181d9c0c258778b0bbe84ba296be7e527" + } + ], + "purl": "pkg:npm/css-box-model@1.2.1", + "type": "library", + "bom-ref": "pkg:npm/css-box-model@1.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css-declaration-sorter", + "version": "6.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3864faefb5061c94c054c4613cef87278a0a967df09014f0b43147d288dbaa6f8c266eb1b83307a769e4861fd385a06aab6d086eb68141258a7d22cd1d03bd3a" + } + ], + "purl": "pkg:npm/css-declaration-sorter@6.3.0", + "type": "library", + "bom-ref": "pkg:npm/css-declaration-sorter@6.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css-functions-list", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ffd942bd865a51b046bd8520606149e1d7188b2a9d8528c6ec83d596ea15f00d482e3905ee2966869d4e194cfc9fe9e605cbb444dad0033803f01e8525baeddb" + } + ], + "purl": "pkg:npm/css-functions-list@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/css-functions-list@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css-loader", + "version": "5.2.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "43b98ebe904d046ed8ad518cc51c5c0496452fbe68f9c1f669b34049d89b923fdf7df603f2a59b22766b0f44bd71c23abd97251770ec1c4ee78c694bb5a1db86" + } + ], + "purl": "pkg:npm/css-loader@5.2.7", + "type": "library", + "bom-ref": "pkg:npm/css-loader@5.2.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css-minimizer-webpack-plugin", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed95d7473447be87efdd469ce58f9191644da3464c95c83c7bdfceb6ba94626c03589a3eaacebb1af75e16b5cbb056fb73328dc234213e43346af948625fb59c" + } + ], + "purl": "pkg:npm/css-minimizer-webpack-plugin@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/css-minimizer-webpack-plugin@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css-select", + "version": "4.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c0fa4e62d9ec5689edbb698e0e1035f49aea5b136c7dd6ad44a77ae249a945b4208752ad22d928e6c4e71293dda52689b334ce84432517f44fcf6f2a8f81ea85" + } + ], + "purl": "pkg:npm/css-select@4.3.0", + "type": "library", + "bom-ref": "pkg:npm/css-select@4.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css-tree", + "version": "1.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "b51a5da6917b4d16b366b8c9eafdecb73bfddeac51712b05996e9c5f4666d8d54aa71135595d476e59e0855bfd4eb7a2ade1e4a88fd50c4b1fa25445d69eb2ed" + } + ], + "purl": "pkg:npm/css-tree@1.1.3", + "type": "library", + "bom-ref": "pkg:npm/css-tree@1.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css-tree", + "version": "2.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e85bf50d5fd3630fff405e48cd076ab0d0e3c7fc1cf13acc059b2a8cbf5e5b4d6d59bed1ee4fe6abefd55df24297b4a80f97a6b09a29f5c381c8965fb3c85823" + } + ], + "purl": "pkg:npm/css-tree@2.3.1", + "type": "library", + "bom-ref": "pkg:npm/css-tree@2.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css-what", + "version": "6.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1d352b81127baf876c64a53a1a39a97d12b53bbea1f7b67c31f4b51b4168cd1fa8176906e957def0913acf0ae46f18a0ce23c78a7089fa008f8c0f446810ed47" + } + ], + "purl": "pkg:npm/css-what@6.1.0", + "type": "library", + "bom-ref": "pkg:npm/css-what@6.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css.escape", + "version": "1.5.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "42e27d4fa04ae32f931a4b4d4191fa9cddee97cb" + } + ], + "purl": "pkg:npm/css.escape@1.5.1", + "type": "library", + "bom-ref": "pkg:npm/css.escape@1.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "css", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0c6f6915fc0eaf373e85ac299aa5ff747607246f81b1d6f49258728b5b039de3a018e5f2f704080bc873c95a757b835160305dc5cca5bf2c0f9245c21c0cd3c9" + } + ], + "purl": "pkg:npm/css@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/css@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cssesc", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd36ff25c8cad75d67352706a1be4c36db27b4d3356823540e2a41fd39306458720ebac4e3b48ec7fd7cc05d9b6e381cdd9cc248a5b54f99ede446c5a00cff56" + } + ], + "purl": "pkg:npm/cssesc@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/cssesc@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cssfontparser", + "version": "1.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "eadba7e0ba199e3ed537a61e7a03956faeca057ffb249b2abe3fa9bf7640ec5f3bf3f78ddf701b19ae5bfd2ff05f14bfb5ca7c9dce34c5152bb0f9712323543e" + } + ], + "purl": "pkg:npm/cssfontparser@1.2.1", + "type": "library", + "bom-ref": "pkg:npm/cssfontparser@1.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cssnano-preset-default", + "version": "5.2.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "e0f69d47536db9a20af0cbcb36e63b3339cae1626d7a57469730a231a69388e50ff9aa5e888bd40c85f293350ea2a80e394007ad4eb89dc743f7435f651dcb49" + } + ], + "purl": "pkg:npm/cssnano-preset-default@5.2.11", + "type": "library", + "bom-ref": "pkg:npm/cssnano-preset-default@5.2.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cssnano-utils", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "250351d7dfd8661cf8a6c2d7feb43d33cddedf3d967ff1dd25baf2ced7b86b7352b9a7f2a7dc3f23853e871e42d92f60e35aa5b2d1fb0c45a765a6a3f373ae10" + } + ], + "purl": "pkg:npm/cssnano-utils@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/cssnano-utils@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cssnano", + "version": "5.1.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "da7c7e3ba2ef7b03e8e4406d62b29cf3beb698c919464f5c30620e3f8525926c479bb39bc47fb3bec249faa2f03e451ce3fcae98bfea2646af622f4d96875621" + } + ], + "purl": "pkg:npm/cssnano@5.1.11", + "type": "library", + "bom-ref": "pkg:npm/cssnano@5.1.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "csso", + "version": "4.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c2f95c7486dfea9c0a124eef1e3f3f064734078ca55d9aee2ef3a0b3d7684b978eb0ea6ea1d395db3242852a64a7ea51a5840b40c785d389ebdd9ebc4ad6bd8c" + } + ], + "purl": "pkg:npm/csso@4.2.0", + "type": "library", + "bom-ref": "pkg:npm/csso@4.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cssom", + "version": "0.4.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "a77a6f53baf5332caa6d393e59b3492202631b65664c8681d74ac8f772f354fae60c92a4cca60cb71c7202f41747f352ea8b6ecef788efeec106add28c14b69b" + } + ], + "purl": "pkg:npm/cssom@0.4.4", + "type": "library", + "bom-ref": "pkg:npm/cssom@0.4.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cssom", + "version": "0.3.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "6f4b461db7de81b84f269c698813d4dac0a48a002ab4cf4ed76d657ba6db3a583257e3721b20a655f27a416f5e463cfc0a935f5843980483081916242f0b0862" + } + ], + "purl": "pkg:npm/cssom@0.3.8", + "type": "library", + "bom-ref": "pkg:npm/cssom@0.3.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "cssstyle", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0192faeda6e453322ebdc1ea93b734f5c7b3a4635cc54c54e08a22ff4e711e4e0341e4e45a61987ed204e9cb54e8012df869f89f59434ad3ad8fb14ac9c3fbd4" + } + ], + "purl": "pkg:npm/cssstyle@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/cssstyle@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "csstype", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b97d4a1bec7d87984826c68a47dc4751e52b6b17fc20e0cec2af492cd3eae81c01d386bfc60a6adeb731e3b979059bb9cc13e5803df8dad7647b71e89bf9c944" + } + ], + "purl": "pkg:npm/csstype@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/csstype@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "csstype", + "version": "3.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d72a15aa5cf9a551ea109c5fc4853b539780bd4a7af1487fe36548a1de398eea504aafdf6b3f7ffe166acc8f8105a4e5f332d5c701991ddf1d04ea1e8581f97" + } + ], + "purl": "pkg:npm/csstype@3.0.8", + "type": "library", + "bom-ref": "pkg:npm/csstype@3.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-array", + "version": "1.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "2875ba33ce91f8550f6066f74795e26235cfabb573c31676d9bb878401151b9ceda0471964c2e8bf9df49a671c6aa0351a085902b8d0578e9fb9cf2452a8611f" + } + ], + "purl": "pkg:npm/d3-array@1.2.4", + "type": "library", + "bom-ref": "pkg:npm/d3-array@1.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-array", + "version": "2.12.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "07412b64affaea61ed12c4754e43c4124c1dcbe5837ac8a690ce60a59af90ec839e01893039457b585b9a932c801c7a4692f717d9af304b17f380901dd09f561" + } + ], + "purl": "pkg:npm/d3-array@2.12.1", + "type": "library", + "bom-ref": "pkg:npm/d3-array@2.12.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-axis", + "version": "1.0.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "7a320d3df3d235d185284380b6706d764a6bdb87387788ec7a2e8b83df26c5fe36e22be80cfdbde7aff91c3a4802d987a3ce65a93e29aeecbecc482f45406a69" + } + ], + "purl": "pkg:npm/d3-axis@1.0.12", + "type": "library", + "bom-ref": "pkg:npm/d3-axis@1.0.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-brush", + "version": "1.1.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed15bec3b1df3023f264b89f4f3fd49c9988e647645eda426e899b512b3cc67880ca8d2f21bac3cc3c14241e9e24e825f6ee4340eb764d0958ba6c730f54af60" + } + ], + "purl": "pkg:npm/d3-brush@1.1.6", + "type": "library", + "bom-ref": "pkg:npm/d3-brush@1.1.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-chord", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "2570360eba35171c3dac97b7dd4bfe0a4af922b01aef84e57c312113f8df2ce6977a03101504c0800c3d5a764bf3e1f154145769118292b354ee925eca5448b8" + } + ], + "purl": "pkg:npm/d3-chord@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/d3-chord@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-collection", + "version": "1.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "8a2d3faf97f8b2328d4df87ce038be0e9ced630a8a844c9494aa0faf35057de4a45b18d6e3dc54d90ccef6aacfacd929748d172647f3be64eef15d99ca5967e8" + } + ], + "purl": "pkg:npm/d3-collection@1.0.7", + "type": "library", + "bom-ref": "pkg:npm/d3-collection@1.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-color", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce0fdc85b5f2781b4c4352db0ff592a16d83a42dc8d26a663dd5beca74538ffc760c0598ac863ba9e6481e2768cf0576e26e226afaf5e653702302f14663b184" + } + ], + "purl": "pkg:npm/d3-color@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/d3-color@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-contour", + "version": "1.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "8683e9e0afeb242bb495a7621face6254133ebebb796047e1929bf41d336041bc3ada537f55afb61d0c289c25cc4fd73f22f41ff67492e00c2d4d72f945f160a" + } + ], + "purl": "pkg:npm/d3-contour@1.3.2", + "type": "library", + "bom-ref": "pkg:npm/d3-contour@1.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-dispatch", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "7d58e8125ce3842132f876e7f0aca09e6312eceaf46bdb08d94cc6c2807b702b6f2355e954df46a686259dbdf1b76615ebaa1761bd5f2c9f0632f3f885d53544" + } + ], + "purl": "pkg:npm/d3-dispatch@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/d3-dispatch@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-dispatch", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "af35323d4fd2eebc147e53322dcd444c37818f4351b8728a01cbee928cf086c86bea0e9ce5df338787368108d8d9b6747577862d67353c5d7be0fdad56f2a17e" + } + ], + "purl": "pkg:npm/d3-dispatch@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/d3-dispatch@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-drag", + "version": "1.2.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "ac3d6886590a4303196244256150ab485c6c58fcc8f7bf96f8f68420135333146ec73f511741e2e672561c6549dce9bd7767d14ded7238120d272cbf6a157de7" + } + ], + "purl": "pkg:npm/d3-drag@1.2.5", + "type": "library", + "bom-ref": "pkg:npm/d3-drag@1.2.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-drag", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a566d424b7444d503c95034979c331a177c7eb1fa63b6510a3cad2999f90ab171bc80de17dea6b160213fff1d6da79470a159e2083304b616afa010046485392" + } + ], + "purl": "pkg:npm/d3-drag@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/d3-drag@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-dsv", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f72565aaf65c48e321098ce788713b115530b3b15ad73830fbf1005760712681b7304d7d57a050141c08f39e57403b31c8eb86ecd89ba91313b6217f42ea78ea" + } + ], + "purl": "pkg:npm/d3-dsv@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/d3-dsv@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-ease", + "version": "1.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "971d7864f62484dc74b3fd875f9b0b15423799b6ac1e3492a703bf29a68d002c1e570c54aee2b259571bdbddf032fd51a933d9c99f24499d8da2051935c2ce15" + } + ], + "purl": "pkg:npm/d3-ease@1.0.7", + "type": "library", + "bom-ref": "pkg:npm/d3-ease@1.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-ease", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c11fd72b70f75dc2c8670a5bbd0c10e5f2bef1891db358a9ec0d93c5ed32c6771749dab52fdb24706edb95c79d90e5fe65c83118098b5f516b4466c00f0ce2d3" + } + ], + "purl": "pkg:npm/d3-ease@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/d3-ease@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-fetch", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c82efc34155c776cc503247f1e7522052ecb7fa8a7482a16712c457f0f0560bef2762a9ef3449accdc287df72a39fb3de5768ba3bc9e6ec990a83292b1752dbc" + } + ], + "purl": "pkg:npm/d3-fetch@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/d3-fetch@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-force", + "version": "1.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "1c7bde8726a2525568e42c41274c85ff19f2e31a1ac45c439c15cdbcd71f5bd69d3911997f2345d5d8fa0c62caca4e188776eb3ffd61deb9c3cdd200c0bd3cce" + } + ], + "purl": "pkg:npm/d3-force@1.2.1", + "type": "library", + "bom-ref": "pkg:npm/d3-force@1.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-format", + "version": "1.4.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "274a6279dbba67c881e936c819f6600f37d7c5414ddea4113287f2da83dd5f34226d81aa3c1ffd88c731aff4c66a553ed91b320cef94e1fdf789df2d6e749131" + } + ], + "purl": "pkg:npm/d3-format@1.4.5", + "type": "library", + "bom-ref": "pkg:npm/d3-format@1.4.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-format", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "01bdd2e97b84fd0f9f958f7a1d74f48ce5dc3381000a56059d1198e73b23446372eaa098ad0b0c7dfb3b715e50f717a36f7e73c56e617ff82e2b0df892f20ab0" + } + ], + "purl": "pkg:npm/d3-format@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/d3-format@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-geo", + "version": "1.12.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5c6e1dd5cfd4252117f4d7d4d362b004be8160f8fc60a1f1801130e689b66674d149b21c7a0a3a7611f0731b92477725c61d04a44dfca2cd4354f3a69d8b533e" + } + ], + "purl": "pkg:npm/d3-geo@1.12.1", + "type": "library", + "bom-ref": "pkg:npm/d3-geo@1.12.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-hierarchy", + "version": "1.1.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "8fcb4fc65aa1d6cac91c0b717ef394c0a35826442e04574cd7e24051fabac6a1f9780a9ff772fba06d4d56a0dae02a4564dbe734ab42604502f0a63dc849fd95" + } + ], + "purl": "pkg:npm/d3-hierarchy@1.1.9", + "type": "library", + "bom-ref": "pkg:npm/d3-hierarchy@1.1.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-interpolate", + "version": "1.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "57dce72b4cdcde338f578543db3667d2c0e1654dd6004d9b9a5c5d230c103cfccf8efc8b91df01dc9515752d480d414391667bd9cf6a9efd462b665a81367c10" + } + ], + "purl": "pkg:npm/d3-interpolate@1.4.0", + "type": "library", + "bom-ref": "pkg:npm/d3-interpolate@1.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-interpolate", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ddb62cd6b383df7ba8f1aa897ca3f72563c089b830f199b6f8bf6f04a107276460faf89347ba39326bf999972278df854586803965f94890135fa9353d6cfbda" + } + ], + "purl": "pkg:npm/d3-interpolate@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/d3-interpolate@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-interpolate", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "739521c304ecff2c9b7264e9015ab048597abeb43c2592684f917bc4d14af69ca6bf90b462671cf7f2c8247b58220820ff24bd607c3c8bc3bcb606fda6ea6379" + } + ], + "purl": "pkg:npm/d3-interpolate@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/d3-interpolate@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-path", + "version": "1.0.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "54b698727f3576d1d54e310777c07ea5b7bdc875a95ca6540bcecfce8166b05ac9aa01700defeac5fa793257ec7ccd55e44fe256dd0c9846d643b15521787f6e" + } + ], + "purl": "pkg:npm/d3-path@1.0.9", + "type": "library", + "bom-ref": "pkg:npm/d3-path@1.0.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-path", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "670650c4a8419eff721da89677a654e31e41b4243ba57b33115f4253a91183021055018b32fd6888be0cf8c2bf9fbf6c633b23fa0720a4f41272d254b0b37b7c" + } + ], + "purl": "pkg:npm/d3-path@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/d3-path@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-polygon", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "93e445ed6bc8d3c3c2f2b784a176bfc369d28390143138bea5e043f5c98573ed22c477dbb38426c7191aad56a5d48915920c55ba4f494878495111e2c87280b9" + } + ], + "purl": "pkg:npm/d3-polygon@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/d3-polygon@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-quadtree", + "version": "1.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "44a3c07979e40b9f480c60f45aee6600dcb4436576f0bf9f35eeb9a4e09755d56e4c94b758f29a2651477abdf645b87d808a3da8cb895e2a3cadae3e62623298" + } + ], + "purl": "pkg:npm/d3-quadtree@1.0.7", + "type": "library", + "bom-ref": "pkg:npm/d3-quadtree@1.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-random", + "version": "1.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "e802b904da4816a3fe731fecade2b336359bc194024946adc6afa93d1985210696ba80fe36b6d55b0ed85a91e25e9090fcd6a729db460ee07e5507190da12661" + } + ], + "purl": "pkg:npm/d3-random@1.1.2", + "type": "library", + "bom-ref": "pkg:npm/d3-random@1.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-scale-chromatic", + "version": "1.5.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "00270be3a0d8226a5114c05ca64f4786d2320bb6d3051e1f34e3f1c154a5d0b7ee943030ca21f23ce4ea7031b5fade5de0ff56eedff6340b96bb9f5a2a4a3f72" + } + ], + "purl": "pkg:npm/d3-scale-chromatic@1.5.0", + "type": "library", + "bom-ref": "pkg:npm/d3-scale-chromatic@1.5.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-scale", + "version": "2.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "2db784bc68086fc50c7006b41004cb357d257a52961980d088f7478fe80b6e51958462f235b6829f712fac97f403763fb8e394e5a0fa31387964509d1301a20b" + } + ], + "purl": "pkg:npm/d3-scale@2.2.2", + "type": "library", + "bom-ref": "pkg:npm/d3-scale@2.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-scale", + "version": "3.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d491a9e383500ade5dd60f98cbe19e3a764fef11e8d228bccec429e8f1b377e0b5fdd974286b29f40eccc70a7ed43d68e2e9db4d3c55754fd9388101a1e64f6d" + } + ], + "purl": "pkg:npm/d3-scale@3.3.0", + "type": "library", + "bom-ref": "pkg:npm/d3-scale@3.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-selection", + "version": "1.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "489d01a988a1cce8c39e795fc9e1d3d1edf49342b5fb9b11ddde5f36e78235eba16539c6c38338a3c9aa25c852c2028c5c2345a3e7b65530a1892274bd8b5792" + } + ], + "purl": "pkg:npm/d3-selection@1.4.2", + "type": "library", + "bom-ref": "pkg:npm/d3-selection@1.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-selection", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7e64d159b34c9ac996abac4957c0f5f54fe0c3f6f0ac77cd5f1ac837e1df6609f3a931e9f633a628c86c4d48d73899d939d658f50dbccb8c9e6cacea0ca97195" + } + ], + "purl": "pkg:npm/d3-selection@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/d3-selection@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-shape", + "version": "1.3.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "11492f2a3a8f154019c8e9616398330b109e23401ea74e0bc08469b19fe62c57a526251f9cae7a8e8e49303484ef2c8fda42d26fa2ed17e4b9721324eeea8fab" + } + ], + "purl": "pkg:npm/d3-shape@1.3.7", + "type": "library", + "bom-ref": "pkg:npm/d3-shape@1.3.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-shape", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3e78d4a9f3363e9b246d22d326f033a765afe0266c9c08137dc5514f05b4dd04773245c5f14a3b075cbf956900b266cac2e79cb68fbee0d96c61cbd8a57a531c" + } + ], + "purl": "pkg:npm/d3-shape@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/d3-shape@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-time-format", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "82ebfa6f61f7eecd94abf19e7e57820ed6ded17640bb2ed66b8f551a43d53cc7cb2fda8e6e00524f79441c904c529f12ecd74b400188bebd8a5e4f0773df2229" + } + ], + "purl": "pkg:npm/d3-time-format@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/d3-time-format@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-time-format", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "517261e842ac1c14e3a2956a641845cac41ca174afff9c8b38d66f910e4a937a9bc2251891d5f5ed76b53d3e94d595971867c1d5ecb92fc74a32516ad833b402" + } + ], + "purl": "pkg:npm/d3-time-format@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/d3-time-format@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-time", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e1d22b2b679acf61876a840564f152e730489d873e5a3fb86d0000c7e8c7f38269a270f913a3c2e190bc5c8bad7f94207b9fb5261376cdd25791b7eaaf90bc4" + } + ], + "purl": "pkg:npm/d3-time@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/d3-time@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-time", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "fde2107bf791e24090c2aef2c62ef3e1ceaa1177f621819c8e8581e4e390cb84eaf54bf7f7ff78eea94370dd932e4893cd05b3be7b2e60f07d4eb59a35f8a929" + } + ], + "purl": "pkg:npm/d3-time@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/d3-time@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-timer", + "version": "1.0.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "0752439b45c36900bebafa380d3efd1f45e606c9204b797a55efb548109fc609ad21bd4056b3c8a2a77e9cf4affa5a0c5fcb33434b155211a780bec3e503e25f" + } + ], + "purl": "pkg:npm/d3-timer@1.0.10", + "type": "library", + "bom-ref": "pkg:npm/d3-timer@1.0.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-timer", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9dd7c9fc9c7131dde7c37d6ec8aa18da76a2bc5fabdbd57e2dcd2cbd9c5ed49bef2119a2f2152caccbdd3b0812d68eae0479a2cfdd60790d3294f3f46a3d5550" + } + ], + "purl": "pkg:npm/d3-timer@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/d3-timer@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-tip", + "version": "0.9.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "11505f1bd77e1e78c8a325577e1a72b56c65179f496a86f08b3a8c5fd1015edb05989cad8f01de62252cef895d1d08c4ed2f6fcdf293c762c2b6f52b21bb8562" + } + ], + "purl": "pkg:npm/d3-tip@0.9.1", + "type": "library", + "bom-ref": "pkg:npm/d3-tip@0.9.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-transition", + "version": "1.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1cd20454e0f16a678ee53d51e5a0c9fdb653dcbfc8f180e420fb4ce385f657310bafa698c6e98bb074c044d13baa0998de2642de724bbf97d47424f71185a0c" + } + ], + "purl": "pkg:npm/d3-transition@1.3.2", + "type": "library", + "bom-ref": "pkg:npm/d3-transition@1.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-transition", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0292af7e3b1247ab60d3ac6b2f8df80b45b274bafb25ec0107757eff7f51307b1a5d3386d339adfce0177a78393392c19b4a239b126ba68990559d5a3ef04be3" + } + ], + "purl": "pkg:npm/d3-transition@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/d3-transition@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-voronoi", + "version": "1.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "740ac9df685c845b2b43cb8c89304bab6e7a3299d98deb81b5d1e9683958b90ca3534095cc2265fc1556f9292ccda01e1fde43ffc831a80860c74a2e01601f46" + } + ], + "purl": "pkg:npm/d3-voronoi@1.1.4", + "type": "library", + "bom-ref": "pkg:npm/d3-voronoi@1.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-zoom", + "version": "1.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "5682d74cae30bf2d5ad09a47d8897e1760a23a156eed5457585e4cfcbae8308877ff30400b7580b7b42822f3e26ce6af568db484debfdfbbf002c7417a32f229" + } + ], + "purl": "pkg:npm/d3-zoom@1.8.3", + "type": "library", + "bom-ref": "pkg:npm/d3-zoom@1.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3-zoom", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6fc02657791f41aa9602e69c6cfb8d6cbeaf6a19ce25f94e85ec4bccc30d2e06badbefe7874273bc9d1a3bfe5ae4c560505192ec7bb53fd3f4de8ddf2640c2cb" + } + ], + "purl": "pkg:npm/d3-zoom@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/d3-zoom@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3", + "version": "3.5.17", + "hashes": [ + { + "alg": "SHA-512", + "content": "c8593fda275bf0e1cf2a46c02fc41a39aa8434da0c8486921d97ab937a10b040b090e6e40a92728d8c027be3878aae9411d85ed66f1918045144ede58c58e52a" + } + ], + "purl": "pkg:npm/d3@3.5.17", + "type": "library", + "bom-ref": "pkg:npm/d3@3.5.17", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "d3", + "version": "5.16.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e0f2f9847687c17e26ed9af551aa575b6ddaa68ea97b10a075eb5d2799139800e91bfed3f46931c34334b5ffe98e807addecc20a6d2ee54685632d9a32dd0c73" + } + ], + "purl": "pkg:npm/d3@5.16.0", + "type": "library", + "bom-ref": "pkg:npm/d3@5.16.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dagre-d3", + "version": "0.6.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "7bfea35de08feffa6d940338f1c9665f8c5365ce4493a4fa91a812ececf61eb61276a70b6452eaa407e1ee575b65115fc42655ca1eb53443d1d3c510455c49cd" + } + ], + "purl": "pkg:npm/dagre-d3@0.6.4", + "type": "library", + "bom-ref": "pkg:npm/dagre-d3@0.6.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dagre", + "version": "0.8.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "fda4ea9a746d6bbc7b3020a913193b1d02f63b8a30093da1f0d4ffffd235390f6fb76f4f6b4073480911e65c0551c43be3dd72562ff709753d8d0e68d0c9f64b" + } + ], + "purl": "pkg:npm/dagre@0.8.5", + "type": "library", + "bom-ref": "pkg:npm/dagre@0.8.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "damerau-levenshtein", + "version": "1.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1d412141efe9657d47101d440edfe07c111463d0e6b8c3d3ce58c23fa6e1adb9fee0172c069a468b084967b9d7d388a655f8dbc7a8bd227f376b23c468ec448" + } + ], + "purl": "pkg:npm/damerau-levenshtein@1.0.8", + "type": "library", + "bom-ref": "pkg:npm/damerau-levenshtein@1.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "data-urls", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f97964d25cefc1266a5d20a091b8a5204828003743b096254adf23ca6f02165354ddc390516a3c65ccc89dbe1fa0c24a3d01f43dcc88f9da9cc5f75437600bd" + } + ], + "purl": "pkg:npm/data-urls@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/data-urls@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "datatables.net-bs", + "version": "1.11.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "9506b2b6a48e712bf9d631684fb4720db6a8ce2092b520e5e589b5c8e04ff995c83ac4bd7dde333856720d0966185c94a5af09032f380b8afc8ccd46437fe894" + } + ], + "purl": "pkg:npm/datatables.net-bs@1.11.4", + "type": "library", + "bom-ref": "pkg:npm/datatables.net-bs@1.11.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "datatables.net", + "version": "1.11.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "cfd2c6e0ed1560e633a7eae702b2c4c6f9d4595f2293258170761910a0df56ecfb04ac50744ab86bfb693b44eb6e6f852f5f9163b504221f94718358fe1c06c4" + } + ], + "purl": "pkg:npm/datatables.net@1.11.4", + "type": "library", + "bom-ref": "pkg:npm/datatables.net@1.11.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "date-now", + "version": "0.1.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "eaf439fd4d4848ad74e5cc7dbef200672b9e345b" + } + ], + "purl": "pkg:npm/date-now@0.1.4", + "type": "library", + "bom-ref": "pkg:npm/date-now@0.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "debug", + "version": "4.3.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d15851ee494dde0ed4093ef9cd63b25c91eb758f4b793ae3ac1733cfcec7a40f9d9997ca947c520f122b305ea22f1d61951ce817fbb1bfbc234d85e870c5f91" + } + ], + "purl": "pkg:npm/debug@4.3.4", + "type": "library", + "bom-ref": "pkg:npm/debug@4.3.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "debug", + "version": "3.2.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "0858f3618022e1385f890be2ceb1507af4d35c7b670aa59f7bbc75021804b1c4f3e996cb6dfa0b44b3ee81343206d87a7fc644455512c961c50ffed6bb8b755d" + } + ], + "purl": "pkg:npm/debug@3.2.7", + "type": "library", + "bom-ref": "pkg:npm/debug@3.2.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "decamelize-keys", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "d171a87933252807eb3cb61dc1c1445d078df2d9" + } + ], + "purl": "pkg:npm/decamelize-keys@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/decamelize-keys@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "decamelize", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "f6534d15148269b20352e7bee26f501f9a191290" + } + ], + "purl": "pkg:npm/decamelize@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/decamelize@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "decamelize", + "version": "5.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "55fc5a772084097810964a040237a0840af9818dc77fe20a8ca6fe5fcb46543b6f7828cdf944b0a6b776ab7417051f53d7ec760c6d17645e7fc3eec702d49a5c" + } + ], + "purl": "pkg:npm/decamelize@5.0.1", + "type": "library", + "bom-ref": "pkg:npm/decamelize@5.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "decimal.js", + "version": "10.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "574a5f85fafcb2ecf23c63b1de79aae1a1ea69b7a15199fa0a1f64c85a55efd4c60d3585987a94a9775a6d1ed01eac73ad8a25178fad566261506e0e51183975" + } + ], + "purl": "pkg:npm/decimal.js@10.3.1", + "type": "library", + "bom-ref": "pkg:npm/decimal.js@10.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "decko", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "fd43c735e967b8013306884a56fbe665996b6817" + } + ], + "purl": "pkg:npm/decko@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/decko@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "decode-named-character-reference", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "3bcc75d91ceb505f31c95718d0a268c16b26689c506e6cb4fc4b6736d1d1a6c39c4fb7459395b9f7c7281ea055a665a8d684107ec0aa7c29a464de4326b65576" + } + ], + "purl": "pkg:npm/decode-named-character-reference@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/decode-named-character-reference@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "decode-uri-component", + "version": "0.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "16a51843ef28d79f06c864eb305266b3daa1dc2a932af02a82ab139e42c8f2c2aed34dbca2ba8187134c16415e9f4cc6ca0e9ea40083df6a63564e7c9e0204ad" + } + ], + "purl": "pkg:npm/decode-uri-component@0.2.2", + "type": "library", + "bom-ref": "pkg:npm/decode-uri-component@0.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dedent", + "version": "0.7.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "2495ddbaf6eb874abb0e1be9df22d2e5a544326c" + } + ], + "purl": "pkg:npm/dedent@0.7.0", + "type": "library", + "bom-ref": "pkg:npm/dedent@0.7.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "deep-is", + "version": "0.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "a083f392c993838fccae289a6063bea245c34fbced9ffc37129b6fffe81221d31d2ac268d2ee027d834524fcbee1228cb82a86c36c319c0f9444c837b7c6bf6d" + } + ], + "purl": "pkg:npm/deep-is@0.1.4", + "type": "library", + "bom-ref": "pkg:npm/deep-is@0.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "deepmerge", + "version": "4.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "149dd4808e20225f8f1d99b9de49ecb9216913e9c448cafb338bfd41c801ed2eb72a3ffa5aa322150269041633d4fb7eeba6d9a4fdd0ecbc9ed0ea3d30f28476" + } + ], + "purl": "pkg:npm/deepmerge@4.2.2", + "type": "library", + "bom-ref": "pkg:npm/deepmerge@4.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "define-properties", + "version": "1.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "dcca9f60a8f694bcdd3127fc648644fd5f99bb2f81803e9fd7ae1ef0adb0edd827a4a02b0437ab198a4ce3a21861c8e791d3cd3233e4f40e95141f3edd22a55d" + } + ], + "purl": "pkg:npm/define-properties@1.1.3", + "type": "library", + "bom-ref": "pkg:npm/define-properties@1.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "define-properties", + "version": "1.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "b9c90ea8a71f695bed05db1591d3efdd78ef79026c350aa68578118bcba1bd65ae3d8642365cd3f2a0326e55203685dd1dd8cc4f302a7868c0a258bc7fe6f33c" + } + ], + "purl": "pkg:npm/define-properties@1.1.4", + "type": "library", + "bom-ref": "pkg:npm/define-properties@1.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "del", + "version": "4.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "4301ae114a2e3f6915c107a702c3a87f916ff0af6ddc3f026bc3717172ab2291078d35cae49da75cb74ff802c8d5c82ff308fb2aec01853c0190e65224a3395d" + } + ], + "purl": "pkg:npm/del@4.1.1", + "type": "library", + "bom-ref": "pkg:npm/del@4.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "delayed-stream", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "df3ae199acadfb7d440aaae0b29e2272b24ec619" + } + ], + "purl": "pkg:npm/delayed-stream@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/delayed-stream@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dequal", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "d237bea8f28710ca21bdf453084a370ab3c6e9c033018826ccacb1462612483912e9e1897725499bb59a600e4409a003f702c1d93e0411eca603968555c61708" + } + ], + "purl": "pkg:npm/dequal@2.0.3", + "type": "library", + "bom-ref": "pkg:npm/dequal@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "detect-newline", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4cbcfec7fbc45e6fd8ecfef09f510914d2f1629503e1380ca2cc58e9f0152549c931bba91c13a7731c96506f4ea53687f44043eee148e4b7c482630e739e03b0" + } + ], + "purl": "pkg:npm/detect-newline@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/detect-newline@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "detect-node-es", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ca9766254fd36c16f2d83c626eebfb64b5b706cd5012633b9c78c400d7e88492ef1345d5ba38ac9f5a8f25c67183ea83b9cb2bf9b3fa7cb0f5acf4b702127b11" + } + ], + "purl": "pkg:npm/detect-node-es@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/detect-node-es@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "detect-node", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4f4348b90a674ef14301336e1cde6ba0fc12046f37ac5b2e3be3175c7f7fdcdd5e15b9f8c1c3e3b6dbe330b10f589d11194620404edc1a04b7b4dc5ba8218cee" + } + ], + "purl": "pkg:npm/detect-node@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/detect-node@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "diff-sequences", + "version": "27.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a0eb07e9045c8d5d9d29f2972e2034bffc3f07d3ad99409ddfcd8c63a6678a8e7cfc5b8a5e90bdc023c568866c999ac596d8f59a1e08ec9aa47a2f5df5d3555" + } + ], + "purl": "pkg:npm/diff-sequences@27.0.6", + "type": "library", + "bom-ref": "pkg:npm/diff-sequences@27.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "diff-sequences", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "93580201702c3602f010bf98f16be5f8cea81058f96e06b37d950ba52e429dea0f3d745a0825bb766faadb52b2d95104e57f957910c1560d4f72fbecaf84ed35" + } + ], + "purl": "pkg:npm/diff-sequences@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/diff-sequences@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "diff", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0fe9a4faa13c542fcf014ae5014df837e55f5debf48217b9cb09a9aab6b0a6199565cd5b11f9f9eaea3daa9c86a75a78c69cce1e4496e33b4177a2fb5f1e000b" + } + ], + "purl": "pkg:npm/diff@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/diff@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dir-glob", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5a4ad6a7d191e0a5df28663338b993b86562d545857f0b37efb9fd71ce79fed6fa0eeab217aa5c43901b88712c85a0e963dbfaa1a4abd9708389d1a633077320" + } + ], + "purl": "pkg:npm/dir-glob@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/dir-glob@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "doctrine", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "df999292ee195cad2f7c2b87103030b79e5d8368cd6a31d9d6876f17ef124abf3612c658e109977ee5aca3ca0477ccd185539b48dd7c68cd028d2768057ef323" + } + ], + "purl": "pkg:npm/doctrine@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/doctrine@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "doctrine", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c92f90e62de105fec6064778286f1aede04d3563462d3684c306165228c860cef3ae56033340455c78e33d6956675460ed469d7597880e68bd8c5dc79aa890db" + } + ], + "purl": "pkg:npm/doctrine@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/doctrine@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dom-accessibility-api", + "version": "0.5.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "5eef660f4523ac98ac4e6bfb9665520cc6a041c53d47987001bc6c68013fdf95cf9cf2c9a1b6ee4447d5febada8926848ff50ebe0af342cebacf24d64e5c9dfa" + } + ], + "purl": "pkg:npm/dom-accessibility-api@0.5.10", + "type": "library", + "bom-ref": "pkg:npm/dom-accessibility-api@0.5.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dom-helpers", + "version": "5.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9d109aec22b7553accd8d986908cb871b2bb219960044fcf60c9f9e6bad779faf9c570cfd0b76d7cf9db9450e855d7007ec949ee8afa8aa0149f1d0208621640" + } + ], + "purl": "pkg:npm/dom-helpers@5.2.1", + "type": "library", + "bom-ref": "pkg:npm/dom-helpers@5.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dom-serializer", + "version": "0.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "dbfc4f6f7391b10e369c76224ae9d79038cf2c16848ffc53c143b807b5c26504d193b101b5338f6b2821d74600021d8e23542ba7a3567e9021cecc23d3276df6" + } + ], + "purl": "pkg:npm/dom-serializer@0.2.2", + "type": "library", + "bom-ref": "pkg:npm/dom-serializer@0.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dom-serializer", + "version": "1.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "e5ce78064e43c38a80c4d388d691448b33d28d5b31e7e6e924a98bda43e7f0984152adaad3db5309ade68e28ee9f635f2bbf0d328b8360d30190eacf6624be8a" + } + ], + "purl": "pkg:npm/dom-serializer@1.3.2", + "type": "library", + "bom-ref": "pkg:npm/dom-serializer@1.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "domelementtype", + "version": "1.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "052281f934a9329148fc73b108daf53bc68c39367c853de9337190d30fe65919a48440d2149924cb3cf85d0b01578e010a1c0692b0df3328d50f4780d9a155df" + } + ], + "purl": "pkg:npm/domelementtype@1.3.1", + "type": "library", + "bom-ref": "pkg:npm/domelementtype@1.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "domelementtype", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0ed04ca3cda9bf5745b54987cabe3c6de8aeabbf764b1a21afef079bdce8c649583df6ba9f46770728e3d8857b6e6af6232a82967a844217e01c9279405d11e4" + } + ], + "purl": "pkg:npm/domelementtype@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/domelementtype@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "domexception", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "cb1276985cbfb226d5425bb9a878ce91ff49dcaeb38260b1809f78bb611dbc3395d3d1fedf62ed46cc04714b2651637bda954b3849d3491688555cd54204b476" + } + ], + "purl": "pkg:npm/domexception@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/domexception@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "domhandler", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "2de59a0822d5027fabff6f032c2b25a2a8abe738" + } + ], + "purl": "pkg:npm/domhandler@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/domhandler@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "domhandler", + "version": "4.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce4eec82df7bd24ccf92cd817fe7704ff3cbce084b9ec8af6fd09cc64bd1f0ccebeba3a5af439f77c9de49b8251c91da1dad8c69d7e849d36529801a69f9967c" + } + ], + "purl": "pkg:npm/domhandler@4.2.0", + "type": "library", + "bom-ref": "pkg:npm/domhandler@4.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "domhandler", + "version": "4.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "1abc28c5837eb969733bcba1517465d0ffa41c4e06b553df63354b714c4f2fb28d7472a3ebabef9618b07881ea6185d6970f93f222cca78d8b9baee0870e1631" + } + ], + "purl": "pkg:npm/domhandler@4.3.1", + "type": "library", + "bom-ref": "pkg:npm/domhandler@4.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "dompurify", + "version": "2.2.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "fbd32a69cba280c219fb5f84c28125b68832586153259594df6e7c46ea71b3ed821ace07f75e06f5eafaa596ec99efdbbdbe4bebba36ada75ef67db57b8456ff" + } + ], + "purl": "pkg:npm/dompurify@2.2.9", + "type": "library", + "bom-ref": "pkg:npm/dompurify@2.2.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "domutils", + "version": "1.5.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "dcd8488a26f563d61079e48c9f7b7e32373682cf" + } + ], + "purl": "pkg:npm/domutils@1.5.1", + "type": "library", + "bom-ref": "pkg:npm/domutils@1.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "domutils", + "version": "2.7.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f1e6876b5ec8c0950f02207e4a84d8068e6609d78c81d700a17279f66e834f5bf0fb988b4b780da2a61a468c1a04ab4656b385d49cf8c834e060a2cada4bdf26" + } + ], + "purl": "pkg:npm/domutils@2.7.0", + "type": "library", + "bom-ref": "pkg:npm/domutils@2.7.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "domutils", + "version": "2.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c3de828e87e9ef63392088698e0a1b06299811fa0f8f1d55c740525fd3f7d1605d656d9620a5344f505dd24cf678d67d8a48ca8076c4c8ac7c041e87d4bde1dc" + } + ], + "purl": "pkg:npm/domutils@2.8.0", + "type": "library", + "bom-ref": "pkg:npm/domutils@2.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "echarts", + "version": "5.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "d96defc37a08dad589772033f9bf03b964b49df5ed483aa50e6aa08a7fe57f36e4074d5cb8c10deba2960659aeaf760ca799c40c412de6cdb7a6596703307810" + } + ], + "purl": "pkg:npm/echarts@5.4.2", + "type": "library", + "bom-ref": "pkg:npm/echarts@5.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "electron-to-chromium", + "version": "1.4.156", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd68f9342ec4d301da30276ac56cfd07496fec27327034e21f25c2b5b6eede95ccf5357600ea7c06d32a915baabc935d12f96d046e8bc53d90f81c58e0b50220" + } + ], + "purl": "pkg:npm/electron-to-chromium@1.4.156", + "type": "library", + "bom-ref": "pkg:npm/electron-to-chromium@1.4.156", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "elkjs", + "version": "0.7.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "943f3a456761e3cd3f52e4681e145c9efd8832421c2bac8c0c4b93f133c121b3b775be077e7545fb596061d422f7d0a4d326fe960e446f8e89087239b8eb2603" + } + ], + "purl": "pkg:npm/elkjs@0.7.1", + "type": "library", + "bom-ref": "pkg:npm/elkjs@0.7.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "emittery", + "version": "0.8.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b837ef52356b7c62498729b1fe4cfaa6b96d7a7c35bbb5ab0a0d686bde33618f31c55a4b2d4bb4e392c04f47610d97571b9f3f1293cbff9900d7cd1f43faae76" + } + ], + "purl": "pkg:npm/emittery@0.8.1", + "type": "library", + "bom-ref": "pkg:npm/emittery@0.8.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "emoji-regex", + "version": "8.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3128d8cdc58d380d1ec001e9cf4331a5816fc20eb28f2d4d1b7c6d7a8ab3eb8e150a8fd13e09ebd7f186b7e89cde2253cd0f04bb74dd335e126b09d5526184e8" + } + ], + "purl": "pkg:npm/emoji-regex@8.0.0", + "type": "library", + "bom-ref": "pkg:npm/emoji-regex@8.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "emoji-regex", + "version": "9.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f5f03689b17494936fb8da9bfc98bb398c94f686a164144e23db5c0e9a06d4aac67684bef636c514efce60f515e0a37b3464d815978d93887a7766d3affd5ca" + } + ], + "purl": "pkg:npm/emoji-regex@9.2.2", + "type": "library", + "bom-ref": "pkg:npm/emoji-regex@9.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "emojis-list", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe4c8cd7c11f8a7c1765b9e8f45c9419e161f3b282f074500501a295d1d96c4b91c9614e9afd54d74a3d041a7c5d564354d36e40ac88188bb96580005c9d15d9" + } + ], + "purl": "pkg:npm/emojis-list@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/emojis-list@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "enhanced-resolve", + "version": "5.12.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4074d723fb19426928d5c6c3a0d01ade6279aa159450d02adef474fd8883dfbf5f590adc7eea17d7e1d6d92d0c4eded79a83cb6a975a0ca52d7a55123e273b85" + } + ], + "purl": "pkg:npm/enhanced-resolve@5.12.0", + "type": "library", + "bom-ref": "pkg:npm/enhanced-resolve@5.12.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "entities", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "b2987aa3821347fcde642b24fdfc9e4fb712bf26" + } + ], + "purl": "pkg:npm/entities@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/entities@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "entities", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a7dda27f9373eb5f48d30f9a909acb647d0c5f43dbe435f7f573b0413b5749d41039a607d374b5b88429e2684e66d017af1ab85623baed84e22c1a36eb7f28f4" + } + ], + "purl": "pkg:npm/entities@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/entities@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "envinfo", + "version": "7.8.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe8f815c7981ee871b1c402ce85d849c6d288326d555476446e9d34f6825654f5701a1a686ab24aef2b0a97b837cd8c43b42d929675e8c41299eaf1a334b4e6b" + } + ], + "purl": "pkg:npm/envinfo@7.8.1", + "type": "library", + "bom-ref": "pkg:npm/envinfo@7.8.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eonasdan-bootstrap-datetimepicker", + "version": "4.17.49", + "hashes": [ + { + "alg": "SHA-512", + "content": "eca65e0e9923f80e80b4f4775e35fc8009d13d490f49f5b43a6300346d5d91438f32d2d2cdbca80a30c874471f46d40f5395f40fd1a86fbc162a7d21e105b2ec" + } + ], + "purl": "pkg:npm/eonasdan-bootstrap-datetimepicker@4.17.49", + "type": "library", + "bom-ref": "pkg:npm/eonasdan-bootstrap-datetimepicker@4.17.49", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "error-ex", + "version": "1.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "edd147366a9e15212dd9906c0ab8a8aca9e7dd9da98fe7ddf64988e90a16c38fff0cbfa270405f73453ba890a2b2aad3b0a4e3c387cd172da95bd3aa4ad0fce2" + } + ], + "purl": "pkg:npm/error-ex@1.3.2", + "type": "library", + "bom-ref": "pkg:npm/error-ex@1.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "es-abstract", + "version": "1.18.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "9d022bd7677157b492c44eabe9fd65dc3b4078461db06a69b35ddd4744f0260d52f20ca9e193e0cb71597070606e242a9e8a924dbfa80be90ee144340bf27cbf" + } + ], + "purl": "pkg:npm/es-abstract@1.18.3", + "type": "library", + "bom-ref": "pkg:npm/es-abstract@1.18.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "es-abstract", + "version": "1.20.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5849b6a0185fa08dac22678ce0e176cc4d95dc161d485f8a9d28bd4a2773e757d01ddefe26e17c5e0723f7fd28f8e59e21e212fcc8ae36796bb90ac97f5e8640" + } + ], + "purl": "pkg:npm/es-abstract@1.20.1", + "type": "library", + "bom-ref": "pkg:npm/es-abstract@1.20.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "es-abstract", + "version": "1.21.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbf0793ce3368819c8c4289eae71f51bbac2f6a42833bee52c83102eea1bd33869f02e7a3e8f35fb6363d1614a9ddd293517834e7918af273ece13b3a442113a" + } + ], + "purl": "pkg:npm/es-abstract@1.21.2", + "type": "library", + "bom-ref": "pkg:npm/es-abstract@1.21.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "es-module-lexer", + "version": "0.9.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "d47436336b0fb71c27bcebd3d590a51f24038a081d3635115a9636c1ee9a30a0908945714e656cd9460f2c8ac3f38b12fa431d5307c14b295b24fc0d9c1ae71d" + } + ], + "purl": "pkg:npm/es-module-lexer@0.9.3", + "type": "library", + "bom-ref": "pkg:npm/es-module-lexer@0.9.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "es-set-tostringtag", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "83738c6ed97063741ec25a8088c2c8e3b2b2c23599a04cad2abf297fa8930bcb89ab96c8007e7667da6743ca552fac21ac2b68e772590ee508b227c678ba2b4e" + } + ], + "purl": "pkg:npm/es-set-tostringtag@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/es-set-tostringtag@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "es-shim-unscopables", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "266e863dc09d0b7d1e30b6d9db1f33d96b91c00c2cdf34c104abaeb1f7d8554acd8ff195494019fb128c694a5f34347921bc8d0392c96da79ca1455b994701d7" + } + ], + "purl": "pkg:npm/es-shim-unscopables@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/es-shim-unscopables@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "es-to-primitive", + "version": "1.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "4023a5960649b5a528f6689805c2c285351a1cd8c91773d8b35562743ec0c22123d6463129e41372d2c07b300e1f964a447d20d8880f9fa2b0078213f22469bc" + } + ], + "purl": "pkg:npm/es-to-primitive@1.2.1", + "type": "library", + "bom-ref": "pkg:npm/es-to-primitive@1.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "es6-promise", + "version": "3.3.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "a08cdde84ccdbf34d027a1451bc91d4bcd28a613" + } + ], + "purl": "pkg:npm/es6-promise@3.3.1", + "type": "library", + "bom-ref": "pkg:npm/es6-promise@3.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "escalade", + "version": "3.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9347abda05242dff0ed332898808669139c9953bc8346bfbca00cd3db788b17fd3263189647ba1f41d94c5bb1a1249a5128f4c7e1ad2ce68489614652361979f" + } + ], + "purl": "pkg:npm/escalade@3.1.1", + "type": "library", + "bom-ref": "pkg:npm/escalade@3.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "escape-string-regexp", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-1", + "content": "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + } + ], + "purl": "pkg:npm/escape-string-regexp@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/escape-string-regexp@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "escape-string-regexp", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "529cdc2c25e895459c36ee47b5530761d5c98c0ae3b05f42d1a367aae658638b96fd5bb49a2cb96285af6d5df8e476ae56f700527a51ba130c72a4dc18e636fb" + } + ], + "purl": "pkg:npm/escape-string-regexp@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/escape-string-regexp@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "escape-string-regexp", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4eda5c349dd7033c771aaf2c591cc96956a346cd2e57103660091d6f58e6d9890fcf81ba7a05050320379f9bed10865e7cf93959ae145db2ae4b97ca90959d80" + } + ], + "purl": "pkg:npm/escape-string-regexp@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/escape-string-regexp@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "escape-string-regexp", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fef798ef925b30ae23d728efb94c6e56c892fe1affe221ecf454d3e9c8137b1c5d1342f2fe095c7010249681ff0e87e48d16d95376e7a23dfc98e9a1919d251f" + } + ], + "purl": "pkg:npm/escape-string-regexp@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/escape-string-regexp@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "escodegen", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9a61cacacfc2f01154188f8c01635c498a0e4582cc74fce3ae49ddd9573e6d4b233796d772bf0486b341f944ea7cbd72dc8f5ce1fc368a182d30f40b051890c7" + } + ], + "purl": "pkg:npm/escodegen@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/escodegen@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-config-airbnb-base", + "version": "15.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5a5f7cf865921c14bbe1da850dbdc5f9a04a1f5dd6bb822626ba9955c683a0e40ec45c932b532a91811fa684384f2bc2d9e0fb6d14e06f0980db5f7b14a148a" + } + ], + "purl": "pkg:npm/eslint-config-airbnb-base@15.0.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-config-airbnb-base@15.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-config-airbnb-typescript", + "version": "17.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7a5362bb30f490f00f4d78c55a0fa5136e2731d1ccb6ec606280f7d0ec8c0facab5b50211593c0836ed55fb777b73384af0f9d8094cd59f4520ea11c5dbe15d2" + } + ], + "purl": "pkg:npm/eslint-config-airbnb-typescript@17.0.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-config-airbnb-typescript@17.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-config-airbnb", + "version": "19.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "4fbe506105505f9ee388d82917daf529e80c20213de15630a0543230686bbdcfa507c605d84fccfcf6036907b500971668482a2c4f84ad75753a0ffee95cb37b" + } + ], + "purl": "pkg:npm/eslint-config-airbnb@19.0.4", + "type": "library", + "bom-ref": "pkg:npm/eslint-config-airbnb@19.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-config-prettier", + "version": "8.6.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c017478ba4b56a3f9a0455414aa4c03e367445202c27f57f01e63ad1f4572a9d806e3dba961234c4b293d6323e727ba733a122c3c1e0b34a8dcaa3b806ad968" + } + ], + "purl": "pkg:npm/eslint-config-prettier@8.6.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-config-prettier@8.6.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-import-resolver-node", + "version": "0.3.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "828cd6d9b94c2c909e169070ba02d31b2bd58cda1ea35927a275c071ab42e9b8cf0598ada2dc5d59fec68a6af6e4de1cd0000ea3878e51f686f362093c3a6a08" + } + ], + "purl": "pkg:npm/eslint-import-resolver-node@0.3.7", + "type": "library", + "bom-ref": "pkg:npm/eslint-import-resolver-node@0.3.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-module-utils", + "version": "2.7.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "8f8193fabab30a844a1f05115fba5d76d20f1b24a75fd4a2fdc80c239cedadca8e3ed93974311e677e024153e9867aa4272b6573ded5ba4d39526da627780440" + } + ], + "purl": "pkg:npm/eslint-module-utils@2.7.4", + "type": "library", + "bom-ref": "pkg:npm/eslint-module-utils@2.7.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-plugin-es", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "194980b0968de0573b19bb65f2e38195aca8d83aa1c16bc4cf290c1d20991d4dd7749f8d4b3cd97158578775715f989ca90fa841d2046b05d7f31911de620599" + } + ], + "purl": "pkg:npm/eslint-plugin-es@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-es@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-plugin-html", + "version": "6.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "6e1048472645a88e04a05d769460c702681f7dff1e2d7c7a479dbf2b7112421b31cc2cc813a85d79b4bb3f2eb9d5fed4dd1068b6aae85270b72f6f5b47ba8959" + } + ], + "purl": "pkg:npm/eslint-plugin-html@6.1.2", + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-html@6.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-plugin-import", + "version": "2.27.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "2e612ddc65687e0886ba213e391a67bcffa4026de1e8c2d92784391c2c87003a1fb1be15cd716c4625a3ddcd0e16257edc3585874aa0deff6070f95f737cd1a3" + } + ], + "purl": "pkg:npm/eslint-plugin-import@2.27.5", + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-import@2.27.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-plugin-jsx-a11y", + "version": "6.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b15085297f5f9655119d74f62702cde50828db8520e4d17a7718649b1b0c1146615d170683e5f77b525b27ce1878f40a065e44d198c01f9438ae475c198f7dfa" + } + ], + "purl": "pkg:npm/eslint-plugin-jsx-a11y@6.5.1", + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-jsx-a11y@6.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-plugin-node", + "version": "11.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a14c2d3c9d56d12283d13afec2abbdd9ce71b82790a81de14821dab27fd982315d03d88318d90d7f6662f73b58ed7fa136e3226f6dcb346466ebeb8df8a2c4de" + } + ], + "purl": "pkg:npm/eslint-plugin-node@11.1.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-node@11.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-plugin-promise", + "version": "4.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d8dac1aaca9b731410cb87f18c6c0c5f7490be6f47f6dcc13adc5384e3e25aa34a19dc4d4b13016d5895ffd6918c24b893b6b4927ab9f609133f83e75f73479" + } + ], + "purl": "pkg:npm/eslint-plugin-promise@4.3.1", + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-promise@4.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-plugin-react-hooks", + "version": "4.6.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a0573b22dcfd431876c7880d1d2b6fdc1a89ab9e04c5799f0be6b536302d6bae8800df3b5aed11fd002b8084bda8acd7ddd5ca3c8f47e5cae5f5072134c63dfa" + } + ], + "purl": "pkg:npm/eslint-plugin-react-hooks@4.6.0", + "type": "framework", + "bom-ref": "pkg:npm/eslint-plugin-react-hooks@4.6.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-plugin-react", + "version": "7.30.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "460c07ee18d6e3c06578ab18c872b9bd402fc6d13d48c3c32a670f45082d44261a640d1740fb7915292b5379e1cf989fccc65c03ca29c26449d9c98e3bcb6be4" + } + ], + "purl": "pkg:npm/eslint-plugin-react@7.30.0", + "type": "framework", + "bom-ref": "pkg:npm/eslint-plugin-react@7.30.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-plugin-standard", + "version": "4.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "64befe4118b18d347aff9dbc60d1b20e8b727df9b9390b2dfec1b1283c066fd52ab38227e44822e3e8dba1b86a268ca808cebfeefff50397e143b49c32d0e369" + } + ], + "purl": "pkg:npm/eslint-plugin-standard@4.1.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-plugin-standard@4.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-scope", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "d8dc706c5fe16742a97a960dd1c35ba3e14de97a0aec6687950860c7f848665e956b46c5e3945038ec212c8cbc9500dbb8289a7522c20671f608562aba2b796f" + } + ], + "purl": "pkg:npm/eslint-scope@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/eslint-scope@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-scope", + "version": "7.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "40a40cfd45e92221dc2ea27900ec885bb5d99b38e4cd05d8139e27d7efb06f4bbd57f69b5b797db909f15fc6795ddd7cc72288313500c90d24d5ef29cfa2d4af" + } + ], + "purl": "pkg:npm/eslint-scope@7.1.1", + "type": "library", + "bom-ref": "pkg:npm/eslint-scope@7.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-utils", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c3de1d418a1abb2be50dce375e7181f2553766def5def342860b78116c215c03f65e406f9dd7f117402022a28e39ab233c83f38fd26a8309306c2603d3f57766" + } + ], + "purl": "pkg:npm/eslint-utils@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-utils@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-utils", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "bae402e3720672dc3af29240d5181b412f3f34feeb721e82c1de23dd906d828e3ff05963e1e184ed96126513778aae69554bfa18f756e59d511657a8f38b8b0c" + } + ], + "purl": "pkg:npm/eslint-utils@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-utils@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-visitor-keys", + "version": "1.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e89ef637c50d6b8eb6c1afca14e0edfcf277214eb4483a42dd05c2d478dcd415d7a5f2f60bd479f8053b8e17b417a19112a54c87826ebbe358ef19fee9d8a951" + } + ], + "purl": "pkg:npm/eslint-visitor-keys@1.3.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-visitor-keys@1.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-visitor-keys", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d2b4a6441cd7803cc8b03ea619d2607afce07b3239df809eaf92ffbf2317d241f34ff8e2078de346177d61494c1982d0cb6ce9acd9a84fca9ab021ad63e41a2b" + } + ], + "purl": "pkg:npm/eslint-visitor-keys@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-visitor-keys@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint-visitor-keys", + "version": "3.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "990facbaa2895727aec0660701d8cc16a8c2c9f97cf8b767c6eca9de576230114a92fcadad751959a88f0846aff2a0c72adcb8e1b0fea95d483f84fec3ec5744" + } + ], + "purl": "pkg:npm/eslint-visitor-keys@3.3.0", + "type": "library", + "bom-ref": "pkg:npm/eslint-visitor-keys@3.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eslint", + "version": "8.17.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "82ad26d014c97dc8bad05cf89dccd8c4d025103fac31c8a196d9dd47cb7db757af9d4fdacf1e77c77b765075c2fee46371bbd1c3f5dcb6968dca04937100fe23" + } + ], + "purl": "pkg:npm/eslint@8.17.0", + "type": "library", + "bom-ref": "pkg:npm/eslint@8.17.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "espree", + "version": "9.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f6d75b42ed9c28b9322e639c7d5e74b413db16342841ec860a5ff5e9e5e423de715786a9a250307dab6ef2efaa0597c8d3837a57710c7f6e9c4c7ecdc22196c" + } + ], + "purl": "pkg:npm/espree@9.3.2", + "type": "library", + "bom-ref": "pkg:npm/espree@9.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "esprima", + "version": "4.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "786b85170ed4a5d6be838a7e407be75b44724d7fd255e2410ccfe00ad30044ed1c2ee4f61dc10a9d33ef86357a6867aaac207fb1b368a742acce6d23b1a594e0" + } + ], + "purl": "pkg:npm/esprima@4.0.1", + "type": "library", + "bom-ref": "pkg:npm/esprima@4.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "esquery", + "version": "1.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7020e2b295ade6f1c7b70318d98ac043889b16400bf116c7e581819d905cf7432896fbdf92441c26ba3f699880414950dea82b612e83eaff067391b9090b1cf7" + } + ], + "purl": "pkg:npm/esquery@1.4.0", + "type": "library", + "bom-ref": "pkg:npm/esquery@1.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "esrecurse", + "version": "4.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a67ca2f76fa1be457bcff0dd6faf74ead642ffa021609f63585c4b6a3fcfcbde929aa540381bc70555aa05dd2537db7083e17ca947f7df8a81e692d8bafd36a" + } + ], + "purl": "pkg:npm/esrecurse@4.3.0", + "type": "library", + "bom-ref": "pkg:npm/esrecurse@4.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "estraverse", + "version": "4.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "dfd9e729f7d6cfcc4dd4153fd9cefd9fd9c1f470f3a349e2614ab1eb1caa527ca8027432c96a4e4dd6447a209c87c041bb9d79b78c29f599a055f5619fd101a7" + } + ], + "purl": "pkg:npm/estraverse@4.3.0", + "type": "library", + "bom-ref": "pkg:npm/estraverse@4.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "estraverse", + "version": "5.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "30c74046e54443388d4de243f0380caa6870475d41450fdc04ffa92ed61d4939dfdcc20ef1f15e8883446d7dfa65d3657d4ffb03d7f7814c38f41de842cbf004" + } + ], + "purl": "pkg:npm/estraverse@5.3.0", + "type": "library", + "bom-ref": "pkg:npm/estraverse@5.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "estraverse", + "version": "5.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0716cd186366d11c9162f51d1e9230bfd216cde33d5c295b3b1c28013b8574e13b644eb01cbf874394fc8683ccfb31ef98acf3b04aa1832d06ad0e57d7769f89" + } + ], + "purl": "pkg:npm/estraverse@5.2.0", + "type": "library", + "bom-ref": "pkg:npm/estraverse@5.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "esutils", + "version": "2.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "915b1ca97938382a7af126747648042958baffc8a3df4d0a0564c9ab7d8ffdd61e5934b02b8d56c93c5a94dd5e46603967d514fcb5fd0fb1564a657d480631ea" + } + ], + "purl": "pkg:npm/esutils@2.0.3", + "type": "library", + "bom-ref": "pkg:npm/esutils@2.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "eventemitter3", + "version": "4.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "f20b870590b02a716161d1ebdb2b2e45612b4f08683765fc5c42d196b470a667de6368e3b94378b5a40cb142ca515a352b80ef665fb4a607f2a32b07c6f9af13" + } + ], + "purl": "pkg:npm/eventemitter3@4.0.7", + "type": "library", + "bom-ref": "pkg:npm/eventemitter3@4.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "events", + "version": "3.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "990c3ed9f9106c02f343b574318d08a9d9d734e793b4fe2bd2537dcfb0006b009782a79aedb0e28b6d0062b201ac577f1f1d0cd8e733e92d75d4268591471bd1" + } + ], + "purl": "pkg:npm/events@3.3.0", + "type": "library", + "bom-ref": "pkg:npm/events@3.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "execa", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f2e4a9659a1c01944100f20420d263dcba3d1f21a2b6595ccdcdbb121e586288e3305327f321cc0cc6941c4d89a9fab4e43ff0b9cc08e091944725edd6f721ca" + } + ], + "purl": "pkg:npm/execa@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/execa@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "exit", + "version": "0.1.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "0632638f8d877cc82107d30a0fff1a17cba1cd0c" + } + ], + "purl": "pkg:npm/exit@0.1.2", + "type": "library", + "bom-ref": "pkg:npm/exit@0.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "expect", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "135ab9852506d80998430409d38d67be0a643831d0bc1f912a507821876bbbab89b321534726403f8eb733ed6520da2bc1ba809948208baf96c240fc9424bf0f" + } + ], + "purl": "pkg:npm/expect@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/expect@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "extend", + "version": "3.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "7e3aae0b9f5c0fb0b25babab3572b4141b9f9197288861bcd304ee3ee8d7e7dd1c0794ed967db4136501e12fd601156a8577df665d8b3604be81074f2088a6fe" + } + ], + "purl": "pkg:npm/extend@3.0.2", + "type": "library", + "bom-ref": "pkg:npm/extend@3.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fast-deep-equal", + "version": "3.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f7a90f68432f63d808417bf1fd542f75c0b98a042094fe00ce9ca340606e61b303bb04b2a3d3d1dce4760dcfd70623efb19690c22200da8ad56cd3701347ce1" + } + ], + "purl": "pkg:npm/fast-deep-equal@3.1.3", + "type": "library", + "bom-ref": "pkg:npm/fast-deep-equal@3.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fast-glob", + "version": "3.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0a10eebdb3b2a4fb8d8cef322037f7eb1ec19595f5b267143134dcca8223c9c7b13b177a0c5b0ab20db5a95073126af71bb7d4288472dbfa6c8a2f82214b7b14" + } + ], + "purl": "pkg:npm/fast-glob@3.3.0", + "type": "library", + "bom-ref": "pkg:npm/fast-glob@3.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fast-json-stable-stringify", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "96177fc05f8b93df076684c2b6556b687b5f8795d88a32236a55dc93bb1a52db9a9d20f22ccc671e149710326a1f10fb9ac47c0f4b829aa964c23095f31bf01f" + } + ], + "purl": "pkg:npm/fast-json-stable-stringify@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/fast-json-stable-stringify@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fast-levenshtein", + "version": "2.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "0c25eee887e1a9c92ced364a6371f1a77cbaaa9858e522599ab58c0eb29c11148e5d641d32153d220fcf62bcf2c3fba5f63388ca1d0de0cd2d6c2e61a1d83c77" + } + ], + "purl": "pkg:npm/fast-levenshtein@2.0.6", + "type": "library", + "bom-ref": "pkg:npm/fast-levenshtein@2.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fast-safe-stringify", + "version": "2.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "52d9ba09dcd3fbac6c0e4da6f12eae2fc547c4dc08e89b9bf9ef4d6137009acdbc4fce294dadb9189415f63d02634375accf212b8c7a82ba45d8141ffb6ab054" + } + ], + "purl": "pkg:npm/fast-safe-stringify@2.0.7", + "type": "library", + "bom-ref": "pkg:npm/fast-safe-stringify@2.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fastest-levenshtein", + "version": "1.0.16", + "hashes": [ + { + "alg": "SHA-512", + "content": "7919c2b534ed199169402c2126250ebb13d05915d52980e7d1bd8f7877d72fafd98b9dd22c0cc01df5615562b602bc82fd61f4e6419fc611483ef4c5d125d0ce" + } + ], + "purl": "pkg:npm/fastest-levenshtein@1.0.16", + "type": "library", + "bom-ref": "pkg:npm/fastest-levenshtein@1.0.16", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fastq", + "version": "1.11.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec4733b3c8083c3ad5cd3f8492c60172ea6a332c521d75eb1ce2d1471536fc389c57cefcf4c441451f3e1dcdae5b352ea4eb38612e09cc1981c638c2541c43fe" + } + ], + "purl": "pkg:npm/fastq@1.11.0", + "type": "library", + "bom-ref": "pkg:npm/fastq@1.11.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fault", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "089d07081e6d2f97d84c403b4e802ae7e913c1dfbe068adfd7f6e27f177d893ef441c5ebe0c46b3b72e57fc21fb3bd2af9225c18716d9c813f370ea0882b4408" + } + ], + "purl": "pkg:npm/fault@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/fault@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fb-watchman", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e43c9290798ea42b09ae32b7ad061afb1ba56876bedb1700d84d72247c6d608ef3696b1053415dcf6d783a6d1d5cd543f88cf397d231d46db1c034bf6f46356" + } + ], + "purl": "pkg:npm/fb-watchman@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/fb-watchman@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fbemitter", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "29629a71e0b0290534f873e8a29ea09f878e1e4e746c1bff5718c9b4631fc2626ddc3dbd2693781f87a2b02b483c0f9af065416a6fa574c329323254be90f21f" + } + ], + "purl": "pkg:npm/fbemitter@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/fbemitter@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fbjs-css-vars", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "6f65c614015d5995a0d2986d0162c70a4f37e80d576a79fe23e0e07771a4eb83072993b8e057e80f52b1caf6d2874a99b08a174061a5573b4863ea22b493e945" + } + ], + "purl": "pkg:npm/fbjs-css-vars@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/fbjs-css-vars@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fbjs", + "version": "3.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "b9c574b433839c65772429e7926a2ccdbe657f86cda738eff342b8d7077893bf7c12dabe5180f4cb44c87da94b8d9a0a8238af7bafda764467b33c1aa620e005" + } + ], + "purl": "pkg:npm/fbjs@3.0.4", + "type": "library", + "bom-ref": "pkg:npm/fbjs@3.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "file-entry-cache", + "version": "6.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec6a6cfd75b299b2e4d902d82b8373a4c3ab623321748c57b88bf2d9006c2c4ea58eea1d2af7645acfdca72249dc25485691f43a2d47be0d68bdb3332dd14106" + } + ], + "purl": "pkg:npm/file-entry-cache@6.0.1", + "type": "library", + "bom-ref": "pkg:npm/file-entry-cache@6.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "file-loader", + "version": "6.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa8de096ac936bad58b60e2eef71ae96d8c71a3751ca2837b46ea53edc97fe338426f1e27fdb81d3f3822362a27fa72d17771a4135b61b98329b6d6802c238a7" + } + ], + "purl": "pkg:npm/file-loader@6.2.0", + "type": "library", + "bom-ref": "pkg:npm/file-loader@6.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fill-range", + "version": "7.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8ea3d17e74c5260b62dc6f805b56f9ca2714cf8c29be451a5ee200ee1abce42fb984565fdd8d84aed8e750d8f6b7d36378a2a91283d8abea368b589d94495a5" + } + ], + "purl": "pkg:npm/fill-range@7.0.1", + "type": "library", + "bom-ref": "pkg:npm/fill-range@7.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "find-cache-dir", + "version": "3.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b7618332dde8182feff81330ce6965583b8917fc5c0ed1398ff7c219ba830fb38bb89923d1c7e1d58480e5528fbf031e2c52cd0c193038a6765fce6318b55fb5" + } + ], + "purl": "pkg:npm/find-cache-dir@3.3.1", + "type": "library", + "bom-ref": "pkg:npm/find-cache-dir@3.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "find-cache-dir", + "version": "3.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "c17655e5e985123aeb89d220103d753a850a2f18988c072aa2dfcd25d0243a1949faf1b3c213807dc1b9397d633fe4b43dc8c49fc6dd309bfe8368f04373a78a" + } + ], + "purl": "pkg:npm/find-cache-dir@3.3.2", + "type": "library", + "bom-ref": "pkg:npm/find-cache-dir@3.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "find-root", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "34a7d6e9b79ce867ca734486c757b4ed0658f4f13df6ed017edff4af3483e64dec3bfbf09155290d42959b91a9a7951edd87d284f1535f6d3bd2d0ece6407d36" + } + ], + "purl": "pkg:npm/find-root@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/find-root@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "find-up", + "version": "4.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3e93b001d43f6255d0daf8fc6b787c222a43b98462df071e550406616c4d20d71cab8d009f0ec196c11708c6edd59b7e38b03a16af6cb88a48583d0eb2721297" + } + ], + "purl": "pkg:npm/find-up@4.1.0", + "type": "library", + "bom-ref": "pkg:npm/find-up@4.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "find-up", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "efcfcf5d3d7094b2c3813cc3b3bb23abd873cf4bd70fece7fbbc32a447b87d74310a6766a9f1ac10f4319a2092408dda8c557dd5b552b2f36dac94625ba9c69e" + } + ], + "purl": "pkg:npm/find-up@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/find-up@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "flat-cache", + "version": "3.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "766f6ce4fc3b25cd06bcc61bb2137acdc84203d460425cf31195f7bf2951f48a857d2f177226e551738a7d6e928ae2747b5dde0d8668655e7076b7afecfdcdc2" + } + ], + "purl": "pkg:npm/flat-cache@3.0.4", + "type": "library", + "bom-ref": "pkg:npm/flat-cache@3.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "flatted", + "version": "3.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "cc0a00422b9dcbeaf94af9d2c37289cb9a2cfe8449607cebce36bfb410eaad9b4d854c3c6edeb2f0e0733167235abfbc96257c11beb23a1c3c599ed5159e59cc" + } + ], + "purl": "pkg:npm/flatted@3.1.1", + "type": "library", + "bom-ref": "pkg:npm/flatted@3.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "flux", + "version": "4.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "c8a01bae9ec9859863eae893d454ee54c948013d49e23a84c81a450298b5931a46642bda70c55cfedd69310ca8b6a1e1020be81376cdbc0ca4842a3608b8e763" + } + ], + "purl": "pkg:npm/flux@4.0.3", + "type": "library", + "bom-ref": "pkg:npm/flux@4.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "focus-lock", + "version": "0.11.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "292b95deeaf881fd8aa8c368671de75cd561a82927e361ae4d8097e2d5cf1307f4323a4542634c88dea6edd5da517808a22bcbebfeb96a0a14320e112d2d156e" + } + ], + "purl": "pkg:npm/focus-lock@0.11.6", + "type": "library", + "bom-ref": "pkg:npm/focus-lock@0.11.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "follow-redirects", + "version": "1.15.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "d55cceb6e10cf290bd48553513ef0a7d38d9c8cced46c8047f0425e38cfc036e6ecb5de34b34e3e9dc8ad837f9da2574be01c27c1c0b84359ebcb9fde70e6fe9" + } + ], + "purl": "pkg:npm/follow-redirects@1.15.3", + "type": "library", + "bom-ref": "pkg:npm/follow-redirects@1.15.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "for-each", + "version": "0.3.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "8ea61f2e9ee6a3dbc8c907fcca45b6bfb03ed8de108de09e239f83cfd5eb6a23b58a09fcd708e21fb15bf6f48e5af41f36d9926b81f6468413aeb5e2bdd5199b" + } + ], + "purl": "pkg:npm/for-each@0.3.3", + "type": "library", + "bom-ref": "pkg:npm/for-each@0.3.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "foreach", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-1", + "content": "0bee005018aeb260d0a3af3ae658dd0136ec1b99" + } + ], + "purl": "pkg:npm/foreach@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/foreach@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "form-data", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "4479012ad2d6515c1ded2a9122f099304bc0328194a745d4fac7908997a38f408ecf7448de158fe2c0afde065658b8c94ddeeb1b072c17978a6468a2d2bfe16e" + } + ], + "purl": "pkg:npm/form-data@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/form-data@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "form-data", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1131249521a2e6dd10319ba25e803f43abdc9f170b40fe6f76e812a6e0328ba4951a2d9c94f3e9fb180486e31a1c2fb31a09f7d4a776df95b7e5fec7ca491ac3" + } + ], + "purl": "pkg:npm/form-data@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/form-data@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "format", + "version": "0.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "c33b2003a58eabed3dc2b535b6c274f6e75e47f61945a780acbf5ed703db160dc61b6c839c2da574aa71b38c6e9e9145f4382a0aa388adaddb7351d6ac9dfb5b" + } + ], + "purl": "pkg:npm/format@0.2.2", + "type": "library", + "bom-ref": "pkg:npm/format@0.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "framer-motion", + "version": "6.3.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "c502e4f994a494db3940d09499d58fa4a30eb96881f19113b2f708396c3cc6fae2f4add36a6ba27e0088fc1e97a5a103474fd5d99405d969be814019ad7a3eaf" + } + ], + "purl": "pkg:npm/framer-motion@6.3.11", + "type": "library", + "bom-ref": "pkg:npm/framer-motion@6.3.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "framesync", + "version": "5.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a1ce66ebc1c33bfb6e2b66e58fb65c744051c77a753e3ae01daccbf06604a6f50b86bb462056d002b37a7104b64215bc9a2b5f7da07e558ccc8c3a81c7141ea0" + } + ], + "purl": "pkg:npm/framesync@5.3.0", + "type": "library", + "bom-ref": "pkg:npm/framesync@5.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "framesync", + "version": "6.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "7d463cf245ef1a2208b60342ef07133a5d123510955cc292596d98cdf9a7ec428d73e3290b3733f4385d1dc7636ebb4dddce91e07e5d4d8da3882a4f772b048c" + } + ], + "purl": "pkg:npm/framesync@6.0.1", + "type": "library", + "bom-ref": "pkg:npm/framesync@6.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fs-minipass", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "57f26038b1424be47a55cab4b250ae69e58474d0b7a2e0e524c348b1a707d95b402e2bbd995e0b3eb1dce5c0e5f24e5ac3a27c8f08165a9893a39458866233be" + } + ], + "purl": "pkg:npm/fs-minipass@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/fs-minipass@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fs.realpath", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "1504ad2523158caa40db4a2787cb01411994ea4f" + } + ], + "purl": "pkg:npm/fs.realpath@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/fs.realpath@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "fsevents", + "version": "2.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "c62a8c411e3101e1d3b81f6e5a6f9f1517083a02813223813fe7978b24fb8ec8150aad5b915ca0b74d28012a3007b11db6938769a3e02adf35d8ff5a6fe0c328" + } + ], + "purl": "pkg:npm/fsevents@2.3.2", + "type": "library", + "bom-ref": "pkg:npm/fsevents@2.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "function-bind", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c88a2f033317e3db05f18979f1f482589e6cbd22ee6a26cfc5740914b98139b4ee0abd0c7f52a23e8a4633d3621638980426df69ad8587a6eb790e803554c8d0" + } + ], + "purl": "pkg:npm/function-bind@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/function-bind@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "function.prototype.name", + "version": "1.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "b8dee6fc1cd52909c2505fe25bc8d879aebbbfefb6bbb9b952010d6c746d74355c94e50ff8530f94235d9a4d21ff2b06ca8dad6af309103a8902425d45ad6f30" + } + ], + "purl": "pkg:npm/function.prototype.name@1.1.5", + "type": "library", + "bom-ref": "pkg:npm/function.prototype.name@1.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "functional-red-black-tree", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "76c28d40d763eb10374fe4250030c0ee6392957d2a88c20d8e7d1c82bf9e1871ac6d21f34da6dc228833dbea7f8aa3f55ece843ffb12d926ea1fe6eb1936ead2" + } + ], + "purl": "pkg:npm/functional-red-black-tree@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/functional-red-black-tree@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "functions-have-names", + "version": "1.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5c901517c9322a4fdeedab6c7600c6fe835eb76f9245cac624d31e2ac4d1706df42498d6688911dbeac3f323dfd0577dd67aebd5601508883e0dccd232a9a45" + } + ], + "purl": "pkg:npm/functions-have-names@1.2.3", + "type": "library", + "bom-ref": "pkg:npm/functions-have-names@1.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "gensync", + "version": "1.0.0-beta.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "de137b35ab2462f3032d0639e609d6dcd43e99eb0401ea53aa583e5446e3ef3cea10c055361cdc19861ea85a3f4e5633e9e42215ca751dcb0264efa71a04bcce" + } + ], + "purl": "pkg:npm/gensync@1.0.0-beta.2", + "type": "library", + "bom-ref": "pkg:npm/gensync@1.0.0-beta.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "get-caller-file", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f214fdc133fdd81d340e0942ffc343991d1d25a4a786af1a2d70759ca8d11d9e5b6a1705d57e110143de1e228df801f429a34ac6922e1cc8889fb58d3a87616" + } + ], + "purl": "pkg:npm/get-caller-file@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/get-caller-file@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "get-intrinsic", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "91666b9d5338d900a2100d888356c6f338e820c3a0c56c1808478d77063a4effdc392786a5ca17e295c77ca53134a56802b9eb12bd9ef6cae7031c4622b692f5" + } + ], + "purl": "pkg:npm/get-intrinsic@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/get-intrinsic@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "get-intrinsic", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f4e3dcba9c53aea26e701b245cdff81d4cb3bde1dc9254a4400a3d5198964141795b4cc86d3488245a4507abe8d8999bca7f5e045b51282679e36e6a078a3d1" + } + ], + "purl": "pkg:npm/get-intrinsic@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/get-intrinsic@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "get-nonce", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "1498584680da89ab5f12450af072a589c9aeff7486143e75ab78ad2831a8493cac4090677ce7315391b19e113513ab2807be8c6d3d0c06d9ca26e5f2031fbde9" + } + ], + "purl": "pkg:npm/get-nonce@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/get-nonce@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "get-npm-tarball-url", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "d9d3e1813d0ae295727224ea752d20afd9c4c32090c2df6a975fede4c09432f7235a3032b23189813ed2c789faa2aded1418c1376dfc9b15f845f4e34f7f37f1" + } + ], + "purl": "pkg:npm/get-npm-tarball-url@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/get-npm-tarball-url@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "get-package-type", + "version": "0.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a63cee2ad63ae0661f5a2ccd009d1fafd56ab6d6643622b6892e37d0bb481f38c112be9b5fc026db39b8b16e11a39c23596e5c02544bd6a00c4dc5db8cd00ed9" + } + ], + "purl": "pkg:npm/get-package-type@0.1.0", + "type": "library", + "bom-ref": "pkg:npm/get-package-type@0.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "get-stream", + "version": "6.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6ce968beda3de3423aa2ef4c3902537c0c59e44b00be32a9b113374400b076a976585775ff6f50937e03cb18934c7805b174f7d4f053b59acdcd51f68708f62" + } + ], + "purl": "pkg:npm/get-stream@6.0.1", + "type": "library", + "bom-ref": "pkg:npm/get-stream@6.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "get-symbol-description", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d8499d1f562f210899a65b4236092e8949f2ba4cf133f47a343257df529edc11b536ae5bd12d8f857e7d50a8bdbd9a4f0d055daa7fb521c680c27cd34f9bc28f" + } + ], + "purl": "pkg:npm/get-symbol-description@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/get-symbol-description@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "glob-parent", + "version": "5.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "00e22049009ea62258c0fdc04671b1fb95674eed870587736c63f8e5e2f0d6faf7cc1def64b7b279dd6c0bd8676dc39cf7f4ab33233944f42b906cf8692f59a3" + } + ], + "purl": "pkg:npm/glob-parent@5.1.2", + "type": "library", + "bom-ref": "pkg:npm/glob-parent@5.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "glob-parent", + "version": "6.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f1c08f043a1550816a7a8832feddbd2bf3a7f877a017eb3494e791df078c9d084b972d773915c61e3aefa79c67ed4b84c48eeff5d6bb782893d33206df9afe0" + } + ], + "purl": "pkg:npm/glob-parent@6.0.2", + "type": "library", + "bom-ref": "pkg:npm/glob-parent@6.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "glob-to-regexp", + "version": "0.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9645f51c95f0c8c729af0ff961465cdacec3ae90221c1db5fd5f84d6b1d4ad5368924bc1e9ba8ccd3d157d5ebff3a64d69bb75935e18388693ee70ef397dc88b" + } + ], + "purl": "pkg:npm/glob-to-regexp@0.4.1", + "type": "library", + "bom-ref": "pkg:npm/glob-to-regexp@0.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "glob", + "version": "7.1.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "3af0fd10dccf2db7a010d9d83f95147c9222ad3838f97c0c5866907d04d8d097a7c4dbef20a3f7537fed01048f22efe51f15d84999a95e55077aa00874acc12d" + } + ], + "purl": "pkg:npm/glob@7.1.7", + "type": "library", + "bom-ref": "pkg:npm/glob@7.1.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "glob", + "version": "7.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9662dfea0b72acfabcb538d29ab3bde3005e41b151dc76cb1dbbb20faf70bb2424226a76856a8c181e3b397eb914190f7df3bae3520ff6359ad73e22bea1b6e9" + } + ], + "purl": "pkg:npm/glob@7.2.0", + "type": "library", + "bom-ref": "pkg:npm/glob@7.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "global-modules", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3466df989069f71f08c722527753fea2d60af2fa27a0969cb4ea20ad57c5448004635ba48a5f1148a0f3d98a3bc21d688a1979d65febe96e1ea6478a247a8bf0" + } + ], + "purl": "pkg:npm/global-modules@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/global-modules@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "global-prefix", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6b00a89c9495087546343eb1ded98c68a710bf05cb8637649a89b2d96f86a1aba2f183e06205c965ec218377d60be0e57eaa90b9683c030aa31930f69c03d55a" + } + ], + "purl": "pkg:npm/global-prefix@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/global-prefix@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "globals", + "version": "11.12.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "58e069fc410652222c252a7bc1cbffcba30efa557d5289dc5aac6e15f9bc781c3358d8327c177a1b3f8878a43d8c29b28681fdf60d793374fe41a5471638b354" + } + ], + "purl": "pkg:npm/globals@11.12.0", + "type": "library", + "bom-ref": "pkg:npm/globals@11.12.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "globals", + "version": "13.15.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6e9cdc3a580384c1b4ef402fd15cb93b0925a6fd48ebe8fde8685423b461ec8cc308a2f36e87e52ebadfa8cbbc36ab836e247810e424ed7cc9c2a549c62731a2" + } + ], + "purl": "pkg:npm/globals@13.15.0", + "type": "library", + "bom-ref": "pkg:npm/globals@13.15.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "globalthis", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "b05748e4bc8188d4c78d177b7063d66a988758c3972b2b81357fdc589dcd7f3ad94156bc188ffc7287c297be00395aaaf56e6436682e4c8cc9ff5b3683223dc0" + } + ], + "purl": "pkg:npm/globalthis@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/globalthis@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "globalyzer", + "version": "0.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e34a0d4ccf547c6e9a066b8ac64fe08879f99d0f11573fd24b822beb38333aff7fa82de4299f6fe1eb464dc25b125fcdc95407ec5194eddf97d5e82be7b31dd9" + } + ], + "purl": "pkg:npm/globalyzer@0.1.0", + "type": "library", + "bom-ref": "pkg:npm/globalyzer@0.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "globby", + "version": "11.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e121768ecf2d6c6fc232a1c6abb964a7d538e69c156cf00ca1732f37ae6c4d27cab6b96282023dc29c963e2a91925c2b9e00f7348b4e6456f54ab4fd6df52de" + } + ], + "purl": "pkg:npm/globby@11.1.0", + "type": "library", + "bom-ref": "pkg:npm/globby@11.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "globby", + "version": "6.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "f5a6d70e8395e21c858fb0489d64df02424d506c" + } + ], + "purl": "pkg:npm/globby@6.1.0", + "type": "library", + "bom-ref": "pkg:npm/globby@6.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "globjoin", + "version": "0.1.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "2f4494ac8919e3767c5cbb691e9f463324285d43" + } + ], + "purl": "pkg:npm/globjoin@0.1.4", + "type": "library", + "bom-ref": "pkg:npm/globjoin@0.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "globrex", + "version": "0.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "b872606f000cc0d15fe662ecb7b2162cd835e31d4291eaa09496ff2b77688b8770eaad88bc002633f63cd647afcbcdf03fe4acb7e9eeb454d838683777596cc6" + } + ], + "purl": "pkg:npm/globrex@0.1.2", + "type": "library", + "bom-ref": "pkg:npm/globrex@0.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "gopd", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "77ae5b36521a771be96ff03669b55d96a2aa579eb78ee4676755ad93ab35b0847cb8db1747bd31a88cd5ab155fd5e4ea0ee9f04f632473311e69ecc2293661c0" + } + ], + "purl": "pkg:npm/gopd@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/gopd@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "graceful-fs", + "version": "4.2.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "36d371a947178295b688cadfa927d1ef71a5b77f4af812f05ac3ecf78c91eb7bf8e53d166de8fb79198be5c59fc0482a5e79a3429df36894ec85d456fea0b665" + } + ], + "purl": "pkg:npm/graceful-fs@4.2.9", + "type": "library", + "bom-ref": "pkg:npm/graceful-fs@4.2.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "graphlib", + "version": "2.1.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "8dc2cb7e4a68546987eff227302ff5848bce3d2521dfca09b4686face146ce2a04d4367ed185b5e918263898478ae593bc688943d675224e3726f9113d1bc4f8" + } + ], + "purl": "pkg:npm/graphlib@2.1.8", + "type": "library", + "bom-ref": "pkg:npm/graphlib@2.1.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "hard-rejection", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "548641fa26c3871ece6e101eece56da046ee3f887f32e3931c9f89f21fde057a2d2589747c1811ef6c431422a0221db638964839537104c5ae840af5d2bf0774" + } + ], + "purl": "pkg:npm/hard-rejection@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/hard-rejection@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has-bigints", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d2052d8b8db3414dfeb6f3b2446c4cef2607ed905e6a164982a3d8434690332a150e949fa1c7c75de144acd344a0b14370738eb5ec9f648b962d10294cd9f7c" + } + ], + "purl": "pkg:npm/has-bigints@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/has-bigints@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has-bigints", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "b52bc22ad06bf65905d04c7469088ff4df8ea55e338b6aff35e7b95644436daaafdf944b60ccdbc107c5499647d2447e45deb7d36509676a7f6c9084a11dd5a1" + } + ], + "purl": "pkg:npm/has-bigints@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/has-bigints@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has-flag", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5d454dc2199ae225699f3467e5a07f3b955bafd" + } + ], + "purl": "pkg:npm/has-flag@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/has-flag@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has-flag", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1329094ff4352a34d672da698080207d23b4b4a56e6548e180caf5ee4a93ba6325e807efdc421295e53ba99533a170c54c01d30c2e0d3a81bf67153712f94c3d" + } + ], + "purl": "pkg:npm/has-flag@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/has-flag@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has-property-descriptors", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "eb60d52d91a88840431d0caa1b8c3dc42b99ede244c0d989456c36558f3839e75bed615c036edf88455ef28510c7d840509e1e92eaeabae7131b0b323b55c675" + } + ], + "purl": "pkg:npm/has-property-descriptors@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/has-property-descriptors@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has-proto", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "eea13e88ff8ef9b805f5c944e7e528045cc4eb99a5062563ded282ae5350d0e8309b4063a53fe02b84a52d80ccc9b0e1e48dd30932a73cf6b4a0c1bb24362b86" + } + ], + "purl": "pkg:npm/has-proto@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/has-proto@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has-symbols", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "7215daefdacbfd40b62a55f5ee3a37bd11b3d1acda584c79b46a99839a4edcd532109541d7b74caee425cc208e7d4bc496084a726e75f78f81091be2d91bff1b" + } + ], + "purl": "pkg:npm/has-symbols@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/has-symbols@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has-symbols", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "9772c2b85e8c8033704c32a47581848a1623b79a513db120e3aaed9669d23e551b82607c2ce22b2896d86050526e73da25ec4c2ad88f3bc8667918d1cf64ddf8" + } + ], + "purl": "pkg:npm/has-symbols@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/has-symbols@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has-tostringtag", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9058dc48d867946575932a0693b3972926b01f924e6ff2f351ce70f41d3684e4ced1d7c54636c740abe0d5de9c7f71db7949ad53d55b6d5deacd9d937a1f7b59" + } + ], + "purl": "pkg:npm/has-tostringtag@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/has-tostringtag@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "has", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f676f3b4554e8e7a3ed1916246ade8636f33008c5a79fd528fa79b53a56215e091c764ad7f0716c546d7ffb220364964ded3d71a0e656d618cd61086c14b8cf" + } + ], + "purl": "pkg:npm/has@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/has@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "hast-util-parse-selector", + "version": "2.2.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "ee3ea6ae4feaaa449e86c33ddb0423748816336fc15bad6eff9dc6eb1982f22d4e98474a2c76e4e35f50290523cfa2e0956b1faa88879b231190fd411a379c35" + } + ], + "purl": "pkg:npm/hast-util-parse-selector@2.2.5", + "type": "library", + "bom-ref": "pkg:npm/hast-util-parse-selector@2.2.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "hast-util-whitespace", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3e4c3ec411ee57ac45789a6b25ed81044a0357e02f43249acf7a4f0d152ce4f35910c423a57249b9eaaba5c1c85f19d64dc0068bf50e0a0552865918ea42e8aa" + } + ], + "purl": "pkg:npm/hast-util-whitespace@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/hast-util-whitespace@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "hastscript", + "version": "6.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9c333a6ef77b948a835226048aee5297ffba45e3f404c93fd9fe14fd1a2871cc648f43f99e6f9a70ce4fac627fb7923ca8f1a2a99484ea1540c1911d648bcfe3" + } + ], + "purl": "pkg:npm/hastscript@6.0.0", + "type": "library", + "bom-ref": "pkg:npm/hastscript@6.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "hey-listen", + "version": "1.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "08ea66ac5d8d3a0e13056509e5457268253603cf3010c9143cae2136ac8292a1dbc53f7605bbdf8e84a8ce4008226e978627069491e115dba59489eb761c14f1" + } + ], + "purl": "pkg:npm/hey-listen@1.0.8", + "type": "library", + "bom-ref": "pkg:npm/hey-listen@1.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "highlight.js", + "version": "10.7.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "b7371415aba2b1628d1da4643785a397f640d3b8043408c597727f738f34769ae4193839110b2d81a345a817d4a82ab9e2465120472b793b00805fe6daab83ec" + } + ], + "purl": "pkg:npm/highlight.js@10.7.3", + "type": "library", + "bom-ref": "pkg:npm/highlight.js@10.7.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "history", + "version": "5.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "66a68ac238eb0185187cb1be86d19a2086789e2a17d8bef4654308172b12df1bc1b121b8c7f9f557a4d757737c65836e1469438ab160df64fb07a58e50f0d871" + } + ], + "purl": "pkg:npm/history@5.3.0", + "type": "library", + "bom-ref": "pkg:npm/history@5.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "hoist-non-react-statics", + "version": "3.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe01a2bf18bc24f296366fd6d234a6cdc30fa5fa4f2dcddd63fe86c615f6850f621a3dda0df925578113ecd8caa528a72e9279bda7daf62886204660d7449f07" + } + ], + "purl": "pkg:npm/hoist-non-react-statics@3.3.2", + "type": "framework", + "bom-ref": "pkg:npm/hoist-non-react-statics@3.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "hosted-git-info", + "version": "4.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "73d3865db67782e0bfc4e9428350a2fd5816970b2a0efd723102f5096a970cbd210e35ee35cab4cee478c6a3d2b9ab08de4a850e1a92c938d1133e60cead1f5e" + } + ], + "purl": "pkg:npm/hosted-git-info@4.0.2", + "type": "library", + "bom-ref": "pkg:npm/hosted-git-info@4.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "html-encoding-sniffer", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f925b38c04847f4d5664b9b1d3f8ec93dbbd3942fa20516e08067ea71ddef9e8ec2279217d6836058f876fe871c454661b1da2c44dadd6820658596332cb765" + } + ], + "purl": "pkg:npm/html-encoding-sniffer@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/html-encoding-sniffer@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "html-escaper", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "1f688cb5dd08e0cb7979889aa517480e3a7e5f37a55d0d2d144e094bb605c057af5d73263a9f66c8dad4bc28340fac2cf22aa444f05f28781bc228354a694b7e" + } + ], + "purl": "pkg:npm/html-escaper@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/html-escaper@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "html-tags", + "version": "3.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "cedab20b790bb68d1ef566cda7469e3fe337913b7e9db688bde1a653102d65afbc88580a2d4383e1828ce63f9fdd00fcf5badaed47ae9a89591cab8e5e74e679" + } + ], + "purl": "pkg:npm/html-tags@3.3.1", + "type": "library", + "bom-ref": "pkg:npm/html-tags@3.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "htmlparser2", + "version": "3.8.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "996c28b191516a8be86501a7d79757e5c70c1068" + } + ], + "purl": "pkg:npm/htmlparser2@3.8.3", + "type": "library", + "bom-ref": "pkg:npm/htmlparser2@3.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "htmlparser2", + "version": "6.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "832c8f93aae0a272c51031a879181035a114bdd27892d4e699487f876b7bb3e33ca0fa483f180d00259afba112479ee45ecb70a8f882badd15f0d469730814ec" + } + ], + "purl": "pkg:npm/htmlparser2@6.1.0", + "type": "library", + "bom-ref": "pkg:npm/htmlparser2@6.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "http-proxy-agent", + "version": "4.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "934cdd360a964c603a69e211569bdf5686f87cbe767537da7a1ca583463852f4b24af3aafd8f813b23eb82952b03b1f296abd4f2f2191ac46e5e6b29b245744e" + } + ], + "purl": "pkg:npm/http-proxy-agent@4.0.1", + "type": "library", + "bom-ref": "pkg:npm/http-proxy-agent@4.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "http2-client", + "version": "1.3.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "9d4c4bca6590f69ce4cd39a2af6e29d91b6c82bb8b9a18deee51f784b5f5229c2fc9383bedf5bed5bade9cf3cfdd448047ead0dfaa79b1303fc7bb2308956400" + } + ], + "purl": "pkg:npm/http2-client@1.3.3", + "type": "library", + "bom-ref": "pkg:npm/http2-client@1.3.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "https-proxy-agent", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "124626e4170a50689dbb1cd2b77129a64a3e3e2356344a5ae324a4f6f4c2eb00ec4095bdac749af94846349a11629edbcfa1edd5e69121ae90689a8ee6b0856c" + } + ], + "purl": "pkg:npm/https-proxy-agent@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/https-proxy-agent@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "human-signals", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "07814567aabf4f68e1864b2091b116dc706f5887c35bce6c9e44206b0b74ed2ec9e505d393a064355fb4c80799acce50a4c01d625a1c1a89639f4b09fd642417" + } + ], + "purl": "pkg:npm/human-signals@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/human-signals@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "iconv-lite", + "version": "0.4.24", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf73179d901cbe7cb091350466898801cb657bb4575de79d391df5c3097b565ca85cee108bd6abbd27a73505a77b54dc4708422f51f02c8db56c4a9da63f3fac" + } + ], + "purl": "pkg:npm/iconv-lite@0.4.24", + "type": "library", + "bom-ref": "pkg:npm/iconv-lite@0.4.24", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "icss-utils", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b281617e509558b7d134e3d4de2bf967d554753e38c4545bce32ec1334abe4042682a3cc4c7754dcf313d427f5b2cc7c7cb3490c0d63b9fb5897e3d472fdcca8" + } + ], + "purl": "pkg:npm/icss-utils@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/icss-utils@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ignore", + "version": "5.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "3006f7f017126c7d1e1cd0719fbaa5d8d1ff917df73a4077959d4135d87b10d7910a11d362c4ef5ab32e6e220030d4b69655c4120675314381b570a13f791a15" + } + ], + "purl": "pkg:npm/ignore@5.2.4", + "type": "library", + "bom-ref": "pkg:npm/ignore@5.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "import-fresh", + "version": "3.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "bde6188506be0f54012b39ef8541f16fc7dac65af0527c6c78301b029e39ec4d302cd8a8d9b3922a78d80e1323f98880abad71acc1a1424f625d593917381033" + } + ], + "purl": "pkg:npm/import-fresh@3.3.0", + "type": "library", + "bom-ref": "pkg:npm/import-fresh@3.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "import-lazy", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "acab6fa3a6bcebc6f91eede17a7794f8be32110e2360a2ed8e99cf79474aee1d32cd71a6c814f2a649e5902bc7141a9f5fd625a2b12230ce839eaff96ad7c793" + } + ], + "purl": "pkg:npm/import-lazy@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/import-lazy@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "import-local", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c4f626946370971fc0b07da9ff69b0ca0317b52864fd9321ac04fa9fe8330aff3d1ad8ecc0b2bba4798360207e9c1f95ebe39da36f54d42fcad27c22e367db8" + } + ], + "purl": "pkg:npm/import-local@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/import-local@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "imports-loader", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ccfbda9e028482bacf7aa794a87d1485ce7d62a2b4ec9a99062f5af5c437bff10a508aab6c91d8e02bd4ac3bacda58106b90263f25ee1ab58ff09253ab313945" + } + ], + "purl": "pkg:npm/imports-loader@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/imports-loader@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "imurmurhash", + "version": "0.1.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "9218b9b2b928a238b13dc4fb6b6d576f231453ea" + } + ], + "purl": "pkg:npm/imurmurhash@0.1.4", + "type": "library", + "bom-ref": "pkg:npm/imurmurhash@0.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "indent-string", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "11d0c366ee00d8ec882bb2ebff6cc6fb0e6399bba4d435419c4c11110bc1ceca412640846d16bc1b153596085871a1890a745689b8c35e5abbefd5f5ff2e71c2" + } + ], + "purl": "pkg:npm/indent-string@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/indent-string@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "indent-string", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9ba140a3fb299ac5b601bd9f537e494d8c2d38a6b6c80c174b08234afd53273878321ee60b797300e54b069adbef65ec4eb824108b25ed8ac53408838918481a" + } + ], + "purl": "pkg:npm/indent-string@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/indent-string@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "infer-owner", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "202963f97cfde3e77b8ab1f9a91c9f2689ce75f4f3b836a27c4e993d67f1d0dd3efc04d909bb933eada9ac5979dbabab91077dd16c942888750df050da1333f4" + } + ], + "purl": "pkg:npm/infer-owner@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/infer-owner@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "inflight", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-1", + "content": "49bd6331d7d02d0c09bc910a1075ba8165b56df9" + } + ], + "purl": "pkg:npm/inflight@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/inflight@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "inherits", + "version": "2.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "93fbc6697e3f6256b75b3c8c0af4d039761e207bea38ab67a8176ecd31e9ce9419cc0b2428c859d8af849c189233dcc64a820578ca572b16b8758799210a9ec1" + } + ], + "purl": "pkg:npm/inherits@2.0.4", + "type": "library", + "bom-ref": "pkg:npm/inherits@2.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ini", + "version": "1.3.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "255ff2ba0576bb35b988c4528990320ed41dfa7c6d5278de2edd1a70d770f7c90a2ebbee455c81f34b6c444384ef2bc65606a5859e913570a61079142812b17b" + } + ], + "purl": "pkg:npm/ini@1.3.8", + "type": "library", + "bom-ref": "pkg:npm/ini@1.3.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "inline-style-parser", + "version": "0.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ecd5e896c2b80804b9fb1bdd8f938c31b23deb6854ff0bf0a3193e2d647d124f5b56dcaeb9849c0cde9e4b4ad49ba4f1029169c3b097d68e2e27371de00c83dd" + } + ], + "purl": "pkg:npm/inline-style-parser@0.1.1", + "type": "library", + "bom-ref": "pkg:npm/inline-style-parser@0.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "internal-slot", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "3b40c1d490bfb0fc9997b708a3bf27e5d47b7944b0c2960f8974614f337165500c52e07cbe59d11722f176b553a24b3a5cf2d59c57dbcda55de562e386083ebc" + } + ], + "purl": "pkg:npm/internal-slot@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/internal-slot@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "internal-slot", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "63e479849af3b39d90086da568b9f8b9d6159f1b1f9f2f42a4e84d854be4fd249257217a4f6ec5cd16c5d2cae83e2752bb75fca040243a7d8af34e268e9b7a51" + } + ], + "purl": "pkg:npm/internal-slot@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/internal-slot@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "internmap", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "94307961c70cc9d141b5ab15b719d9dcc4411ee6a813c18ab29a6af8472128bd94e272bf0e61293c7347f0c65ee4790cb694a24d2399c1f374b736233bf94913" + } + ], + "purl": "pkg:npm/internmap@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/internmap@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "interpret", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "26ed01cff70489ae79c43c145846bcfa8945a42890a32a639d0c92b1e2ad9a336b9e9b373fec5fa54986afdd13ef28e554998eb726d1bcf5e128c6c7afe7d69f" + } + ], + "purl": "pkg:npm/interpret@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/interpret@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "invariant", + "version": "2.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "a6125f41506e689339ada3a926349f9220fa0696c213836cfff2da5e5eb0198b54058f379d64ba45ff6d5e6d9ef1568aeb42448d895d6cf89ffc0d81d42da034" + } + ], + "purl": "pkg:npm/invariant@2.2.4", + "type": "library", + "bom-ref": "pkg:npm/invariant@2.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-alphabetical", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f0cec034e0b435d051d366e2f4fe0ad50e4e2b168547d698c04e863006b1d2c5cac120642e5eb40cb43e54d5bd14d975602990932cb3fcbb6431aa1cb797656" + } + ], + "purl": "pkg:npm/is-alphabetical@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/is-alphabetical@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-alphanumerical", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "533a1952bf977d5cf7b77bf82b21849e254bf410d1a10b58eed3b2ad1c9b9153630c55b2a35ca15cd1abac14d0c69de26fd04b016b3b93660a050b05464646f4" + } + ], + "purl": "pkg:npm/is-alphanumerical@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/is-alphanumerical@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-array-buffer", + "version": "3.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbe172c91ff0f2f7c846ae1e41c3351188124e79875cfa9a17e220ce0adacad085ab95e1f259650d598066894f26266db592de15220d3d831a109effbd651ad7" + } + ], + "purl": "pkg:npm/is-array-buffer@3.0.2", + "type": "library", + "bom-ref": "pkg:npm/is-array-buffer@3.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-arrayish", + "version": "0.2.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "77c99840527aa8ecb1a8ba697b80645a7a926a9d" + } + ], + "purl": "pkg:npm/is-arrayish@0.2.1", + "type": "library", + "bom-ref": "pkg:npm/is-arrayish@0.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-arrayish", + "version": "0.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "79546a0af56565bbb0dc6acceb7a2f352340780d4ad7a91a47f2d163ff76c34cf1439ff5633c1b9545fae768b85ecf51c001a35bd77dcba5fcf2df0e68025f59" + } + ], + "purl": "pkg:npm/is-arrayish@0.3.2", + "type": "library", + "bom-ref": "pkg:npm/is-arrayish@0.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-bigint", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "d09579f9238242421dce304af5bb8045c57cd380ddbbb03441eb7ab078b7162984f677ba9b80464197d19fe3598976c19381785e61df0d9222a4b8fda57f1d48" + } + ], + "purl": "pkg:npm/is-bigint@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/is-bigint@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-boolean-object", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d77505a410205420070291e1f5ba7c092c8a5961a6b956fbb2812c92fdcda57fbd7d9932990d4e54743465a5dd355230038265bc45fa9a3fe9916953ddaff36" + } + ], + "purl": "pkg:npm/is-boolean-object@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/is-boolean-object@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-buffer", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b647accd143c20107272414b49124d17162d62d1d3c59ffa2a8cadffbcf09c0de26f5b9350f3757c41b89c7c5d52ba939a07487c9ed8010b662213b75fc9cb5" + } + ], + "purl": "pkg:npm/is-buffer@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/is-buffer@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-callable", + "version": "1.2.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "d410b40551614bfa74aadc3a7a7a7c7bef0e0f452b2b4a052f3b528cdce170a037583b89c7100f5f33ee3ed2a48c463d514a045a55fff1f80a7aed92f22f494c" + } + ], + "purl": "pkg:npm/is-callable@1.2.7", + "type": "library", + "bom-ref": "pkg:npm/is-callable@1.2.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-callable", + "version": "1.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "2750dc31ef14613052aca7b3b885135308d7b21a36f7af77ba75ccd98849513476b712bf786e3b6ef35aff08a93c5999160aff37a7f5180eba76fd261324c8c9" + } + ], + "purl": "pkg:npm/is-callable@1.2.3", + "type": "library", + "bom-ref": "pkg:npm/is-callable@1.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-callable", + "version": "1.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "9ecbb0b7165f317ebb3abca5f4b090faea670b4674060a709eda52f3d9b51ff4cb174ccd7f37cb315ffd59affa319b23d1a72912300ed0a175c53e9974b97de7" + } + ], + "purl": "pkg:npm/is-callable@1.2.4", + "type": "library", + "bom-ref": "pkg:npm/is-callable@1.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-core-module", + "version": "2.11.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4518f196f2c3903d582700dbae804731bf9cba4bab90358dc87c7b0f7a0d079c7dadbe6881c92c302e701c269d717a28ebb815afffb7185c92877d77e338baaf" + } + ], + "purl": "pkg:npm/is-core-module@2.11.0", + "type": "library", + "bom-ref": "pkg:npm/is-core-module@2.11.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-core-module", + "version": "2.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e80d9f91fab5adf790663c6b64919eae92c24c744d101892827bb4fa86de26910f651528a0782c8b3bf3bf46632703b3de25881dd26d55627fb663ebdc3db5fc" + } + ], + "purl": "pkg:npm/is-core-module@2.4.0", + "type": "library", + "bom-ref": "pkg:npm/is-core-module@2.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-core-module", + "version": "2.12.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "43866e0407b6154b0ab72409a101e5bcff0ebc1111c4ede3126cb523b85c457709046187161fda241b306d7b92f6c82b0c7d9050ef22964c0d3c7bc731df1c96" + } + ], + "purl": "pkg:npm/is-core-module@2.12.1", + "type": "library", + "bom-ref": "pkg:npm/is-core-module@2.12.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-core-module", + "version": "2.9.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fb914fcb93e7c263b796f7cc6f402ca0f6811bee4a1d4234c181573ad60f9d5555b294c552e31935f35a35546ddc565a76cb6ed9cf31db7bf29115bf341a14e8" + } + ], + "purl": "pkg:npm/is-core-module@2.9.0", + "type": "library", + "bom-ref": "pkg:npm/is-core-module@2.9.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-date-object", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "fdbe1956c1bb6795d5b48c6cfe1f56f27bdf2e0480c8a61db465902dbab2ea303589c9a08dff160a84ca81e4b8c32e6d61a3de3e8bb314c00d6e78fde1cd99f8" + } + ], + "purl": "pkg:npm/is-date-object@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/is-date-object@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-decimal", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "44676b88c99042f6766aa690ab76b0340e9d086b4aa620c570eceb4d6ac3013d8c896aca4153e6c4b18797b6369cdbba95e774904ca85f47a7634a9762cbfdcf" + } + ], + "purl": "pkg:npm/is-decimal@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/is-decimal@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-extglob", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "a88c02535791f02ed37c76a1b9ea9773c833f8c2" + } + ], + "purl": "pkg:npm/is-extglob@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/is-extglob@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-fullwidth-code-point", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "cf29a6e7ebbeb02b125b20fda8d69e8d5dc316f84229c94a762cd868952e1c0f3744b8dbee74ae1a775d0871afd2193e298ec130096c59e2b851e83a115e9742" + } + ], + "purl": "pkg:npm/is-fullwidth-code-point@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/is-fullwidth-code-point@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-generator-fn", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "713201e323d82ff1abc3411a4b3012ce0e9b072f60a82a1fbd637ca244e1018231289642fae7654409866ccd172de9e21094acf2e1201cf1ae1d27b55ec38b49" + } + ], + "purl": "pkg:npm/is-generator-fn@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/is-generator-fn@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-glob", + "version": "4.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e46d2d2ad05314898ea839cb076846e81a76a9c28415dba8e2d66ef4c4ff1fa350bff821872df4a39e6e7da7f127f2dd1fbf4b2ecd8a7eb9fce532cac80ec152" + } + ], + "purl": "pkg:npm/is-glob@4.0.1", + "type": "library", + "bom-ref": "pkg:npm/is-glob@4.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-glob", + "version": "4.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5e9526b21c7dfa66013b6568658bba56df884d6cd97c3a3bf92959a4243e2105d0f7b61f137e4f6f61ab0b33e99758e6611648197f184b4a7af046be1e9524a" + } + ], + "purl": "pkg:npm/is-glob@4.0.3", + "type": "library", + "bom-ref": "pkg:npm/is-glob@4.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-hexadecimal", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "8323c9baff376c7329a1c558a2aa1fe550e266f784a06a052fc9b705735bd955bc5ecfabcfd92a3bc2ce4390c7e84b2ebe2953d40a5acd4d29ca5fb2b5b3ed97" + } + ], + "purl": "pkg:npm/is-hexadecimal@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/is-hexadecimal@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-negative-zero", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "db3e89cd0bd945af40d98ef10ba750426e054934933568ca218613b78db8e9e313266228d10f99c8eb14eba5fc9712b501b07dd9d15e8253cbae1c2979128eeb" + } + ], + "purl": "pkg:npm/is-negative-zero@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/is-negative-zero@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-negative-zero", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "76a26f6ab2dac17b056cd0de256ef3033f08b49f5c776f18b9fbae1738741bca4d1e324c9d8d3c0efeec617dae17952940ec2278078e13111801659fbbb65950" + } + ], + "purl": "pkg:npm/is-negative-zero@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/is-negative-zero@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-number-object", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "454d2523f9fde6932850abbdbf50593f9301719b8d495264324006d9d26a0b8cf61a590650d787ebc4ae1ee04a043fd715ef8b1d9f9ff412a42c44fad0d89e77" + } + ], + "purl": "pkg:npm/is-number-object@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/is-number-object@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-number", + "version": "7.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e350a27e483a7bc4f2952a5db53a5e2d532abd20445734edb47bc4443ef8d7ea6767c00dbf4d34e0c44be3740a3c394af5c1af369e8d6566540656c65d8c719e" + } + ], + "purl": "pkg:npm/is-number@7.0.0", + "type": "library", + "bom-ref": "pkg:npm/is-number@7.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-path-cwd", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c3de366d372287c7dd24f266407173912efa3443fc2b3cef9b0f76717b1acdbf229edc0ba8f89b3cf7577f800d74a577ad832eb90606216b6fcfd262941dcd15" + } + ], + "purl": "pkg:npm/is-path-cwd@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/is-path-cwd@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-path-in-cwd", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "acda1c5c7822a4efabbe73fa764df3236d11a4eb6b00cfe4cdb076e7c530e415abdd3a578bceb5cb38e8d7a0e7e21528c74ee2c3903278c2c75acba3923cef45" + } + ], + "purl": "pkg:npm/is-path-in-cwd@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/is-path-in-cwd@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-path-inside", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c22ca14f37c35acbf0016e77381585e73baf68e1a567a3f063101b3d50e1a66fa0334f712901a306affcb98375d9a0ef3319c09eadddc53ca84a844d9a0e5816" + } + ], + "purl": "pkg:npm/is-path-inside@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/is-path-inside@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-plain-obj", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "71a50c8429dfca773c92a390a4a03b39fcd51d3e" + } + ], + "purl": "pkg:npm/is-plain-obj@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/is-plain-obj@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-plain-obj", + "version": "4.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8f822faf32e50d909c84c62301b792251683322a7af9ce127852ca73e7c58e841179428219905c8d1c86c102d1f0cd502093946d9dd54db0344deb5fe6983aa" + } + ], + "purl": "pkg:npm/is-plain-obj@4.1.0", + "type": "library", + "bom-ref": "pkg:npm/is-plain-obj@4.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-plain-object", + "version": "2.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "8793e98179168ad737f0104c61ac1360c5891c564956706ab85139ef11698c1f29245885ea067e6d4f96c88ff2a9788547999d2ec81835a3def2e6a8e94bfd3a" + } + ], + "purl": "pkg:npm/is-plain-object@2.0.4", + "type": "library", + "bom-ref": "pkg:npm/is-plain-object@2.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-plain-object", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5514b32a46cc9b98cc0e828b6e5b4090543942bed50e24c5197c581575e8c158f7f3b19e18d382b0e1fa32ccb4d12199dc5a7ce1bd4d69ad69b2a81c08810fe5" + } + ], + "purl": "pkg:npm/is-plain-object@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/is-plain-object@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-potential-custom-element-name", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c261e440dab5626ca65dfacdbadb98069c617fb7b0d2a83b3874fec2acb0359bb8ca5b3ea9a6cd0ba582c937c43ae07b663ca27586b3779f33cd28510a39489" + } + ], + "purl": "pkg:npm/is-potential-custom-element-name@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/is-potential-custom-element-name@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-regex", + "version": "1.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "a92557173dbc1ccef2f88597eaf2c2b1ec5d96fcd3d4f24d15206e6902d0e68d08130f140d85baff6f9e08c57222c6ccf0234b5f66bf416992a72c5810763b09" + } + ], + "purl": "pkg:npm/is-regex@1.1.3", + "type": "library", + "bom-ref": "pkg:npm/is-regex@1.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-regex", + "version": "1.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "92f45dc43b31663873517d3b6672f27734b54d4fd32654d41c763860b2fcededfba14038f437e42ea832f958c5a1ca30cb6f5c2af7128aefa422fef6f234d356" + } + ], + "purl": "pkg:npm/is-regex@1.1.4", + "type": "library", + "bom-ref": "pkg:npm/is-regex@1.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-shared-array-buffer", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "b2a376503bb5ff4cbabaf5f24ad08ecf28408c24a51dc785a0c2895bc5bd114f5cbe273f41db19d24114f771c4cb7214105648887ff7c3e007fd441b3c735d84" + } + ], + "purl": "pkg:npm/is-shared-array-buffer@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/is-shared-array-buffer@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-stream", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "845a222624e5eb79e7fa4b2d1c606d7b05922a740ba726f5e7928785e035977f6ebed3bd9d6228a75a77b9da8f71477fc5b17554b30ee27ece23aa7b45b9e00e" + } + ], + "purl": "pkg:npm/is-stream@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/is-stream@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-string", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "da07736ca52eaad43795836b513418a0294f866ee842ee14769499329d7f0c68241c14fc136675974c8c75be83e33340c700e232ff0c76e94a44e246365d10d3" + } + ], + "purl": "pkg:npm/is-string@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/is-string@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-string", + "version": "1.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "b44d945f38af8deea87cf5bb976ddc8c338c6b4f606fbc6502a1ba8c6e5e8fab8f577d939563f734a3e282d68678736ef5fa2171c458bc889931f38e9ce614b6" + } + ], + "purl": "pkg:npm/is-string@1.0.7", + "type": "library", + "bom-ref": "pkg:npm/is-string@1.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-symbol", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "0bf08f06a2969ef75cc6a200471c8e878bf551410e087a600dad16620a4a0c532ccdcacf71f7e0e6e8704a03c22c3d965b19aaea2b22b33f3bb734f4d6db8686" + } + ], + "purl": "pkg:npm/is-symbol@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/is-symbol@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-typed-array", + "version": "1.1.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c9aa010789666f329685677b9373c9073cce3ee000d39439e2b902fb714fd40c0d1097b17bd3219f1e987770b35ef9cf6da1a8a0bfe0c5cd324a85cd82b4ee8" + } + ], + "purl": "pkg:npm/is-typed-array@1.1.10", + "type": "library", + "bom-ref": "pkg:npm/is-typed-array@1.1.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-typedarray", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "e479c80858df0c1b11ddda6940f96011fcda4a9a" + } + ], + "purl": "pkg:npm/is-typedarray@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/is-typedarray@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "is-weakref", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "a9cb6cb8b666210d3ebd248c7e856fc857b6f86484be7999d9ecd3ba9d5206c7bdfadc0209e89a97a1048b735cd8a15c7fafaacf61413e78d7b24f3184a49a3d" + } + ], + "purl": "pkg:npm/is-weakref@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/is-weakref@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "isarray", + "version": "0.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "8a18acfca9a8f4177e09abfc6038939b05d1eedf" + } + ], + "purl": "pkg:npm/isarray@0.0.1", + "type": "library", + "bom-ref": "pkg:npm/isarray@0.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "isexe", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + } + ], + "purl": "pkg:npm/isexe@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/isexe@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "isobject", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + } + ], + "purl": "pkg:npm/isobject@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/isobject@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "istanbul-lib-coverage", + "version": "3.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "78e789e411c298762f40aef1b7d1a4747bb3b82192d58ea0f46be7c77626df77f3fc7a4b458c624b4c0736bfa6fcc042f01eb8ed7b7ad3cbc20c4be197d73a33" + } + ], + "purl": "pkg:npm/istanbul-lib-coverage@3.2.0", + "type": "library", + "bom-ref": "pkg:npm/istanbul-lib-coverage@3.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "istanbul-lib-instrument", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "733c14cf9db9ae43850c9c5f28aea661f22cf7304a20bcab650c63cf700186341785b845b126e8d475bf04572c0e77c9609580ead851479fd3518daab395bdf5" + } + ], + "purl": "pkg:npm/istanbul-lib-instrument@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/istanbul-lib-instrument@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "istanbul-lib-report", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c1c762fae00acdf8864f669b3e9299d21494d6b1908d44272efb58e4ca50ed00936a10f754e0e172ee3071f63562d9066830f9caec9d38b20d5ec7dbbacf513b" + } + ], + "purl": "pkg:npm/istanbul-lib-report@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/istanbul-lib-report@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "istanbul-lib-source-maps", + "version": "4.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f7b3c13091d1482421b704f28162fb248171a8cbcf00473bde8248ad93ad0dc5177096d2ce4da1fb09488c457bf0628ae5d10ef5da212371607e7cafccad657" + } + ], + "purl": "pkg:npm/istanbul-lib-source-maps@4.0.1", + "type": "library", + "bom-ref": "pkg:npm/istanbul-lib-source-maps@4.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "istanbul-reports", + "version": "3.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "af5fc3b2137829213bc561249d92cb2cb0e7e422726d5de7c34d554e4a7a0f98f32ee10b95c6ee75f8ff792405beb2ac26e4d50869de3ceee1a3cd8dc3dcf37f" + } + ], + "purl": "pkg:npm/istanbul-reports@3.1.4", + "type": "library", + "bom-ref": "pkg:npm/istanbul-reports@3.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-canvas-mock", + "version": "2.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2159d18b3fafe04627df274cfe9068f065bf27e9d4fc783980705040e51085d47235fbc79da6c1f117aa0112ced29fa4bd0821aabe15d2d03dd8217725c51246" + } + ], + "purl": "pkg:npm/jest-canvas-mock@2.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-canvas-mock@2.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-changed-files", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6ee04b3220727d6182a0cb0b2f3194512a409880069db476289a0c375d3388b84e2ef3f87b44a5ca91e701e97c8aa4174eb71b99f118f6c4aa69ee6c814b13bf" + } + ], + "purl": "pkg:npm/jest-changed-files@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-changed-files@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-circus", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0fde51ef1e54b65300e62058b0e1c515b303fc6540e11fca76ad797fbc585947d61c1b68f4d611b0ebe749ab9381d17ea200a9278b7228e5e15227f14bae6077" + } + ], + "purl": "pkg:npm/jest-circus@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-circus@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-cli", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "1dce8738ec18ab8ffbe3f73ad9d104debe5e971f308d8ab1634af41bf9c5acb0cf30546ee9103fbbca8834e224be1c46ee6310e4426c3867d1a48f0be9e15457" + } + ], + "purl": "pkg:npm/jest-cli@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-cli@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-config", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e6c02c8e6ead19db156d6f5a85c0a13c01429382259105249c7e40bca8ee2d34a570eff00992b215d9fb460d04902f8e1a058e0c4cb6843a560753e0cc7d0934" + } + ], + "purl": "pkg:npm/jest-config@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-config@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-diff", + "version": "27.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c27ae007e00594a363b9fa4b16e292fdbf9c4901c20a3d43df221641706d512afff4f9dbda59340ad4dadabbc77aedda7ae5f3aa6de31da2297ee8f79dc843d" + } + ], + "purl": "pkg:npm/jest-diff@27.3.1", + "type": "library", + "bom-ref": "pkg:npm/jest-diff@27.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-diff", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9b436f917e792c3b7d4f899cb531209d99377e6120dcd458badbcc3d633fd223e79058f6c08785e393b5ef5f1c3123853b5bc8364aa6c6a0fcbc4dfbb9311bab" + } + ], + "purl": "pkg:npm/jest-diff@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-diff@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-docblock", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae5ee194005e4ec458c4a8947e91eb42b1b87b6a1b3a24d059f3041f73f13e33ad76c7cb40ee11796499690ec31139b8c6ed3bae5e2afe1e3370a5f2534fcecd" + } + ], + "purl": "pkg:npm/jest-docblock@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-docblock@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-each", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "d457faa7e15b853fdb5d09c4a2e632d346e435263b394a5f21c99d97cbd9df50355146aeace2cf03c6bc05b24e17644350497026199e695ecb9da808fb953035" + } + ], + "purl": "pkg:npm/jest-each@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-each@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-environment-jsdom", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c506f9130b51e79e7ae46bf7d46f9e9ab5f0ed27d54c67de099234db8209753c4a70ad8b5404a31ecc1de29cb996a90b1760b70cc0da03430a014c0bc57ec7f" + } + ], + "purl": "pkg:npm/jest-environment-jsdom@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-environment-jsdom@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-environment-node", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "26de19527c5d3ac4c6c124407ca12713a05cc2c48f34e8a38f089fab9b0315203691eb275d3bcda8a1d880cd210eadf9e3d51ffcacdd5cd627e3031924f9452f" + } + ], + "purl": "pkg:npm/jest-environment-node@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-environment-node@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-get-type", + "version": "27.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8896a8bc8601d201d865437b35d8201535df07f7a6644017d8a17980af366739f02d54024488f0c18ab8c1c846e5bc6ff82cf26690bfa706a3cedc0d5824012" + } + ], + "purl": "pkg:npm/jest-get-type@27.3.1", + "type": "library", + "bom-ref": "pkg:npm/jest-get-type@27.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-get-type", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "d8a63de64b1849a2bb0cc056427e9d433de4a807f7041eb8cb6b9d786fa1bf829f48e6fdab071842cb5325cd4a09bb22c7ec0b65665837cb7b9f05f718e04b47" + } + ], + "purl": "pkg:npm/jest-get-type@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-get-type@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-haste-map", + "version": "27.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9587cd648cf03dc70325923293d233e6240c33f307e7a34821c1a3ec0154d58c80e1ec1614197ccfe60f26e48244c2ff79ed9c0addb2dd6e0add55cf4fa361ce" + } + ], + "purl": "pkg:npm/jest-haste-map@27.3.1", + "type": "library", + "bom-ref": "pkg:npm/jest-haste-map@27.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-haste-map", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec6824678170e0d15b3120d2a59c177818886f1fadff8ea7276422b643a3bf03d8c999aab6dbb64c34a298c1cfd4490f3a2e3151900dd5da04e55776e47e099e" + } + ], + "purl": "pkg:npm/jest-haste-map@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-haste-map@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-jasmine2", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "8edabb555c86f12a80a2b0e9029c22249226774576c2fd71cdd85e187446cae4fb8199ba806e3b404b243a5cec3753c6ffa58d682a39a66c0c1c37f70241b6a5" + } + ], + "purl": "pkg:npm/jest-jasmine2@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-jasmine2@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-leak-detector", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ce5df58032f7d4e963145dfb55e07a259c97e73ce184bb5d1fb1c34203be8a06945185c30dd9cf1dde24f6a71412dc72db03ee57e2c3943f360ed8d5322251d" + } + ], + "purl": "pkg:npm/jest-leak-detector@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-leak-detector@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-matcher-utils", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "cf6b93c7f4fa2c1682a0d58d156c0284b04a6314cc7060518c0b7ed926cff76f7f15f95bf5a6b92c699aeb9e11cfccfd1cbc6cad4698cf113d4ff10520bfcf03" + } + ], + "purl": "pkg:npm/jest-matcher-utils@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-matcher-utils@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-message-util", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "accc857b5fa39f20007fe347c137250f3d1e01a2e454374a5471c1156b015879e787961e24c3565acbfb01b1585df2b7a13aaf2fb5535a484d2eed635f6e03fa" + } + ], + "purl": "pkg:npm/jest-message-util@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-message-util@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-mock", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2b88ca6d8d5de043616eb1b6cee3d669006f0e5cbe899db2016f93d5f01337bf21734b089f09fbc1907c5ed94d9ef1ee83944cc15f3ded79b82ea98f3387b63a" + } + ], + "purl": "pkg:npm/jest-mock@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-mock@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-pnp-resolver", + "version": "1.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "a25578d5b292326f01767b8cb1ec13e23aa567cfb74c20110178d9193f637284a7adf527442aa732817d5c47a85a36f339ba6a17d751847423d176fd41d17aff" + } + ], + "purl": "pkg:npm/jest-pnp-resolver@1.2.2", + "type": "library", + "bom-ref": "pkg:npm/jest-pnp-resolver@1.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-regex-util", + "version": "27.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "49484fcc1b066b520a9bc871d85e0d7d3186a7eafb0572780ae96c675936908fa618b1be9711abb3beaf78dd8b17f694746a2c241cca81798d0b0f81cc5a810d" + } + ], + "purl": "pkg:npm/jest-regex-util@27.0.6", + "type": "library", + "bom-ref": "pkg:npm/jest-regex-util@27.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-regex-util", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e1b7caab6ce27bec75ea892a0d78d79fdaa5d81d1d49c42efaf7307b84ef155864572b962eaa59ad9b57c4b2d6a176209f413cec8eabe864581c5ef0159054be" + } + ], + "purl": "pkg:npm/jest-regex-util@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-regex-util@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-resolve-dependencies", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "41038e758e0f137f626b00e7e6bcdb21e3cd8a07dee41f59f751830f569eff134396ef6469ab7c410e442a73665563d5e78854771095c308fa60c811d8eec83a" + } + ], + "purl": "pkg:npm/jest-resolve-dependencies@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-resolve-dependencies@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-resolve", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "1450f2f3ff44e8257cdc831b0e97233a1ba60103c3c844e7536299d4ef7c0f04e7cfc00e06c5bf5efdc6c92af598e65d22d2d1fb30d9ec8fd475315b8123950b" + } + ], + "purl": "pkg:npm/jest-resolve@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-resolve@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-runner", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "83834fb0ce261423b014a5cee29fc7fe4586749a7d57c914458da55fc31ed9dae05ea1bbaeb640c7992ffb91fbc2db7f71d1488e1a98c751eb96a58768ebc369" + } + ], + "purl": "pkg:npm/jest-runner@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-runner@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-runtime", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a3b831c3719ff87d881adf1fbf4462c84d7eafcdc524146bba803e157ae51f0eb113206c53cba003a20f7d3755c80d30f070a5a5b2be0c62711f9f54acd331f0" + } + ], + "purl": "pkg:npm/jest-runtime@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-runtime@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-serializer", + "version": "27.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ed19d54af44182eddb1ace2b247ea6803e26fac135626371bc139c33f6d2d53e11f2883353667ff18d9e24840c3ed3d424a0e5699fbbc5e673d237a76d05ec4" + } + ], + "purl": "pkg:npm/jest-serializer@27.0.6", + "type": "library", + "bom-ref": "pkg:npm/jest-serializer@27.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-serializer", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d90b2a3a888c4ed5aa94c69b819704c3324cce0094b86b7798cf7633831c55405c0b79203b25fab971ba8263e24bbd30eb5a2ae0bac23fd0ac3128c82b75fef" + } + ], + "purl": "pkg:npm/jest-serializer@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-serializer@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-snapshot", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c98ca45c8e5ad08df5c57ebb9a078bc350d9d1b241fa0a6ae48a52b82028c838b4f8186053f448acbf914f30e690d4dc86f0c558a3fc969fb0ff8d99deeb39b0" + } + ], + "purl": "pkg:npm/jest-snapshot@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-snapshot@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-util", + "version": "27.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f1f83e89f107dc60ebc8b41ffde299724d4312cd98b953c108c39a1d0c5554b990c25fc20e15b3aef0a14d7e1e7cb6711abc3e000d26497bfbf1ccb2b41b7fbb" + } + ], + "purl": "pkg:npm/jest-util@27.3.1", + "type": "library", + "bom-ref": "pkg:npm/jest-util@27.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-util", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2afda8ffc8cdbd7d4c434286b70e3cd04ff0e1f0420ce9c7ebee8399e2a2e8b654225280e64c18d1835d9736964e2560c6a02a8a4d75432c4338a939e3768a5f" + } + ], + "purl": "pkg:npm/jest-util@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-util@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-validate", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6190d962d0b61398e235b43077148d52d514e9fc1ab277da536ab2702fcece20116ea846f9029bf911a02912e75883883ce9edc24fa90cd11a30921b449c205" + } + ], + "purl": "pkg:npm/jest-validate@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-validate@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-watcher", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "cfaefa4ae0fa67ca3ca9b9841a1a0450538cd7e8df1222f70d71caff1804886d84c8d61f146eb48e5b9672ea58e9d0138df12c290ba26d1792d5d8c89d09e857" + } + ], + "purl": "pkg:npm/jest-watcher@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-watcher@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-worker", + "version": "26.6.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "2966155757388be8db3296810be53efb855ad1ca7c3a2b14d7ce68ef74f5be8f7d86a8bbc3cb5225f51762cc30aaaae3cf0c5ae8aa512b9e1684fbf07f9c3a3d" + } + ], + "purl": "pkg:npm/jest-worker@26.6.2", + "type": "library", + "bom-ref": "pkg:npm/jest-worker@26.6.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-worker", + "version": "27.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "92cdd60b3b2265a38f265fe832c0e369fd134624afedcb4d82cd05a91af69c046ca2fcfa0165b2e282c497072ab864b3ebdd83ce0650ac22d270f36ce58942e2" + } + ], + "purl": "pkg:npm/jest-worker@27.3.1", + "type": "library", + "bom-ref": "pkg:npm/jest-worker@27.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest-worker", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "eefba1f3957971d0e87cfcb19f9f27acf8c192d668d2ef71d60f16b6342897e8d90da13e7e137e708bd38f5d469dd067327c9fad4386d6c650c427632a1f832a" + } + ], + "purl": "pkg:npm/jest-worker@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/jest-worker@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jest", + "version": "27.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "536017d0081019de44cccb2266962df07c99fa7495221e6e8d0f423e9f4441924c8d7222499a49370799974b306ad291a2a1d680628cdf3692c26e196b3f3b9e" + } + ], + "purl": "pkg:npm/jest@27.3.1", + "type": "library", + "bom-ref": "pkg:npm/jest@27.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jquery", + "version": "3.6.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "255cc047f02306f56dd81998871442498cac0ec3dcb2c7664c59f3c8b12db3da8dc268e6bb825300c62e6c47f054e4b0a50d48d6c28a15cc616422366ee7ab7f" + } + ], + "purl": "pkg:npm/jquery@3.6.0", + "type": "framework", + "bom-ref": "pkg:npm/jquery@3.6.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "js-levenshtein", + "version": "1.1.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f6041d75619b6b46a63812741c2d7e51877ef7cdb2b86a50b5156ec3ecc0612f682d702d7b7139ebe8399f1d9792d2cdab4c78d44cc3077c6ee03bc492770fa" + } + ], + "purl": "pkg:npm/js-levenshtein@1.1.6", + "type": "library", + "bom-ref": "pkg:npm/js-levenshtein@1.1.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "js-sha3", + "version": "0.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "805d5c46b1e123335f4e873cd363fcd3437c3e95d2f9ebcb2d77ec569a30aa600547dbb06e2f3d5af5e0d90b293a65cbf102fce89e13d44a45bbec94930258dd" + } + ], + "purl": "pkg:npm/js-sha3@0.8.0", + "type": "library", + "bom-ref": "pkg:npm/js-sha3@0.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "js-tokens", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "45d2547e5704ddc5332a232a420b02bb4e853eef5474824ed1b7986cf84737893a6a9809b627dca02b53f5b7313a9601b690f690233a49bce0e026aeb16fcf29" + } + ], + "purl": "pkg:npm/js-tokens@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/js-tokens@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "js-yaml", + "version": "3.14.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a24307ece5d727b62b37d3a4dff497ae7bb8897f723a4fb6e67a97e22992da7a6ebd36039a8fd0119a2ac199186880e4de356f04e4ce20480485a2ceca7052f6" + } + ], + "purl": "pkg:npm/js-yaml@3.14.1", + "type": "library", + "bom-ref": "pkg:npm/js-yaml@3.14.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "js-yaml", + "version": "4.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c29c59b3d368c596891122462194f20c4698a65d0529203e141f5a262c9e98a84cc24c5083ade1e13d4a2605061e94ea3c33517269982ee82b46326506d5af44" + } + ], + "purl": "pkg:npm/js-yaml@4.1.0", + "type": "library", + "bom-ref": "pkg:npm/js-yaml@4.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jsdom", + "version": "16.7.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "bbd4a67361b55124ad33eb3fc75aeee52c6b97a98f6026c1c86d54fe1526a9a56c9b8b5b3724bb0a270e491cae190619853bb487ce2a919650fc8f9dce2cd257" + } + ], + "purl": "pkg:npm/jsdom@16.7.0", + "type": "library", + "bom-ref": "pkg:npm/jsdom@16.7.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jsesc", + "version": "2.5.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "398bbb5c4ce39024370b93ecdd0219b107cda6aa09c99640f7dc1df5a59dd39342b42e6958e91284ada690be875d047afc2cb695b35d3e5641a6e4075c4eb780" + } + ], + "purl": "pkg:npm/jsesc@2.5.2", + "type": "library", + "bom-ref": "pkg:npm/jsesc@2.5.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jsesc", + "version": "0.5.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + } + ], + "purl": "pkg:npm/jsesc@0.5.0", + "type": "library", + "bom-ref": "pkg:npm/jsesc@0.5.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jshint", + "version": "2.13.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "1ceddba2c2fce1bdaa5aa234abe9294ff3a9449c28d11e22be09b168ef38f3e6e8d74adce744a43e7aedc12157b6d5b4ca6e27a7c8db26f2f0939373881ee323" + } + ], + "purl": "pkg:npm/jshint@2.13.4", + "type": "library", + "bom-ref": "pkg:npm/jshint@2.13.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "json-parse-even-better-errors", + "version": "2.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c72170ca1ae8fc91287fa1a17b68b3d8d717a23dac96836c5abfd7b044432bfa223c27da36197938d7e9fa341d01945043420958dcc7f7321917b962f75921db" + } + ], + "purl": "pkg:npm/json-parse-even-better-errors@2.3.1", + "type": "library", + "bom-ref": "pkg:npm/json-parse-even-better-errors@2.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "json-pointer", + "version": "0.6.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "bcb59c29b39a5e53be8ef472e2a35df932354143d9cdf263d6da49def0170f2721e5725ff777eda5429ee69282af3c8823080125c39c0954547ea40fdb969f07" + } + ], + "purl": "pkg:npm/json-pointer@0.6.2", + "type": "library", + "bom-ref": "pkg:npm/json-pointer@0.6.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "json-schema-traverse", + "version": "0.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5b6c21f9742614e53f0b704861ba1ec727cf075ee5b7aac237634cce64529f6441dca5688753f271ce4eb6f41aec69bfe63221d0b62f7030ffbce3944f7b756" + } + ], + "purl": "pkg:npm/json-schema-traverse@0.4.1", + "type": "library", + "bom-ref": "pkg:npm/json-schema-traverse@0.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "json-schema-traverse", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "34cf3f3fd9f75e35e12199f594b86415a0024ce5114178d6855e0103f4673aff31be0aadaa9017f483b89914314b1d51968e2dab37aa6f4b0e96bb9a3b2dddba" + } + ], + "purl": "pkg:npm/json-schema-traverse@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/json-schema-traverse@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "json-stable-stringify-without-jsonify", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "05d6e8cbe97bb40dce196e858f21475a43f92ee0728f54e4df72e3caad1ac72cdd93dfff2528b6bb77cfd504a677528dc2ae9538a606940bbcec28ac562afa3f" + } + ], + "purl": "pkg:npm/json-stable-stringify-without-jsonify@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/json-stable-stringify-without-jsonify@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "json-stringify-safe", + "version": "5.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "642960e80698bda9af60413cd9ddc8c9ddef49222343ea1d823693cd1b8edeceeda0274529cce86f68b4cc287b244f245a7d7bcaf016854571bea1b051a96c44" + } + ], + "purl": "pkg:npm/json-stringify-safe@5.0.1", + "type": "library", + "bom-ref": "pkg:npm/json-stringify-safe@5.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "json5", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "83531630b062cfc14a8b57b8c3453254bdf0fa225c7960050406819e718a3a935ae5ff132e4b646eb7b5facea8202c9d5809be1d15064e623efffc6fda1bd760" + } + ], + "purl": "pkg:npm/json5@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/json5@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "json5", + "version": "2.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "d61a8b14c4ab187447c5abfdabd80d8c9e445f39c8c4654ed3dc5046bc2995c4bcaacdbca59f2cf21ba96409aa0f065499567641bda39f23ce59c0c7f26f1d94" + } + ], + "purl": "pkg:npm/json5@2.2.1", + "type": "library", + "bom-ref": "pkg:npm/json5@2.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jsx-ast-utils", + "version": "3.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b8fe6fbbcc5fcb617d03a2c60b6d8a3bb7b6fef1934b53213fed7c7fef993657f43a16b16dcf67204c0702c7a39492b2cdf67353950885ee48b58922b5c66764" + } + ], + "purl": "pkg:npm/jsx-ast-utils@3.2.1", + "type": "library", + "bom-ref": "pkg:npm/jsx-ast-utils@3.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "jsx-ast-utils", + "version": "3.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f33bd96e3fa2f4c64c7084824c4c9429668fde78deb42b4f231dd7b17c3e7af401b178dba0e9491eb5e1d712144ea0cf1a47b11c52839098885c2508dcbaaf1" + } + ], + "purl": "pkg:npm/jsx-ast-utils@3.3.0", + "type": "library", + "bom-ref": "pkg:npm/jsx-ast-utils@3.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "kind-of", + "version": "6.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "75c4b5ba5fbdb66783f794fec76f3f7a12e077d98435adcbb2f0d3b739b7bf20443bb44fa6dbc00feb78e165576948d305172ba45785942f160abb94478e7a87" + } + ], + "purl": "pkg:npm/kind-of@6.0.3", + "type": "library", + "bom-ref": "pkg:npm/kind-of@6.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "kleur", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "793233955392511f89c5d0c57a911870132d67d42a75e7feae7cd675166e31b3b2c2ee6d3b6c3637baea8e800d67993dbf2c212fa06bd55463508813431e04f3" + } + ], + "purl": "pkg:npm/kleur@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/kleur@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "kleur", + "version": "4.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "a3e34efbc5ab462404138ffb9f044984dd475a9566266e75d690475313cbb69d015084b3941a653916129937250a726f42adad2aefec825df156991ced95ae41" + } + ], + "purl": "pkg:npm/kleur@4.1.5", + "type": "library", + "bom-ref": "pkg:npm/kleur@4.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "known-css-properties", + "version": "0.27.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b8c0a3ebe859603a1f7eebc02631403f3e7a13dba8a3014799392a46d46ae56c82e50e82bbf7d364a350a57fd16f30a10582cb977968f028c56410195eaf6a16" + } + ], + "purl": "pkg:npm/known-css-properties@0.27.0", + "type": "library", + "bom-ref": "pkg:npm/known-css-properties@0.27.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "language-subtag-registry", + "version": "0.3.21", + "hashes": [ + { + "alg": "SHA-512", + "content": "2f422ac252178e294155560a153dfb5fd221d75526e4d125f5c6c922e53f4b03ffcc41006c13ce9c479ebb154c7f8e727564110d037736a73de8e81b1f52be3e" + } + ], + "purl": "pkg:npm/language-subtag-registry@0.3.21", + "type": "library", + "bom-ref": "pkg:npm/language-subtag-registry@0.3.21", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "language-tags", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-1", + "content": "d321dbc4da30ba8bf3024e040fa5c14661f9193a" + } + ], + "purl": "pkg:npm/language-tags@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/language-tags@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "leven", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "aac75af87f234da51a37fc79bf35b6af373ef11c384c043fe0a8c1e3a2302b9547f8895579e7a37bf128651a625ef22a8c580af3841f7ea3f3b462375412c6d4" + } + ], + "purl": "pkg:npm/leven@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/leven@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "levn", + "version": "0.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f9b4f6b87e04e4b184ee1fe7ddebdc4bfb109495c2a48a7aca6f0e589e5e57afbaec3b2a97f2da693eea24102ddabcdfa1aff94011818710e2c7574cb7691029" + } + ], + "purl": "pkg:npm/levn@0.4.1", + "type": "library", + "bom-ref": "pkg:npm/levn@0.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "levn", + "version": "0.3.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "3b09924edf9f083c0490fdd4c0bc4421e04764ee" + } + ], + "purl": "pkg:npm/levn@0.3.0", + "type": "library", + "bom-ref": "pkg:npm/levn@0.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lilconfig", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5a6265d9b531cf030e66fb12cdf1a6fd0beddaf18995ddab0d48f3804c84dbb70adf6f068b263f21eba1f558c22900b0a4aac2332b787ba10f8f757f8b43d12" + } + ], + "purl": "pkg:npm/lilconfig@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/lilconfig@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lines-and-columns", + "version": "1.1.6", + "hashes": [ + { + "alg": "SHA-1", + "content": "1c00c743b433cd0a4e80758f7b64a57440d9ff00" + } + ], + "purl": "pkg:npm/lines-and-columns@1.1.6", + "type": "library", + "bom-ref": "pkg:npm/lines-and-columns@1.1.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "loader-runner", + "version": "4.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "dd1ff533ec92de3e68bbcd0c7b9f63ec5f4832ce0f5ecdd5a91ae6d1353701b28fc659a9a18d5336c70957fa06257a3ca826ad1464df0db63a5ba8a918e6177e" + } + ], + "purl": "pkg:npm/loader-runner@4.3.0", + "type": "library", + "bom-ref": "pkg:npm/loader-runner@4.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "loader-utils", + "version": "2.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "c57aa95e820d7c5860b9af718aa0fc7cf147824a2ad669a6a44f765a50db9bdacd45dfc46d16fe1aa7fdd3c4f60cc7ee1e38c9964b222b645b1d539d0ff32a4b" + } + ], + "purl": "pkg:npm/loader-utils@2.0.4", + "type": "library", + "bom-ref": "pkg:npm/loader-utils@2.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "locate-path", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b7b870f6923e5afbb03495f0939cd51e9ca122ace0daa4e592524e7f4995c4649b7b7169d9589e65c76e3588da2c3a32ea9f6e1a94041961bced6a4c2a536af2" + } + ], + "purl": "pkg:npm/locate-path@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/locate-path@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "locate-path", + "version": "6.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "88f64ae9e6236f146edee078fd667712c10830914ca80a28a65dd1fb3baad148dc026fcc3ba282c1e0e03df3f77a54f3b6828fdcab67547c539f63470520d553" + } + ], + "purl": "pkg:npm/locate-path@6.0.0", + "type": "library", + "bom-ref": "pkg:npm/locate-path@6.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.curry", + "version": "4.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "feed78a571af88b6b0798e49234214ce0cc5d89e8d7bc20dcb30198c899caf28e0919f9e6ebb81c72dbf25a38e913a9271d75c62d6a48e149a79e995f25474b4" + } + ], + "purl": "pkg:npm/lodash.curry@4.1.1", + "type": "library", + "bom-ref": "pkg:npm/lodash.curry@4.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.debounce", + "version": "4.0.8", + "hashes": [ + { + "alg": "SHA-1", + "content": "82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + } + ], + "purl": "pkg:npm/lodash.debounce@4.0.8", + "type": "library", + "bom-ref": "pkg:npm/lodash.debounce@4.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.difference", + "version": "4.5.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "9ccb4e505d486b91651345772885a2df27fd017c" + } + ], + "purl": "pkg:npm/lodash.difference@4.5.0", + "type": "library", + "bom-ref": "pkg:npm/lodash.difference@4.5.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.flow", + "version": "3.5.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7dfdc15ffb528a8a3e5e88d7e0c3ac38c849c349d9a14105d35d4b5fc83c77782f8d56f177cf5c0a2a380425eba278f1713508254a2a284500fa7e02aafbd13f" + } + ], + "purl": "pkg:npm/lodash.flow@3.5.0", + "type": "library", + "bom-ref": "pkg:npm/lodash.flow@3.5.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.isequal", + "version": "4.5.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "415c4478f2bcc30120c22ce10ed3226f7d3e18e0" + } + ], + "purl": "pkg:npm/lodash.isequal@4.5.0", + "type": "library", + "bom-ref": "pkg:npm/lodash.isequal@4.5.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.memoize", + "version": "4.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "b7b8fe3739a09d0cd30185dcb0760b8229a5b4e5753171ed94e59fe868cbf4a8fc18ae45227c39268b71bdb3acf88bd5d7f0f3a34e3f7c219f2d5b3b6976f802" + } + ], + "purl": "pkg:npm/lodash.memoize@4.1.2", + "type": "library", + "bom-ref": "pkg:npm/lodash.memoize@4.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.merge", + "version": "4.6.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "d0aa63a97455beb6320ac5f5b3047f5d32b4bdae9542440ce8c368ecfa96efb0728c086801103c11facfd4de3e2a52a3f184b46540ad453fd852e872603ba321" + } + ], + "purl": "pkg:npm/lodash.merge@4.6.2", + "type": "library", + "bom-ref": "pkg:npm/lodash.merge@4.6.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.mergewith", + "version": "4.6.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "18ade0e513d959345278b4a980ff1786b6bea678c10b9eaaf456587b577944ddd3277e5d6e41b2dd8a8148c6f20ab95b8be08cf59dc9939c932fb442b2a6e8c9" + } + ], + "purl": "pkg:npm/lodash.mergewith@4.6.2", + "type": "library", + "bom-ref": "pkg:npm/lodash.mergewith@4.6.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.set", + "version": "4.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "e2134f3798e59bf37f1cb3023b8deff015caabd67b41d00673f546ad10fad70f2037d83fea317d0382f5a5b52004b09f7e2d30f55b177d33a28f9c7c893c85be" + } + ], + "purl": "pkg:npm/lodash.set@4.3.2", + "type": "library", + "bom-ref": "pkg:npm/lodash.set@4.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.truncate", + "version": "4.4.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "5a350da0b1113b837ecfffd5812cbe58d6eae193" + } + ], + "purl": "pkg:npm/lodash.truncate@4.4.2", + "type": "library", + "bom-ref": "pkg:npm/lodash.truncate@4.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash.uniq", + "version": "4.5.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5f05a5d077daf277d765483be7bc8d25bf17cb2656006735e89946332cab5478e42f38fe698aa016b86b6b8567aa6972bd861a0cfe2c89739015f977ec5f71d" + } + ], + "purl": "pkg:npm/lodash.uniq@4.5.0", + "type": "library", + "bom-ref": "pkg:npm/lodash.uniq@4.5.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lodash", + "version": "4.17.21", + "hashes": [ + { + "alg": "SHA-512", + "content": "bf690311ee7b95e713ba568322e3533f2dd1cb880b189e99d4edef13592b81764daec43e2c54c61d5c558dc5cfb35ecb85b65519e74026ff17675b6f8f916f4a" + } + ], + "purl": "pkg:npm/lodash@4.17.21", + "type": "library", + "bom-ref": "pkg:npm/lodash@4.17.21", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "longest-streak", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f518bea3425881e8536950410e832a225f065ed6d683bd753b7b2b7ed707859d1daa7113a8b6a820ad31d7b7d4c3dac54a52bfd0d96c29ed00861ca5e695c4da" + } + ], + "purl": "pkg:npm/longest-streak@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/longest-streak@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "loose-envify", + "version": "1.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "972bb13c6aff59f86b95e9b608bfd472751cd7372a280226043cee918ed8e45ff242235d928ebe7d12debe5c351e03324b0edfeb5d54218e34f04b71452a0add" + } + ], + "purl": "pkg:npm/loose-envify@1.4.0", + "type": "library", + "bom-ref": "pkg:npm/loose-envify@1.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lowlight", + "version": "1.20.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f0ab63fa9ac46f546808f9043ab3cc61437f9c282007ba8059eddaecea4c8d6424877976443e7029143ea3c43c62e23d446ff1b3de7069a23f13aca6ffb36c4f" + } + ], + "purl": "pkg:npm/lowlight@1.20.0", + "type": "library", + "bom-ref": "pkg:npm/lowlight@1.20.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lru-cache", + "version": "6.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "268e9d274e029928eece7c09492de951e5a677f1f47df4e59175e0c198be7aad540a6a90c0287e78bb183980b063df758b615a878875044302c78a938466ec88" + } + ], + "purl": "pkg:npm/lru-cache@6.0.0", + "type": "library", + "bom-ref": "pkg:npm/lru-cache@6.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lunr", + "version": "2.3.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd35370da65a17746df6b84ddee04c1900f7743dbfbc542a9ef6420efe1d97988ecead88650a93c6ef74af813927e9cfef42778a5a950ab6e1a3679669e5bc3b" + } + ], + "purl": "pkg:npm/lunr@2.3.9", + "type": "library", + "bom-ref": "pkg:npm/lunr@2.3.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "lz-string", + "version": "1.4.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "c0d8eaf36059f705796e1e344811cf4c498d3a26" + } + ], + "purl": "pkg:npm/lz-string@1.4.4", + "type": "library", + "bom-ref": "pkg:npm/lz-string@1.4.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "make-dir", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "83715e3f6d0b3708402dbffa0b3e837781769e0cded23cfbb5bceb0f6c0057ea3d15e3477b8acbfb22b699dd09fdf8927f5b1ad400e15ea8b9fa857038cfde1b" + } + ], + "purl": "pkg:npm/make-dir@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/make-dir@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "makeerror", + "version": "1.0.12", + "hashes": [ + { + "alg": "SHA-512", + "content": "266a82bd4866b78de669d9691731b8050cc6d99de6eadbd00cd29d0a56673b755b22e749626c6c4f414d24c7a2076f894d295341349b53c41d7ac566c097262e" + } + ], + "purl": "pkg:npm/makeerror@1.0.12", + "type": "library", + "bom-ref": "pkg:npm/makeerror@1.0.12", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "map-obj", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + } + ], + "purl": "pkg:npm/map-obj@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/map-obj@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "map-obj", + "version": "4.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "85d375c15ad96dbdbd7811a21a325b78ff096ca8ead6eae41c9fcb20ffcd638f0c6754155d4b10055d46d73bd81479f55c4d3a7308c1b0e2362b75259e3d585d" + } + ], + "purl": "pkg:npm/map-obj@4.3.0", + "type": "library", + "bom-ref": "pkg:npm/map-obj@4.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mark.js", + "version": "8.11.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "180f1f9ebef8b0e638e4166ad52db879beb2ffc5" + } + ], + "purl": "pkg:npm/mark.js@8.11.1", + "type": "library", + "bom-ref": "pkg:npm/mark.js@8.11.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "markdown-table", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "67534bdd36f533dc07e17112b020c492c5a829376551a7ca738a6dd064708d4c97682159f9d7378367aba81eb39b7b330362144a2ed59cf23ea3ff639f187d87" + } + ], + "purl": "pkg:npm/markdown-table@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/markdown-table@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "marked", + "version": "4.0.17", + "hashes": [ + { + "alg": "SHA-512", + "content": "59f93401338ae623f1338a6dace46415e9aaae8cf4643c69e4c59f600ec7fc5fb03b5ecd456579629c62ea9de0d979b0d9b29e8983a5ea85672c72b1040d1584" + } + ], + "purl": "pkg:npm/marked@4.0.17", + "type": "library", + "bom-ref": "pkg:npm/marked@4.0.17", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "match-sorter", + "version": "6.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9b1c9b6e8de93cdb80f99b825219b96f03645eb2536ec9395566d1e708b0cff182e8b2227a00469f6c373b4f141bf8dd6d82e29f0e757d2439c4d53553732007" + } + ], + "purl": "pkg:npm/match-sorter@6.3.1", + "type": "library", + "bom-ref": "pkg:npm/match-sorter@6.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mathml-tag-names", + "version": "2.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "00f30111a9e3c9b68fcd4adfa94d08314e48d00b3028c1fb93c3932ecd2fbd5e0a669131913918f3b9d1ff3a5bb933e3fa0011a29eda1946e5d75a670df5bac6" + } + ], + "purl": "pkg:npm/mathml-tag-names@2.1.3", + "type": "library", + "bom-ref": "pkg:npm/mathml-tag-names@2.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-definitions", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ad0f86bfb987b6dc47381c767641781d64e0f8413e511efca6d4160f29733ca690b9519d1b81c8a18dd2ad2fe90a9f349d9d3882b785bd76d51474feb9fd0955" + } + ], + "purl": "pkg:npm/mdast-util-definitions@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-definitions@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-find-and-replace", + "version": "2.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "4a86f19105c501d7786f95a611a926915a21d7c89c8d04711b2e4e5930b382c2d19b516efca0adc03d472104ac9aae59463547d0487083afc59f7c48524fa72b" + } + ], + "purl": "pkg:npm/mdast-util-find-and-replace@2.2.1", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-find-and-replace@2.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-from-markdown", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "899272caf283d7e2bb417d5be635dd13b49ce5db684ebcb5bf3576f146597bc675c559c1fdccca9ed27b640906d2d00da919c117aa77a7b1a9535cb5f434dfd9" + } + ], + "purl": "pkg:npm/mdast-util-from-markdown@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-from-markdown@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-gfm-autolink-literal", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "173a2990e778c534c17865e15d2054d0e0830e1e65523dab77e1d0a86f762ddfa32f896951f817d804f63870153fd6847832a9ec6f767eea28499718240ddc46" + } + ], + "purl": "pkg:npm/mdast-util-gfm-autolink-literal@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-gfm-autolink-literal@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-gfm-footnote", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a7e3eb625930f437824644d5c3576e5aa3d11d7e98c21d8134a2507196c2c00b8fff9f41d0b93d91a92e01deca6d0a6b54ee06cdd5bc792e7ef80f4f512a88cb" + } + ], + "purl": "pkg:npm/mdast-util-gfm-footnote@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-gfm-footnote@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-gfm-strikethrough", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "4ffe035475dcba31fa8f1d72aa9700618c1dfb3e65018330e0bb3aca14df6cc32d0add0f1d8e2011f856f7e94ab0b06dca15062912337140361404d5aa7bcf0c" + } + ], + "purl": "pkg:npm/mdast-util-gfm-strikethrough@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-gfm-strikethrough@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-gfm-table", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "b8747e7ea16adc8bc1dd1778fa4cd75bc766a71521be009065ea7a29d8ec2cae0eea678ae5d61911ac8bb48c4dbacd573b781f8df70815ef1aecbd076511a06a" + } + ], + "purl": "pkg:npm/mdast-util-gfm-table@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-gfm-table@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-gfm-task-list-item", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "299e0a2e63dd0015ceb1f9cce891d4223c44bdcc76ba593ae7a67fe016a5c34ef5ff9aa09e1cfe1f5b86b5fdb32069eb9ef0c2f31478163f6e29b8c014634878" + } + ], + "purl": "pkg:npm/mdast-util-gfm-task-list-item@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-gfm-task-list-item@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-gfm", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e36c8705b7d62058ac6807d5d5e8b195a6dbb1aeaaeef1de48f63e720f810635f9d4cf3186031a72a1fd83a4dfb41ffdf9891c234a285789dc7eb26c9739bf45" + } + ], + "purl": "pkg:npm/mdast-util-gfm@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-gfm@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-to-hast", + "version": "12.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "6b6d71a3149e7f597c5611f14b50e7ca2a33ea0aeb264a1a094806ccc0ffedd587bdba185f7556e777ac4547c1e6d813cb3e18a2cd67db948f723df9749aa602" + } + ], + "purl": "pkg:npm/mdast-util-to-hast@12.2.4", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-to-hast@12.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-to-markdown", + "version": "1.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ead512b38afe28ae091934e243b15f1e654e683acb4093e6a630fac0f3251c65155e81bd5637378c878ffaec815917fc725c01d9b94cf96efe2ab94c6109dfb4" + } + ], + "purl": "pkg:npm/mdast-util-to-markdown@1.3.0", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-to-markdown@1.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdast-util-to-string", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9f8572a73fc3660c28d223072d02f8f5d273969ed8b4024ff8dd3b3191e98cf7ffe5726e1d45acb6f885e0c9f68c4891fc6366b67451aa7c2c5c4c64de281f14" + } + ], + "purl": "pkg:npm/mdast-util-to-string@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/mdast-util-to-string@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdn-data", + "version": "2.0.14", + "hashes": [ + { + "alg": "SHA-512", + "content": "767eb0774bb0e46b1db303c57ec80ca79352074fda0dee9f2bde18255fc02436172fa1d52d606cc5eabb8ecec077e994d8af4b025c2993a90dd83e66c023d5a3" + } + ], + "purl": "pkg:npm/mdn-data@2.0.14", + "type": "library", + "bom-ref": "pkg:npm/mdn-data@2.0.14", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mdn-data", + "version": "2.0.30", + "hashes": [ + { + "alg": "SHA-512", + "content": "19aa96592856e24bff1bd204b9c592701c7d1b5fefb056592543beb43dba33c27ccf72b0e510d08daa197b4dd8002960792fd258f39c6f89e41414c48b90d410" + } + ], + "purl": "pkg:npm/mdn-data@2.0.30", + "type": "library", + "bom-ref": "pkg:npm/mdn-data@2.0.30", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "memoize-one", + "version": "5.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "cd88b0b5951c6325caa3f9e9f7a00664072493e1565ac51d2777071869a577bf8086f716990c86098521d6173843fa643a16fae5d411fe9a82c8ad1c39a1f3e1" + } + ], + "purl": "pkg:npm/memoize-one@5.2.1", + "type": "library", + "bom-ref": "pkg:npm/memoize-one@5.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "meow", + "version": "10.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "fddf8f43818a986bccf4179efc33daf33de65ecfe992f244d8a11386781534eaad9a58c2e8aecd30fc6d73625e6584e6a566fd93f4e6c6378bd7c7b3de1eef0b" + } + ], + "purl": "pkg:npm/meow@10.1.5", + "type": "library", + "bom-ref": "pkg:npm/meow@10.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "merge-stream", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "69bbffa8e72e3df9375113df0f39995352ca9aec3c913fb49c81ef2ab2a016bc227e897f76859c740e19aac590f0436b14a91debb31fa68fcba2f6c852c6eddf" + } + ], + "purl": "pkg:npm/merge-stream@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/merge-stream@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "merge2", + "version": "1.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f2aed51203095b827cb5c7d53f2f20d3d35c43065d6f0144aa17bf5999282338e7ff74c60f0b4e098b571b10373bcb4fce97330820e0bfe3f63f9cb4d1924e3a" + } + ], + "purl": "pkg:npm/merge2@1.4.1", + "type": "library", + "bom-ref": "pkg:npm/merge2@1.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-core-commonmark", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "2be3e4253c6a8c57d23647c0869e0607e7193df41de9dc6d4d79dff918d9395ed3e041179ef83339c9e9f9e4939a91a4f5dd52f6c2fafe5aab812367fecd0764" + } + ], + "purl": "pkg:npm/micromark-core-commonmark@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/micromark-core-commonmark@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-extension-gfm-autolink-literal", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b7766bd4d21b5ac1f5840fc68730c033015a7f17467ed1b3e1dd8adb4cf3cbd6fe18025099a72e6b04ee69d0b3d8899a34cc5564a1887bbc353bc904a208c8e" + } + ], + "purl": "pkg:npm/micromark-extension-gfm-autolink-literal@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/micromark-extension-gfm-autolink-literal@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-extension-gfm-footnote", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "13f7e63e60ea2e23143fc98b27c35b2562786d3c3ab52f851104bc09cb83b59a482ee39bda48cba8f11e01e3c5d5d8d744e1d70a133fc0f270d224b890709c22" + } + ], + "purl": "pkg:npm/micromark-extension-gfm-footnote@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/micromark-extension-gfm-footnote@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-extension-gfm-strikethrough", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "fef8c753f95a9668d9093e71b7b09c1d5246abcb18466f34cf6e2a00a5f3687cde9bfc6c0d86f6c8b2fe34d55b62f9a92f1dceed260fb862f9a73bac2fd08b21" + } + ], + "purl": "pkg:npm/micromark-extension-gfm-strikethrough@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/micromark-extension-gfm-strikethrough@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-extension-gfm-table", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "c4067c2755fd5bd2b725325350bec6eb048a869d99607ac5939a89818ff8077dec709cc4da4a5f44bea88b0fef7894dbb7b8e233fd6b9e02e538a3d6af51bebe" + } + ], + "purl": "pkg:npm/micromark-extension-gfm-table@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/micromark-extension-gfm-table@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-extension-gfm-tagfilter", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "4f2ea9b0b01c0236e845afd42946db51cc23540bf9a65c66a544f2d970bfde72452f7ede1de8fc8eb1eb47392a7298a92658ae047df40d3b3bfb7c2a35c41454" + } + ], + "purl": "pkg:npm/micromark-extension-gfm-tagfilter@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/micromark-extension-gfm-tagfilter@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-extension-gfm-task-list-item", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "3e9cac2b64b543fe555e2ef62086a96e2fe39626a2385cefed31c7e1a9b05de6172eade5d6ea3cff605ed00735ac4c0adb431012c187da5b4064b358d8a23fd1" + } + ], + "purl": "pkg:npm/micromark-extension-gfm-task-list-item@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/micromark-extension-gfm-task-list-item@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-extension-gfm", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a76b068da8cb6b489888641d4f4a1e95a85162d316bcb8f2f09f4b382c73210b2594c0862dbb0b5be35cf8de2f8b4da371126f79d549ebc7237a52883ba6e90c" + } + ], + "purl": "pkg:npm/micromark-extension-gfm@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/micromark-extension-gfm@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-factory-destination", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "794040ed1b35ff1b5356e9fd4e65778237cfcf6c04c202b9479c5c6c833965802dbc617a264c9a0ec8f46a0c7cbab5e73b7d6d10ee9483cde2547ded75e74b9f" + } + ], + "purl": "pkg:npm/micromark-factory-destination@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-factory-destination@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-factory-label", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "093230c653a753b744b215c343e76caf69fecb1a4fd3e7e7dbbd69bb46f00c84bcbaa7c572e997a63e662e7de1482f22c36314afa1b1f0470a9e0d5d0fb8ba86" + } + ], + "purl": "pkg:npm/micromark-factory-label@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/micromark-factory-label@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-factory-space", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a949aab38923f5ae7206793724c2f28ed59837a3337dcc7cb897e2e5702f7819e20debe665ab1d1816dae5be10b2f45c0249af1a8e400a64949b21a22932d97b" + } + ], + "purl": "pkg:npm/micromark-factory-space@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-factory-space@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-factory-title", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce2972f8daf8c85aa030644a2e94d5b0d9792f83ccbb8f397c6143390250065d8d1698c6b5ed5ef3acc2d1d6bddf07fdee3adce3ed86d8642e7453079f7217f8" + } + ], + "purl": "pkg:npm/micromark-factory-title@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/micromark-factory-title@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-factory-whitespace", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "431eee1326a153596dd519ec102062b846dfafd20d8d04c66ba12bafe805de0d13c78604be23dbaaa18a36ffcdac1684edd547767d5b55928cfe7e48fc16a4ec" + } + ], + "purl": "pkg:npm/micromark-factory-whitespace@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-factory-whitespace@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-character", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a0279077ba718d27dac9bc00cc279662623051c83a732803a4d352a98b54ca8654f500fc775d993a78ded1b52cf57ab6d61c2d8bf13df12d9f35c1db46459ce" + } + ], + "purl": "pkg:npm/micromark-util-character@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-character@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-chunked", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e5ef314e2b39b4464a81eb1f6d030a442cb3bdf7d14545fe94aff2f83bec30575a6c089c3e491957a80ef851168bd45fb8a2a8c713f034bf9d145d1230899cd6" + } + ], + "purl": "pkg:npm/micromark-util-chunked@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-chunked@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-classify-character", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "17ca16d8a2ab4116f7bd2e6e7791c8a815640aa422db6e0d9b9e68e7060bcd8ffd3f01c65c2d35b6bdddefe4ea1c7cfaceb290ef63a4c2dbe6ff1426e8e54d64" + } + ], + "purl": "pkg:npm/micromark-util-classify-character@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-classify-character@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-combine-extensions", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "27c1f4e7cbc505da3febe02c8c7a76345ec0274d9266d59a5548ec6b23457808b2753c54c158903f13741dff1da781660908b4514168bc5b04c914949851f730" + } + ], + "purl": "pkg:npm/micromark-util-combine-extensions@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-combine-extensions@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-decode-numeric-character-reference", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3b33bd008e5552dad30fb29275a81fe0c5a01ccb444f5ed46b57c8a574e9ba17250aa0fc7a0156a3ce46c521afc609064bbe1b11a86fb4cd163f41e3bd5d1ee3" + } + ], + "purl": "pkg:npm/micromark-util-decode-numeric-character-reference@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-decode-numeric-character-reference@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-decode-string", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "0cb4f91e8d36aabe905953586d1677458392496585b87ded25ec5dddd80dd68744b8f3710a781309726e9bbf9589101df416ddc42bcc4e83ce0ff22f561cc6e9" + } + ], + "purl": "pkg:npm/micromark-util-decode-string@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-decode-string@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-encode", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "536b3961d9c061ec632837a5df549530f6df8be785f32d54e297e2456fd8f041550b2fef83193fdb0593c7372a13bd4b1ed0ae0b39410d15366b9090e63fa640" + } + ], + "purl": "pkg:npm/micromark-util-encode@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-encode@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-html-tag-name", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "04a94294c99844ecbd522574dd2c0d99c9248e7f101d569692aa00ab38af69bbdd19cc0d18c30c1ffe6ccc09f2c26b13054cc3b14e7bfe6162d2ca780503ba74" + } + ], + "purl": "pkg:npm/micromark-util-html-tag-name@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-html-tag-name@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-normalize-identifier", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ca0fb3acbd786c14c5ad0ee7df90a60725944c5b20b2de49840e20258a2dcb80eace3e19e05aff0c77a4492e5a2df1fd6dd95f9d2bca016b008098486e883206" + } + ], + "purl": "pkg:npm/micromark-util-normalize-identifier@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-normalize-identifier@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-resolve-all", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "081fc01a4f7cbb9d24e3692f81a30cf78c3306aa334b30c36a89ca53b3fb8f0408b87d915344de06a198273d9663551d8a1863c1e8af4adac9d8976474499c7f" + } + ], + "purl": "pkg:npm/micromark-util-resolve-all@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-resolve-all@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-sanitize-uri", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "468c6db92097eac50db7185b9ac10541f5b3b3c54dedc4dcb6604fbd88afa3df316ff9031284c2b49417e70cb321812693f96f3454dab7884bf285b42a7745a6" + } + ], + "purl": "pkg:npm/micromark-util-sanitize-uri@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-sanitize-uri@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-subtokenize", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "77dd2ea829d7a7f732e06f3cd546f8a6c139ed27fc603d298a6f507630913637dab36335bba2dbb7e5d92bd8271cbd971619e8cd98847426bd08d7d749f43ac4" + } + ], + "purl": "pkg:npm/micromark-util-subtokenize@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-subtokenize@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-symbol", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a0a0c430adaee6aa80a6d6ac0c0c160d7ab4b46f40b2c570031dc4f5b045dedfec851206b162111be70669fb36a7f4a70d239e727b7a8593c2136a3a9477c599" + } + ], + "purl": "pkg:npm/micromark-util-symbol@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-symbol@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark-util-types", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "0c27e0fd3f1f72b86b44a4cf8d1af0ff92cbbdd195ec11f249fff52ce671ed3cd665d6118e880db7236af3ce73de735a965c2bdd050a0118eabc7a97d7feedfb" + } + ], + "purl": "pkg:npm/micromark-util-types@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/micromark-util-types@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromark", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e8c8f4c872dd5198c79ce3e0af9c5f58832a3164b5db30cdea2c2cf522ee4b3efa5bc8d3b40bf6e0c378fc22fb809ae5e6fb711889e492a0effc922846c40ebc" + } + ], + "purl": "pkg:npm/micromark@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/micromark@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "micromatch", + "version": "4.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "0cccbe1117045b6abc6763e8f96357bb0ddce586944858c03b91ac26a7c497b523bed22e14a3ba66b2af708b5dcbdf1dc05236375b60df334874a6904fe68d74" + } + ], + "purl": "pkg:npm/micromatch@4.0.5", + "type": "library", + "bom-ref": "pkg:npm/micromatch@4.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "microseconds", + "version": "0.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9fb0c71cc8d1d5abc16d2a6c4c18fa7e6306876006ae27d55787be59873743d94efb19d267737285c04d0f7bf3cdab6dd392c5868285471ac8ca49662e552dc8" + } + ], + "purl": "pkg:npm/microseconds@0.2.0", + "type": "library", + "bom-ref": "pkg:npm/microseconds@0.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mime-db", + "version": "1.52.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0f538b95edd625bed589c70c311c3d0fba285536213b4f201b439496c43081f66518bce82ba103b061040e28f27c0886c4fb51135653a82b5502da7537818be" + } + ], + "purl": "pkg:npm/mime-db@1.52.0", + "type": "library", + "bom-ref": "pkg:npm/mime-db@1.52.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mime-types", + "version": "2.1.35", + "hashes": [ + { + "alg": "SHA-512", + "content": "64363e6cf9b9cd34c5f98a42ac053d9cad148080983d3d10b53d4d65616fe2cfbe4cd91c815693d20ebee11dae238323423cf2b07075cf1b962f9d21cda7978b" + } + ], + "purl": "pkg:npm/mime-types@2.1.35", + "type": "library", + "bom-ref": "pkg:npm/mime-types@2.1.35", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mime", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d2094eff541d65a0858165ed7868460753ffb550c107a1a3bbab108e5493b0f46807ef65405a9a7135c8d4fb1f5ada4dc648805734ac57405a91bef67bbebdc" + } + ], + "purl": "pkg:npm/mime@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/mime@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mimic-fn", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3aa6ce939a0441e019f165d6c9d96ef47263cfd59574422f6a63027179aea946234e49c7fecaac5af850def830285451d47a63bcd04a437ee76c9818cc6a8672" + } + ], + "purl": "pkg:npm/mimic-fn@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/mimic-fn@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "min-indent", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "23d8f0327d3b4b2fc8c0e8f7cd59158a4d894ef8296b29036448a02fa471e8df4b6cccb0c1448cb71113fbb955a032cb7773b7217c09c2fbae9ecf1407f1de02" + } + ], + "purl": "pkg:npm/min-indent@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/min-indent@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mini-css-extract-plugin", + "version": "1.6.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "5a10ef3b74a31a6e34a15e72dba1a330962377650caab2c018acb9612dbfdd0289cb617b8e0ca7b874e2affb605143a2350bb9b1a5c775cf2b7a8ed8ba1853e1" + } + ], + "purl": "pkg:npm/mini-css-extract-plugin@1.6.2", + "type": "library", + "bom-ref": "pkg:npm/mini-css-extract-plugin@1.6.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minimatch", + "version": "3.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "27ba7ade1462023c35343130c355bb8b7efe07222b3963b95d0400cd9dd539c2f43cdc9bc297e657f374e73140cf043d512c84717eaddd43be2b96aa0503881f" + } + ], + "purl": "pkg:npm/minimatch@3.1.2", + "type": "library", + "bom-ref": "pkg:npm/minimatch@3.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minimatch", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f533c11866a4e271df199b0f068866f405a0e8da13ed04c27a14b704824006c97265bcf17d5efc40cd98ebe8bbe3538f64869f1406a2884321e4ec88ac93e0b6" + } + ], + "purl": "pkg:npm/minimatch@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/minimatch@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minimatch", + "version": "3.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "e85b11010b3143ad66c3ea8fd59cdb2fd05cefcc76a793aa3603699e80052d3ad7f27e4ac698740ac9e198a28d5d35a35ea5392f4a463d1ee1624f97599afad1" + } + ], + "purl": "pkg:npm/minimatch@3.0.8", + "type": "library", + "bom-ref": "pkg:npm/minimatch@3.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minimist-options", + "version": "4.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "438afc82177cd3284eff48f53b7076063c1e5f77e21e0f5c74ec2325dd89efa435df973e343c460aa758290d52281b857e059b014cc17ef6233d411e360a8dd4" + } + ], + "purl": "pkg:npm/minimist-options@4.1.0", + "type": "library", + "bom-ref": "pkg:npm/minimist-options@4.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minimist", + "version": "1.2.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "6f37cbd58519b0fe35826bbfaa3ac493443a8b68b1fdc55e0216c26ea1fdbb7cd8bad4b570b834d2a86b0f4336315742731e127345293f67815a8f6ba2da6aea" + } + ], + "purl": "pkg:npm/minimist@1.2.7", + "type": "library", + "bom-ref": "pkg:npm/minimist@1.2.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minipass-collect", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "e93ea51f41fc386f642139bf266ead768a086e8806f5ed2d2e0a58ea6a615d29bf03dbbc36ad6bc811be42ca62b9bf4b8d69413ec3d2ded590fc1a2dab815dc4" + } + ], + "purl": "pkg:npm/minipass-collect@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/minipass-collect@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minipass-flush", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "266412618a4f52a5f92729f5997691c0e75ad6e43c1cfe4a013fe80d22c2cedd41611850534fe10edb01d6e7d97c4133319f5a0159ac070f3e156b085e50a55b" + } + ], + "purl": "pkg:npm/minipass-flush@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/minipass-flush@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minipass-pipeline", + "version": "1.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "c6e22aedc20eb74f513d1275f60762e1bf9188dbc31587b9247fa080dbc1a86aa941772bbb73dc466399b8704a58ad53c5ff7e710f8731537877acf8e8b64fec" + } + ], + "purl": "pkg:npm/minipass-pipeline@1.2.4", + "type": "library", + "bom-ref": "pkg:npm/minipass-pipeline@1.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minipass", + "version": "3.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "32077619d315cd8fb1dc827ea079d533e286de503973cb6769bc892a61d2686da4006a6e771b8e7fc4e80e486e985ed4ccc13b0de71b404f6e39984d9bb3ee26" + } + ], + "purl": "pkg:npm/minipass@3.1.3", + "type": "library", + "bom-ref": "pkg:npm/minipass@3.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "minizlib", + "version": "2.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c0c6c47c0557e3eb40d65c7137bb7d281f37e5e06ee48644ae3d6faabe977b8c54479bb74bc4e8d493510700227f8712d8f29846274621607668ee38a5ed076" + } + ], + "purl": "pkg:npm/minizlib@2.1.2", + "type": "library", + "bom-ref": "pkg:npm/minizlib@2.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mkdirp", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "bd5a95650c9fdd62f1d9285dd2a27dc6ebea800c8a3cb022a884c4b6a5b4a08523ce8dcf78f0dde9f5bd885cf7d1e7fb62ca7fa225aa6e1b33786596d93e86cf" + } + ], + "purl": "pkg:npm/mkdirp@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/mkdirp@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mobx-react-lite", + "version": "3.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ab9f941c8a9808ea41a059bf3c4943b8e85b71ab6f4e5960469dccd6cf87a798f467a5cd8036e0ab16b0274640504c8a33c5f5cecef43c2ba1008cd7d5fe10fe" + } + ], + "purl": "pkg:npm/mobx-react-lite@3.2.0", + "type": "framework", + "bom-ref": "pkg:npm/mobx-react-lite@3.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mobx-react", + "version": "7.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2875236771c199994d9cf77533cda371d56c4110e57f29b7f33261644b37dd5c725504ef2fbee1383080aeaebe0b53f593fe9eac47a8d91eeba44ed978e2fb76" + } + ], + "purl": "pkg:npm/mobx-react@7.2.0", + "type": "framework", + "bom-ref": "pkg:npm/mobx-react@7.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "moment-locales-webpack-plugin", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4008b9bf43a53d43fb197be228cb719e9040a3c5a64c7ad434dee272202134e10077d7af08ebee37483537b4e1220dead7518b0a48d8d73436b1a45c7ffe379d" + } + ], + "purl": "pkg:npm/moment-locales-webpack-plugin@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/moment-locales-webpack-plugin@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "moment-timezone", + "version": "0.4.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "81f598c3ad5e22cdad796b67ecd8d88d0f5baa06" + } + ], + "purl": "pkg:npm/moment-timezone@0.4.1", + "type": "library", + "bom-ref": "pkg:npm/moment-timezone@0.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "moment-timezone", + "version": "0.5.43", + "hashes": [ + { + "alg": "SHA-512", + "content": "ef68f768dcae22c0f1745d62ec212057615fc4cd6be9a6aa2722c1dafc1bdf7997632a322e5cbe175cdb5aa840dff6d5228278b33954a0c6d49d5762777d8d51" + } + ], + "purl": "pkg:npm/moment-timezone@0.5.43", + "type": "library", + "bom-ref": "pkg:npm/moment-timezone@0.5.43", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "moment", + "version": "2.29.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4b0bd48ec6349cd8717abced82cae4c3362bc4768cf622fc892468fa5fc0c9d1e1727eccc4d1088477e897981bd43f7587c528c51ffbc8b00d04374d1c82bf3" + } + ], + "purl": "pkg:npm/moment@2.29.4", + "type": "library", + "bom-ref": "pkg:npm/moment@2.29.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "moo-color", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "8bff992973037fa6aa62d061b8e71e8fbd584a56e34f7c023bfe07d63f2b3efc4324489f770820e4c685caeea26004fc181649836cf476480ae18333bd44402d" + } + ], + "purl": "pkg:npm/moo-color@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/moo-color@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "mri", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b73cec91bddb1bc2ef606145fe60d3a6ade3a48e90f707372c49816a086ef83742b2c77515a90dec17348553661321aad5bab74607e409bddc9902e934f3aba0" + } + ], + "purl": "pkg:npm/mri@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/mri@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ms", + "version": "2.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "b0690fc7e56332d980e8c5f6ee80381411442c50996784b85ea7863970afebcb53fa36f7be4fd1c9a2963f43d32b25ad98b48cd1bf9a7544c4bdbb353c4687db" + } + ], + "purl": "pkg:npm/ms@2.1.2", + "type": "library", + "bom-ref": "pkg:npm/ms@2.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ms", + "version": "2.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "e85973b9b4cb646dc9d9afcd542025784863ceae68c601f268253dc985ef70bb2fa1568726afece715c8ebf5d73fab73ed1f7100eb479d23bfb57b45dd645394" + } + ], + "purl": "pkg:npm/ms@2.1.3", + "type": "library", + "bom-ref": "pkg:npm/ms@2.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "nano-time", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "b0554f69ad89e22d0907f7a12b0993a5d96137ef" + } + ], + "purl": "pkg:npm/nano-time@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/nano-time@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "nanoid", + "version": "3.3.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "04672a30c26e4e817b8b5aedfb63d648d567588906094efc8c11b74713bf6d996764f2b60a68b641a7dfc463bfd91bd68bdb0bf850224625cc82ccb14350c80c" + } + ], + "purl": "pkg:npm/nanoid@3.3.6", + "type": "library", + "bom-ref": "pkg:npm/nanoid@3.3.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "natural-compare", + "version": "1.4.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + } + ], + "purl": "pkg:npm/natural-compare@1.4.0", + "type": "library", + "bom-ref": "pkg:npm/natural-compare@1.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "needle", + "version": "2.9.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e91f5fa89e597267feb9868581d20798bc0d95d9f91db2bc2f9c9b9fb533fb2957feb9ceb12a7500772f412ac268537ea8d335c29ca61ea0fb9956ac10e94719" + } + ], + "purl": "pkg:npm/needle@2.9.1", + "type": "library", + "bom-ref": "pkg:npm/needle@2.9.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "neo-async", + "version": "2.6.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "61ddd4112e665824aa47ea8d4fddd2dd4a18524a8067d94b83c6bb83dae29ac5a66062bc7154e8038fec17746bb21772577b0018c5d5526a4c60ec3e74ba4ebb" + } + ], + "purl": "pkg:npm/neo-async@2.6.2", + "type": "library", + "bom-ref": "pkg:npm/neo-async@2.6.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "nock", + "version": "13.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "f063f39f0c5c3cd087fe1f01f9765c2a360f5e7515e5c94e2828c0ab28ec8aa03ef8ca4dc7d13dfadf183e9d0c6d384ef8a6ae468eda649d56b886663ab4f652" + } + ], + "purl": "pkg:npm/nock@13.2.4", + "type": "library", + "bom-ref": "pkg:npm/nock@13.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "node-fetch-h2", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a1f456f7801bd13e003a1e4593cb7487c3815ab9a36f4492076d318751fc6273d5f4427e7f900ca18494436ce027822ad8700ad08da5e7f35eaaef18cc54b71e" + } + ], + "purl": "pkg:npm/node-fetch-h2@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/node-fetch-h2@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "node-fetch", + "version": "2.6.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "66330f1447d5c798fecb6c85df92b3c79b05ee40f3c6e0e3eb3887e0515b3a9f3bcca0d9371f321312486f4e4e185e0d96df481c520c064465e3555dbdc35d6d" + } + ], + "purl": "pkg:npm/node-fetch@2.6.7", + "type": "library", + "bom-ref": "pkg:npm/node-fetch@2.6.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "node-int64", + "version": "0.4.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "87a9065cdb355d3182d8f94ce11188b825c68a3b" + } + ], + "purl": "pkg:npm/node-int64@0.4.0", + "type": "library", + "bom-ref": "pkg:npm/node-int64@0.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "node-modules-regexp", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "8d9dbe28964a4ac5712e9131642107c71e90ec40" + } + ], + "purl": "pkg:npm/node-modules-regexp@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/node-modules-regexp@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "node-readfiles", + "version": "0.2.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "dbbd4af12134e2e635c245ef93ffcf6f60673a5d" + } + ], + "purl": "pkg:npm/node-readfiles@0.2.0", + "type": "library", + "bom-ref": "pkg:npm/node-readfiles@0.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "node-releases", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "53d87534b44e653abdb84d5235f7e7e96b8f0e0f227268b79ece2b125fe84df2257b888b8d39620b3813b1b68814cabf5e7d3bf3f95f63f04bd06599fa9b0ae1" + } + ], + "purl": "pkg:npm/node-releases@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/node-releases@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "normalize-package-data", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "a765b5b20aa28f7ccc332442d3aec3835e9b7f3547fb0ee1c9e826a48bd9e09363aad18e54022f2e68c1c77c8fed84def6f289824a0d38f8f0406a200e831714" + } + ], + "purl": "pkg:npm/normalize-package-data@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/normalize-package-data@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "normalize-path", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e9e66ce4bb375ad0a2b075a9f52d86532f1daa4a468b80554b3dc66aa884e9ecee6f4e75d844b3b57530501e82e8829b4246363e76ff983e166288c24707302c" + } + ], + "purl": "pkg:npm/normalize-path@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/normalize-path@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "normalize-registry-url", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d2fe93e3ce756fbdb2924e7312d168378417fc5ab293ba68b888fdc59c80bc07bd8e50e10304f8cfa165c2ca100878deb8ad84194a00c32fc5e32e01d6e66af4" + } + ], + "purl": "pkg:npm/normalize-registry-url@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/normalize-registry-url@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "normalize-url", + "version": "6.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e52fe5f03b2dcdc4043cc6e0b4a243e02b8ea2b953402b4d5837b46e79806aa85786b018d5f5798203301d82dfbaebb6c297990f87d12a28a0f09da3c6d48ec" + } + ], + "purl": "pkg:npm/normalize-url@6.1.0", + "type": "library", + "bom-ref": "pkg:npm/normalize-url@6.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "npm-run-path", + "version": "4.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b8f16cd95bbefbce1348ae7ee0c4e94848d02a8bd642fee4059d175b7881e1661080e94aa990e4fc4f51bb06f7dd80fe04afc805e2c51b692d22ed0bc87c25b" + } + ], + "purl": "pkg:npm/npm-run-path@4.0.1", + "type": "library", + "bom-ref": "pkg:npm/npm-run-path@4.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "nth-check", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "96a8eb8e668ea009d67cc9813cbf97367ca7661dbeb30c625f7594134b38c841c8ea6f80c2b2b65193a2988465dd7ff841cb55a92f008998c5ab2386acc5dbff" + } + ], + "purl": "pkg:npm/nth-check@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/nth-check@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "nvd3", + "version": "1.8.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "60643d840407b90085d09998913d8684d3076f9a40faf0df423e82d8676940fcdd44f8ffb2b3c6de687fddf673505b7e6add4dbac2e4fd1a880945a4c66e2f89" + } + ], + "purl": "pkg:npm/nvd3@1.8.6", + "type": "library", + "bom-ref": "pkg:npm/nvd3@1.8.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "nwsapi", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "87601ab5dc181fe247899a6fee9b7f8125f55e84466fb2ffa9221ebaa03a1b062817dc35bcfd5cc38d933b4688da9372b2144ae7cf7784d4a5fb5fffbc72bb85" + } + ], + "purl": "pkg:npm/nwsapi@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/nwsapi@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "oas-kit-common", + "version": "1.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "a494d2dbe4f4a062308231a9c3bb08454f1140c714a0a0835852dd06a281d813661a96c1307dac76a01a397520f0ece89d91d4d0beef7c9bb59891448980d639" + } + ], + "purl": "pkg:npm/oas-kit-common@1.0.8", + "type": "library", + "bom-ref": "pkg:npm/oas-kit-common@1.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "oas-linter", + "version": "3.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "2841a33c35685392bab30828f6125503fa981a5c1f6c5c7e2a0d9007f91deebcd5e4df0de4c83a3e5b2808ca21567426a3ea7325aa7f17ad74a93a1d2b379c19" + } + ], + "purl": "pkg:npm/oas-linter@3.2.2", + "type": "library", + "bom-ref": "pkg:npm/oas-linter@3.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "oas-resolver", + "version": "2.5.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "d69a358332254d742ac9536d2c5589bb30e6e31c6130227c41c3f739aaca0cef1a27c0260ad43aed76755fe9c16c71f80a34dc12c21a6f5a97e7e1885387f61a" + } + ], + "purl": "pkg:npm/oas-resolver@2.5.5", + "type": "library", + "bom-ref": "pkg:npm/oas-resolver@2.5.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "oas-schema-walker", + "version": "1.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "db2b9c7a7ab56bd60f99e344c6851af50c2bb7d445923a9a3000355fe53bb1b6f402a05e4c874c1e4cbd49043a88df786cee4d5b45b84d16177ab1be05d02f01" + } + ], + "purl": "pkg:npm/oas-schema-walker@1.1.5", + "type": "library", + "bom-ref": "pkg:npm/oas-schema-walker@1.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "oas-validator", + "version": "5.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "6c8fa0cabdcc886ff843921bbe0d11efbb245564bcf36805324c70075a7aa98ed1738a7b1280decc555fa277636212433c39c1d590fb02a8fb01644e02c30166" + } + ], + "purl": "pkg:npm/oas-validator@5.0.6", + "type": "library", + "bom-ref": "pkg:npm/oas-validator@5.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object-assign", + "version": "4.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ac98134279149c7d6c170f324fa552537cc3dec5a6bbab19848b1e63c557f8646edcfe85ec5bbe24d0e85df9251256cb2529dcdc55101d57b8714e618fe05c52" + } + ], + "purl": "pkg:npm/object-assign@4.1.1", + "type": "library", + "bom-ref": "pkg:npm/object-assign@4.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object-inspect", + "version": "1.10.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "7b9982265487ee9a0035f0bccfc4bdb3d4b620de7fe196f7699df77f9b3c62aa1acc217334b9682d4f2be55086f86ed6a2a2ef00066854c732deda7fdd7d0f97" + } + ], + "purl": "pkg:npm/object-inspect@1.10.3", + "type": "library", + "bom-ref": "pkg:npm/object-inspect@1.10.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object-inspect", + "version": "1.12.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "cfe70fc56d10194a7499ca9cb204322d5443a171506d73b005aab217b548808e1358d42c0c7ac1a5442c9519887c0a1859d633b3a525289b41d972694da352a5" + } + ], + "purl": "pkg:npm/object-inspect@1.12.2", + "type": "library", + "bom-ref": "pkg:npm/object-inspect@1.12.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object-inspect", + "version": "1.12.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "81e52f764edcf9e8b330d503911a56d7027081f3a239e1dbc4147f84b5cad5a4face65523b48ec41cb3b7e3e8c1b0f3d8c2fdc8c67cb70d3abb4c62d1aa9bcd6" + } + ], + "purl": "pkg:npm/object-inspect@1.12.3", + "type": "library", + "bom-ref": "pkg:npm/object-inspect@1.12.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object-inspect", + "version": "1.11.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e9ee2912e927771b141f6493f21f772371b245e8664f0a581d57e105ca08c52d0e45996fdd4549d377d3d0f64d0986834369b5856e9175c827525820ba81ec6" + } + ], + "purl": "pkg:npm/object-inspect@1.11.0", + "type": "library", + "bom-ref": "pkg:npm/object-inspect@1.11.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object-keys", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "36e00449439432b9485ce7c72b30fa6e93eeded62ddf1be335d44843e15e4f494d6f82bc591ef409a0f186e360b92d971be1a39323303b3b0de5992d2267e12c" + } + ], + "purl": "pkg:npm/object-keys@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/object-keys@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object.assign", + "version": "4.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "8b14f62f94c75ec029ca250f60a996fb6107a575dee488b733e7f87be6891401daa396a61515ba27438ee9cfcb53c05ee3bbad0b1d862fcf61c4607a5d298ab9" + } + ], + "purl": "pkg:npm/object.assign@4.1.2", + "type": "library", + "bom-ref": "pkg:npm/object.assign@4.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object.assign", + "version": "4.1.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "d66c4a7f47b9f1bbf28d20ad298638b117bd8ad464dcf269aae24e8de224cfcf3909ccdc23822f2490cb3d2ef6a28c2e4a1fa907150544ea57f9353efa1c6165" + } + ], + "purl": "pkg:npm/object.assign@4.1.4", + "type": "library", + "bom-ref": "pkg:npm/object.assign@4.1.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object.entries", + "version": "1.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "4f2c668d4a198207783abad4d56eba14c0c6e82baa271b05bf299ec97239d7ebd02cdebbcd87d9b1ea6d4607bbd3790a41da38b9c72000a79b5c57110b3938fa" + } + ], + "purl": "pkg:npm/object.entries@1.1.5", + "type": "library", + "bom-ref": "pkg:npm/object.entries@1.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object.fromentries", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "080c86e66590451881539ed17b814aa130635df0e8370745547d98d6d4bd3ea0ac7d44f2980a213a410c486dda44d2a6bf8955dceee9d5eb7b735f3baba6f29f" + } + ], + "purl": "pkg:npm/object.fromentries@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/object.fromentries@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object.hasown", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2d82dee2d8af350ceae0975a596e963b71cc659256ce4907f1f9c8e8479b5a5d1566d876c0bd8ba2f9bbe1ea76fe067395a4dd57ad8964712a1d0db2567f10fc" + } + ], + "purl": "pkg:npm/object.hasown@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/object.hasown@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object.values", + "version": "1.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "4146515b48a54373e73e96cdb6074d5753c36c4a8b22248507797e1271ad050ffc4944cb8f53d9c2d40700166d2e0c292594d2661b862ce1a4e7b0ebc7622f62" + } + ], + "purl": "pkg:npm/object.values@1.1.5", + "type": "library", + "bom-ref": "pkg:npm/object.values@1.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "object.values", + "version": "1.1.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "155553903d6f10d0ac01cc0db3d93a8de6b6b870bf5f4f897231bc600eb414de4231a2661bde704fd8de93fc57f67a2b9ea191ac190ab73b80bb6c2e1e92aabf" + } + ], + "purl": "pkg:npm/object.values@1.1.6", + "type": "library", + "bom-ref": "pkg:npm/object.values@1.1.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "oblivious-set", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "cfea48d3bab1a387360ae9541c20dff6572a0e5312a3bd8dff8acb5294577fa7eefaaf2f8edf32d314be4e57fc3532437535c76dd78ed67dcc95b72dc04a1767" + } + ], + "purl": "pkg:npm/oblivious-set@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/oblivious-set@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "once", + "version": "1.4.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "583b1aa775961d4b113ac17d9c50baef9dd76bd1" + } + ], + "purl": "pkg:npm/once@1.4.0", + "type": "library", + "bom-ref": "pkg:npm/once@1.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "onetime", + "version": "5.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "91ba5a4921894d674063928f55e30e2974ab3edafc0bc0bbc287496dcb1de758d19e60fe199bbc63456853a0e6e59e2f5abd0883fd4d2ae59129fee3e5a6984a" + } + ], + "purl": "pkg:npm/onetime@5.1.2", + "type": "library", + "bom-ref": "pkg:npm/onetime@5.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "openapi-sampler", + "version": "1.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d907e32b5a0cf52bf4abcd807b546b51edf27c5980ca3179e3cfba78079bfa1fdc2f5523e754d6e147b3ada044bf011dce80607e8e006932d51464ca8fec980f" + } + ], + "purl": "pkg:npm/openapi-sampler@1.3.0", + "type": "library", + "bom-ref": "pkg:npm/openapi-sampler@1.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "openapi-typescript", + "version": "5.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "00607642264fcf8ac4ef32305777511eda140bf0961e1523bb3197bed98c40dd80155f310932ca7195072dc74f426b7ff378b6da7444efe4f15ce5e42be81fe1" + } + ], + "purl": "pkg:npm/openapi-typescript@5.4.1", + "type": "library", + "bom-ref": "pkg:npm/openapi-typescript@5.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "optionator", + "version": "0.8.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "f885bda4009d9375d69a64d71bc9b7ba919426cb795d11b3c4c4635f302e2755e720536f7e18e322e6240efcac9cf43bab3a95ccbb7bf010abba7b6a4615906c" + } + ], + "purl": "pkg:npm/optionator@0.8.3", + "type": "library", + "bom-ref": "pkg:npm/optionator@0.8.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "optionator", + "version": "0.9.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ef84656391429e1ab88d1c5550f283691c2b54d5ccaac1ac896e80270e172bc866b66d74c02d32a5904bc39208a7ce4d64cafdd7ea9dd51bef10dc20ee38d117" + } + ], + "purl": "pkg:npm/optionator@0.9.1", + "type": "library", + "bom-ref": "pkg:npm/optionator@0.9.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "p-limit", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ffff3c985592271f25c42cf07400014c92f6332581d76f9e218ecc0cbd92a8b98091e294f6ac51bd6b92c938e6dc5526a4110cb857dc90022a11a546503c5beb" + } + ], + "purl": "pkg:npm/p-limit@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/p-limit@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "p-limit", + "version": "3.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4d839a9ccdf01b0346b193767154d83c0af0e39e319d78f9aa6585d5b12801ce3e714fe897b19587ba1d7af8e9d4534776e1dcdca64c70576ec54e5773ab8945" + } + ], + "purl": "pkg:npm/p-limit@3.1.0", + "type": "library", + "bom-ref": "pkg:npm/p-limit@3.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "p-locate", + "version": "4.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "47bf5967fd30031286bb7a18325cfc8f2fe46e1b0dad2ed2299ecfc441c1809e7e1769ad156d9f2b670eb4187570762442c6f3155ec8f84a1129ee98b74a0aec" + } + ], + "purl": "pkg:npm/p-locate@4.1.0", + "type": "library", + "bom-ref": "pkg:npm/p-locate@4.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "p-locate", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2da363b51594058fbecc1e6713f37071aa0cca548f93e4be647341d53cdd6cc24c9f2e9dca7a401aded7fed97f418ab74c8784ea7c47a696e8d8b1b29ab1b93f" + } + ], + "purl": "pkg:npm/p-locate@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/p-locate@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "p-map", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "cb76fc2a977c380378e388717c16c57e3d4563f463b5377cb73630854a8d617c747d7c76897e2668fe10afaaa120a6d05c8d36c132c075ae1f6146c36a04d417" + } + ], + "purl": "pkg:npm/p-map@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/p-map@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "p-map", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fdb8ceaa68044c1601e41a0478655e6bc766bc76f69bd18bcb513d5b8df27b27cfe9040264614d6be5d171e244b8307aceaafe80aa4802694b79b329ca4c3f31" + } + ], + "purl": "pkg:npm/p-map@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/p-map@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "p-try", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4789cf0154c053407d0f7e7f1a4dee25fffb5d86d0732a2148a76f03121148d821165e1eef5855a069c1350cfd716697c4ed88d742930bede331dbefa0ac3a75" + } + ], + "purl": "pkg:npm/p-try@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/p-try@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "parent-module", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "190d84591a5057cfe8f80c3c62ab5f6593df3515996246e2744f64e6ba65fe10b7bed1c705f1a6d887e2eaa595f9ca031a4ad42990311372e8b7991cb11961fa" + } + ], + "purl": "pkg:npm/parent-module@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/parent-module@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "parse-entities", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "924cb01a909c45886a408721696a99f3be70ce94bf6cc2a1cf91e7377a7bc2f7894e44edc8007f0259d2d1ff03152a985b54fcdadeb2100904701f80d48dcc6d" + } + ], + "purl": "pkg:npm/parse-entities@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/parse-entities@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "parse-json", + "version": "5.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6b208abe6fe98421b13a461148233cda20f072df3f1289d2120092c56c43eef7ba8c7820b059787d955004f44d810a0a8ae57fa1d845ac6cd05d9c1b89f0bc46" + } + ], + "purl": "pkg:npm/parse-json@5.2.0", + "type": "library", + "bom-ref": "pkg:npm/parse-json@5.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "parse5", + "version": "6.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "39f9ff0931734464d3c70a4d12cf4f3fdde05d2847713ab6e799f345848a7bc024569658eded5fa664df3b2a08be33f91c6ed9d9933b552f4f3e14065b6a4ea7" + } + ], + "purl": "pkg:npm/parse5@6.0.1", + "type": "library", + "bom-ref": "pkg:npm/parse5@6.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "path-browserify", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6fbba8d9409439865c9c5ff7203d25ba53898bf6da7f16b5c4f7bb64fb1a9a6052a634964248cdc65b7adf96064b632247d1a3bee5c2b73d9e9abde36eccfdf2" + } + ], + "purl": "pkg:npm/path-browserify@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/path-browserify@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "path-exists", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a4f50cb943b8d86f65b071ecb9169be0d8aa0073f64884b48b392066466ca03ec1b091556dd1f65ad2aaed333fa6ead2530077d943c167981e0c1b82d6cbbff" + } + ], + "purl": "pkg:npm/path-exists@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/path-exists@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "path-is-absolute", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + } + ], + "purl": "pkg:npm/path-is-absolute@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/path-is-absolute@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "path-is-inside", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "365417dede44430d1c11af61027facf074bdfc53" + } + ], + "purl": "pkg:npm/path-is-inside@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/path-is-inside@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "path-key", + "version": "3.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a2399e374a9dfb2d23b3312da18e3caf43deab97703049089423aee90e5fe3595f92cc17b8ab58ae18284e92e7c887079b6e1486ac7ee53aa6d889d2c0b844e9" + } + ], + "purl": "pkg:npm/path-key@3.1.1", + "type": "library", + "bom-ref": "pkg:npm/path-key@3.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "path-parse", + "version": "1.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "2c32733d510410f47ecb8f33f7703411dd325dbf29001c865a8fe4e5861d620a58dbfd84b0eb24b09aeaee5387c6bcab54e9f57a31baa00a7c6a1bce2100fcb3" + } + ], + "purl": "pkg:npm/path-parse@1.0.7", + "type": "library", + "bom-ref": "pkg:npm/path-parse@1.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "path-type", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "80329bf1a64c0de0ffb595acf4febeab427d33091d97ac4c57c4e39c63f7a89549d3a6dd32091b0652d4f0875f3ac22c173d815b5acd553dd7b8d125f333c0bf" + } + ], + "purl": "pkg:npm/path-type@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/path-type@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "perfect-scrollbar", + "version": "1.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "32b488988367221dd39b585d3d3e9b8e2e9f988791a2b5447a042fc949e1aa4a368431931e19a33de7c75dfc46fc96fcc556df0b08265089486a31111978d55d" + } + ], + "purl": "pkg:npm/perfect-scrollbar@1.5.1", + "type": "library", + "bom-ref": "pkg:npm/perfect-scrollbar@1.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "picocolors", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d5fca0ae84cb947bbaeb38b6e95a130eff324609b415c71e72cb2da3e321b19d03fc3196dac9bc13c0235bb354e5555346de46c5b799e6a06e26bf87c8b6248d" + } + ], + "purl": "pkg:npm/picocolors@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/picocolors@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "picomatch", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "958d50fcf889182db33afff3dfdd563930fe674d9b0a0b057efc685d77fa87b92ff68f969ac9b362aac0c18eb7b0d80ec44e3111dab45b25275df29e06b4af63" + } + ], + "purl": "pkg:npm/picomatch@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/picomatch@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "picomatch", + "version": "2.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "254ded7874cd8e6136542185cee63c117cc20d5c04a81d9af1fb08bf0692b4784058911e55dd68d500fcd0253af997445d748b6d2b2e2f0263902056a9141454" + } + ], + "purl": "pkg:npm/picomatch@2.3.1", + "type": "library", + "bom-ref": "pkg:npm/picomatch@2.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pify", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "ed141a6ac043a849ea588498e7dca8b15330e90c" + } + ], + "purl": "pkg:npm/pify@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/pify@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pify", + "version": "4.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b81f3490115bfed7ddebc6d595e1bd4f9186b063e326b2c05294793d922b8419c86914d0463a9d252b082a438fe8e00815b8fb18eadcb9d739a4d8d9fa0795da" + } + ], + "purl": "pkg:npm/pify@4.0.1", + "type": "library", + "bom-ref": "pkg:npm/pify@4.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pinkie-promise", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "2135d6dfa7a358c069ac9b178776288228450ffa" + } + ], + "purl": "pkg:npm/pinkie-promise@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/pinkie-promise@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pinkie", + "version": "2.0.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "72556b80cfa0d48a974e80e77248e80ed4f7f870" + } + ], + "purl": "pkg:npm/pinkie@2.0.4", + "type": "library", + "bom-ref": "pkg:npm/pinkie@2.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pirates", + "version": "4.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5ae36a2d36cc237b667de7f64cac654260222c72ad16196c0999cf229bafd8ec3444354ef257f2d4ea5fe0d53394c5cb8cf97e31e9fb02e55d5fa4c0facfae18" + } + ], + "purl": "pkg:npm/pirates@4.0.1", + "type": "library", + "bom-ref": "pkg:npm/pirates@4.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pirates", + "version": "4.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "f15f7e1d03eea67697300db773986f97af735ef4f04f3c8061ab2791bd13b6ce17bcee02962a8e34c3a7be5ab6eab9212c2de758314125fef72d4d5ed5564b69" + } + ], + "purl": "pkg:npm/pirates@4.0.5", + "type": "library", + "bom-ref": "pkg:npm/pirates@4.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pkg-dir", + "version": "4.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1d10f36da2a30be00e5955f1014ff1e7808e19e22ff5e6fee82903490a0d4ede17c96a0826fb8fb178b3c6efc5af6dc489e91bb59c2687521c206fe5fdad7419" + } + ], + "purl": "pkg:npm/pkg-dir@4.2.0", + "type": "library", + "bom-ref": "pkg:npm/pkg-dir@4.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pluralize", + "version": "8.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "35cdc84f9c87cdf9537db8e0a967023e9a3b0da2b2e059e907497fcc2016d1373b8f1022baa4b11dab27b41dc3efcf3b2d2ac0f7790327d217a2fc49631c8b08" + } + ], + "purl": "pkg:npm/pluralize@8.0.0", + "type": "library", + "bom-ref": "pkg:npm/pluralize@8.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "polished", + "version": "4.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "a1c3c07150543abc8910a7b4cf628b77597d1016b5af9992c252a91319ab2f3b27233268e1ac6ca14f4ed818ce4e40c60d3e266745851395ca4e54779cb9d938" + } + ], + "purl": "pkg:npm/polished@4.1.3", + "type": "library", + "bom-ref": "pkg:npm/polished@4.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "popmotion", + "version": "11.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "639e452dd8f7531911ed5977b3b42be1ef66d289d29cff16eddff140bb2824ce34bece9428715dca0b3a496af26ac4d962aba03239b705ea421780965c388780" + } + ], + "purl": "pkg:npm/popmotion@11.0.3", + "type": "library", + "bom-ref": "pkg:npm/popmotion@11.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-calc", + "version": "8.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "4a658c489981f0c4679d42e5771d25408ca148dbee0e5f477eb6646aaa84fd61c0853a18b00bc3abec80b00fe423220d0ecccea77461d0616836e1f9629b26dd" + } + ], + "purl": "pkg:npm/postcss-calc@8.2.4", + "type": "library", + "bom-ref": "pkg:npm/postcss-calc@8.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-colormin", + "version": "5.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "59d0cee203851b667c9f83fc4d6069b219cbdc9a663662707677cfda06e4daa040f0f5b03987268e623fb770a631e2fbd9aec791dfb1fcc83d3b6ff4ac3e783e" + } + ], + "purl": "pkg:npm/postcss-colormin@5.3.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-colormin@5.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-convert-values", + "version": "5.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "73a1f3738180bfde41eecbb2e2e76ccd7f59cb8113c8c0a014f503b568dd153287d5213d78563f8c4a474b04c7d503eec311e95ac96172451059b351338868e6" + } + ], + "purl": "pkg:npm/postcss-convert-values@5.1.2", + "type": "library", + "bom-ref": "pkg:npm/postcss-convert-values@5.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-discard-comments", + "version": "5.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8bf36d3c3956c7545d9441fd620e645c6dd8c992e045e884b6f720434a2594233a5868086d365e89627626d7616791e0b042a1792de9253aeeab02a81f059a9" + } + ], + "purl": "pkg:npm/postcss-discard-comments@5.1.2", + "type": "library", + "bom-ref": "pkg:npm/postcss-discard-comments@5.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-discard-duplicates", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce65f7228488d9aa1e9f11d5e82ee9967807596854395dec3f54fccb689fcf1cdbb67ba193511d3f09b44b56c850d689d9e35b59e18b130cf0f21b8f0faeda43" + } + ], + "purl": "pkg:npm/postcss-discard-duplicates@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-discard-duplicates@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-discard-empty", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ccfcf85a58e24ae2d6b08d22af831c9ebe2a410e5ed5491cde2ed47c4d9772bc0a2b62c83c8a84e63c4c4713ba19b23772ffffced5c3b17c04593dc11ce1a1dc" + } + ], + "purl": "pkg:npm/postcss-discard-empty@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/postcss-discard-empty@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-discard-overridden", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "db59ce2fb46a591d646ac21574ab3c1cda902611712ecc917c09d40e6e057b8b7898258bf4e2621ef9473e371df33739332bbcf5bffbc190e73928c581e591b7" + } + ], + "purl": "pkg:npm/postcss-discard-overridden@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-discard-overridden@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-merge-longhand", + "version": "5.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "34e1b582bc3dc083beeb46ab29ad9862cadb82f3fab69fa3a9cefe643e7f31a948c36df8a281f60ba2a547a1449f8ca57bb1aa66807148ad662c113d28fbabeb" + } + ], + "purl": "pkg:npm/postcss-merge-longhand@5.1.5", + "type": "library", + "bom-ref": "pkg:npm/postcss-merge-longhand@5.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-merge-rules", + "version": "5.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "cca314967c3ecd8096a0f37aca13e3b5c11d94968c519d16c957314c09b0de592437f34331190e922b9cb501285803af1fbb706b151476f056974778fa189f45" + } + ], + "purl": "pkg:npm/postcss-merge-rules@5.1.2", + "type": "library", + "bom-ref": "pkg:npm/postcss-merge-rules@5.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-minify-font-values", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7a5de6613831d776403cf8ab495b07a85ce5f810410eb5ef6f24af3c616741c4c8e2236c96b3da16ae26b9390b6662a51a4e20c85018501307df4f87bab444c8" + } + ], + "purl": "pkg:npm/postcss-minify-font-values@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-minify-font-values@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-minify-gradients", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "546bd7313a42128e2a1d33526bd0346b70fe77118564263047a268924fbfde807a7e5bb6fcf9cf5c0876c7bc79d84918e719481cb9be2def2d2717bfed3361cf" + } + ], + "purl": "pkg:npm/postcss-minify-gradients@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/postcss-minify-gradients@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-minify-params", + "version": "5.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "6e4ce959c8f2924a88ba334bf845443ce94b622fde674e74a08995b4753b6f89454bcda33e7b026f8e20bc2ea9c5a36ddfc125b378d66031d38c729fd24a1382" + } + ], + "purl": "pkg:npm/postcss-minify-params@5.1.3", + "type": "library", + "bom-ref": "pkg:npm/postcss-minify-params@5.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-minify-selectors", + "version": "5.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9cf26eece8d9253b155263dd9b64dc6a2a21230c4ffaff216bd35e850db27bdb33bf8a2b8ab454dd20ddb5498a1fed749f39f46c0c8e5d9d1412becea6f2de86" + } + ], + "purl": "pkg:npm/postcss-minify-selectors@5.2.1", + "type": "library", + "bom-ref": "pkg:npm/postcss-minify-selectors@5.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-modules-extract-imports", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6dd1e57859cfde46783580e1b869552be08cad0fe9a949bc6f1fe818bf772ba815c22725bd7e71d27efa7d830ab8818ace50013b2d77cecbea8dbd1ff764c45f" + } + ], + "purl": "pkg:npm/postcss-modules-extract-imports@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-modules-extract-imports@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-modules-local-by-default", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b13ee286d986485f72866ea0822907755d219738834d7ee81685edb9559e0ddde11ce6cd91c1d1a3d577ca0eef08063b70e372c490bf5d70a69a21c772f5fb6d" + } + ], + "purl": "pkg:npm/postcss-modules-local-by-default@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-modules-local-by-default@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-modules-scope", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "867722870140db23dab61f28675e4f66abd61a459ff9751f4205066a64b82eaa0fd5a9d02ceb0e270d2fafb27b2302e9a18f5f6ad036aa21941a6b992f422a96" + } + ], + "purl": "pkg:npm/postcss-modules-scope@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-modules-scope@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-modules-values", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "443c47900884188efc812da87f2bc2b2eee2c9c46fee8ab0e713169fd88ca11d0dffb99ff43e7479c42a528e4167d661daf1f86c2511fe4b42a9b07d9bcbc98d" + } + ], + "purl": "pkg:npm/postcss-modules-values@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-modules-values@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-normalize-charset", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "99281427ea5dfe5751195c76ea9db0cfd74d67b8e2e8f9fc55605a8cc5c57fc8e4eef5284ab67696dff0651ec3b6565829eb26648ebcd2a8ebd827851767db52" + } + ], + "purl": "pkg:npm/postcss-normalize-charset@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-charset@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-normalize-display-values", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "58fe0a20ce28d9d6b34175a615aa8c99cbec2a685d20d15b96049e4609fc049eafc5a332689930033a4fa6ebd22281bfae65f733e22b459133d87d2096b40d10" + } + ], + "purl": "pkg:npm/postcss-normalize-display-values@5.1.0", + "type": "framework", + "bom-ref": "pkg:npm/postcss-normalize-display-values@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-normalize-positions", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f20988b600381f9c6253180dff74d5bd746827190058b5ba7ff28a85db07d376ad834701f229579eb0793e94ac87056efdd0f666c44541c47538499204302071" + } + ], + "purl": "pkg:npm/postcss-normalize-positions@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-positions@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-normalize-repeat-style", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "211dee06373eee671618be82b6788a350e11af97d3c7091a0c7c0c043186b35c7d2154646084ff33835e9595a400e05d57abf767d4b8eb3a9a286972cc749c87" + } + ], + "purl": "pkg:npm/postcss-normalize-repeat-style@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-repeat-style@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-normalize-string", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a1888824e7f84fd4f53788be69b78873b5609bfc4f0868a1e1b673e4d9b4fc045527b2bac6b0e52f0bf0a8ec9dbf22f744735ff2a664eafa3769ab62c3f828df" + } + ], + "purl": "pkg:npm/postcss-normalize-string@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-string@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-normalize-timing-functions", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0ce124cc9e12017bf9c641e5d166bd7192c5dd6081845de8d52295c4a4006bed2960a96e793a4282f9050077e4f98eb87b35fdfa72131ab0d97951a02132578e" + } + ], + "purl": "pkg:npm/postcss-normalize-timing-functions@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-timing-functions@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-normalize-unicode", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "27a337322cc0019d9d39d4a3cb671a6b224b413f04f0af578cb71ef005103303ab0af8c21efdb868b0bf2e9b35475ca539fa25e5520331a33f2e8f4d1a593549" + } + ], + "purl": "pkg:npm/postcss-normalize-unicode@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-unicode@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-normalize-url", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e6ea467833be3d5b613b14a676ce3765e31e65f287fbf0ca806443ed3125924c92e3a25701484ccc82a209aec169b3de232dc041c4e45f055537b0dbaac8827b" + } + ], + "purl": "pkg:npm/postcss-normalize-url@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-url@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-normalize-whitespace", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f37649e2ddcd5031132074dadee120e9ab168d20582f911d915074b039dcc7d111cce2815492147833bd47203d670b6283c125d5defd1c1a742448bcc2f1909c" + } + ], + "purl": "pkg:npm/postcss-normalize-whitespace@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/postcss-normalize-whitespace@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-ordered-values", + "version": "5.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "c2bd9abd16d6e074b65c4d990aaa5fa7837fb430ba199299f9254ff140533954bc416adce130fc318ade6c9aef5559463cab339a2482cee7b8dcd0e256d8039a" + } + ], + "purl": "pkg:npm/postcss-ordered-values@5.1.2", + "type": "library", + "bom-ref": "pkg:npm/postcss-ordered-values@5.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-reduce-initial", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4e81352f8b3d1a787e8cb418c77dbaf9eed9a5d773ee79d2bf11c83cb33cdde1744c6d8c47e39ef62451b4ebbcfe16a0487fa669fddfb4e7cd60964bef58c17" + } + ], + "purl": "pkg:npm/postcss-reduce-initial@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-reduce-initial@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-reduce-transforms", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d9f6dd6e6822af902fa56f512ed74e371d50a181b6fc4b6aa4d41b140483962c416c062e4dc2747440b096a36a1fb55b6949c49e1f12af139edac4489f6e17c9" + } + ], + "purl": "pkg:npm/postcss-reduce-transforms@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-reduce-transforms@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-resolve-nested-selector", + "version": "0.1.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "29ccbc7c37dedfac304e9fff0bf1596b3f6a0e4e" + } + ], + "purl": "pkg:npm/postcss-resolve-nested-selector@0.1.1", + "type": "library", + "bom-ref": "pkg:npm/postcss-resolve-nested-selector@0.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-safe-parser", + "version": "6.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "14044737ca701fe5a24b638f0b1248f05b912694d59e7e993458aa00cd9a796d8bc131d65a65a0232282e9c528d0bf1a78a885ff5e0c36f9e996ce91d8f05e31" + } + ], + "purl": "pkg:npm/postcss-safe-parser@6.0.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-safe-parser@6.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-selector-parser", + "version": "6.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "11a5751a5e2650457875d8439efff1b63eecc70af0c5d7ad1dd5941a74f854941ffb8774e6fea51d866bf0de7bde4e59d01562b2cec10e17d6b4a4b7fac7c0a9" + } + ], + "purl": "pkg:npm/postcss-selector-parser@6.0.13", + "type": "library", + "bom-ref": "pkg:npm/postcss-selector-parser@6.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-svgo", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0fbe4ab07d739b966b1f2c4f6a4031256b64c977b0e6ac12ef4bf9e9ec70bf0e78d9df4246d4e8efc2b459e171641e06ec95ca28c6c466d65ac9319d224cbf78" + } + ], + "purl": "pkg:npm/postcss-svgo@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-svgo@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-unique-selectors", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4988e0e510baf3f0bd87c317cf9e1396658583c551d62fcdee7cebfce0dadc822a48ed369e46c6ad0212b84ebdbf6626257692bfc01bf0e410f7a9f68af7a18" + } + ], + "purl": "pkg:npm/postcss-unique-selectors@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/postcss-unique-selectors@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss-value-parser", + "version": "4.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d4d342b3abaeadf9156de5c6e12f09153f6dd7d9b8e480a789ff3358b779a0f499e74427c0c7caf87de3bf8d3c7788f0ffb06db6fe5ac52e48887a0b69534779" + } + ], + "purl": "pkg:npm/postcss-value-parser@4.2.0", + "type": "library", + "bom-ref": "pkg:npm/postcss-value-parser@4.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "postcss", + "version": "8.4.31", + "hashes": [ + { + "alg": "SHA-512", + "content": "3d2d3c21ba226bd9adb3fdb2815dde2e96398219d471f2d5fc45d3396d44daa63124a186054b4d8cdefa1581e732cdfa4660119f8d5b0b40199a7fab474395a5" + } + ], + "purl": "pkg:npm/postcss@8.4.31", + "type": "library", + "bom-ref": "pkg:npm/postcss@8.4.31", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "prelude-ls", + "version": "1.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "be47033eb459a354192db9f944b18fa60fd698843ae6aa165a170629ffdbe5ea659246ab5f49bdcfca6909ab789a53aa52c5a9c8db9880edd5472ad81d2cd7e6" + } + ], + "purl": "pkg:npm/prelude-ls@1.2.1", + "type": "library", + "bom-ref": "pkg:npm/prelude-ls@1.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "prelude-ls", + "version": "1.1.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "21932a549f5e52ffd9a827f570e04be62a97da54" + } + ], + "purl": "pkg:npm/prelude-ls@1.1.2", + "type": "library", + "bom-ref": "pkg:npm/prelude-ls@1.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "prettier", + "version": "2.7.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ba3a693be32474faa854836e0c50d12c2966ec3efca9b0edd3f351fb0a7916a1193a84cd0233c75a3d7b41186eee07881c97dc361464d57550985f01a77c9efa" + } + ], + "purl": "pkg:npm/prettier@2.7.1", + "type": "library", + "bom-ref": "pkg:npm/prettier@2.7.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "prettier", + "version": "2.8.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc84b846573614d8740724a4dd691deb19b0c41d05a4e9dd5b97e2b0ce47f21b194b1536556541e425889088d6beb1e3221c64da0ddb7cc28cf3bccd4eb65d77" + } + ], + "purl": "pkg:npm/prettier@2.8.4", + "type": "library", + "bom-ref": "pkg:npm/prettier@2.8.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pretty-format", + "version": "27.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d1fdcfa9bc5739da72e298b44e6239d73eda256b09beb960f1af8163b8b0cb527fa4b569d237ce752a81f01f3ceaabaadf08e8e4ccdf052e00eb4ae6fa503b8" + } + ], + "purl": "pkg:npm/pretty-format@27.3.1", + "type": "library", + "bom-ref": "pkg:npm/pretty-format@27.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pretty-format", + "version": "27.5.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "41bd60cb93ab3f9fb30dfd81be7cdd9778ec4dfd6a5d531acdbbc2a0a86d2aa56ce3f60ae28cd7e2029024957235ef9c6a334f9f42a80b4302dc552668758499" + } + ], + "purl": "pkg:npm/pretty-format@27.5.1", + "type": "library", + "bom-ref": "pkg:npm/pretty-format@27.5.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "prismjs", + "version": "1.28.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f1a697758be5d45ee20bb5e6d6ca6a49a63f389069616deff8a27e175ee2631bdd73cb1f8d6d7de0238ae705613195f8e6d1ad7a205081dbc3fe7871711c3297" + } + ], + "purl": "pkg:npm/prismjs@1.28.0", + "type": "library", + "bom-ref": "pkg:npm/prismjs@1.28.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "prismjs", + "version": "1.27.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b75dc118f52514347bc110799100c6e238e5ed77ae1fa8db246b75d491cf2fdeaac2c107357dbeebcb455ea735fe4fbf8c02ec6d2589294393fe1718019e4b90" + } + ], + "purl": "pkg:npm/prismjs@1.27.0", + "type": "library", + "bom-ref": "pkg:npm/prismjs@1.27.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "promise-inflight", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "98472870bf228132fcbdd868129bad12c3c029e3" + } + ], + "purl": "pkg:npm/promise-inflight@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/promise-inflight@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "promise", + "version": "7.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9e89505d9ff82fe6cffd41a591f688ba35fd04ac46c2643d393e263ade72bf2f222b5877c2a4c42428a3cc600d4c20a5f675a3638d63bb2027d8add0d612cb4e" + } + ], + "purl": "pkg:npm/promise@7.3.1", + "type": "library", + "bom-ref": "pkg:npm/promise@7.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "prompts", + "version": "2.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "37136ffe42e0b8203ba778c4f282f668406cac95a001a901a609a02ba9693d657e5ae3a663aaf6ff36c05673fe4fc6d0940d27cc75d2252256d07abbca5683d9" + } + ], + "purl": "pkg:npm/prompts@2.4.2", + "type": "library", + "bom-ref": "pkg:npm/prompts@2.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "prop-types", + "version": "15.8.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a23f3b0a064809dba5528868815011ec08e50b4df6ed4e1e9782fa780bcea827ae74c0d553435384d695f9bf437f87578123f58173139cf7617deff6a831f972" + } + ], + "purl": "pkg:npm/prop-types@15.8.1", + "type": "library", + "bom-ref": "pkg:npm/prop-types@15.8.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "prop-types", + "version": "15.7.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "f1042291d1fbfff476beeac8252bad675b261d84dc2e945610e9479f37161e6058ace194cac2b04acac2f3d0428858f709badf27f9d715d25ea4e56b6351821d" + } + ], + "purl": "pkg:npm/prop-types@15.7.2", + "type": "library", + "bom-ref": "pkg:npm/prop-types@15.7.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "propagate", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "bc6ae139abcf493cf841536e04d75c35778f35d34c68ed718fdc81787d527103e393fae183db129425cf84c905b9a34d5bfb324ef62ab276c82713017d16db6a" + } + ], + "purl": "pkg:npm/propagate@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/propagate@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "property-information", + "version": "5.6.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6141d23e4f80df460fbfed107fc8bd31b7defc2d2174f5e4d6cd633d54e857ca64f0142da70d7472df3d128ece5a4badaf0aaf4f47a2700c653a0ddd380bbc24" + } + ], + "purl": "pkg:npm/property-information@5.6.0", + "type": "library", + "bom-ref": "pkg:npm/property-information@5.6.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "property-information", + "version": "6.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9266b853b005093c29aaae6dc330b56152035d2aa0eaa40ae89374b263b0f1f811cb53a4322d02612cc59accba767a927a76a602d8f40b25cc509d4c7faa113a" + } + ], + "purl": "pkg:npm/property-information@6.2.0", + "type": "library", + "bom-ref": "pkg:npm/property-information@6.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "proxy-from-env", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0fece439109b03d7f5b5d5912b445a091dc63efe7470cc5caf3e17f24e4b4d2503d43930e3b98a24465036e9c8b514e45b082d6944a8d515454481bd65788562" + } + ], + "purl": "pkg:npm/proxy-from-env@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/proxy-from-env@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "psl", + "version": "1.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "44874ecf2a1abcafa1035f0e186583a944ec08b86d03b21c67fe8d0ace1f14968704369bfa90c3983201c96151409ab609deebd4ea10c4118a39acedabe86321" + } + ], + "purl": "pkg:npm/psl@1.8.0", + "type": "library", + "bom-ref": "pkg:npm/psl@1.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "punycode", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5d1b118dd7fe8f99a5fb2ffa18a1cf65bac5ffca766206b424fb5da93218d977b9a2124f0fdb1a0c924b3efa7df8d481a6b56f7af7576726e78f672ff0e11dd0" + } + ], + "purl": "pkg:npm/punycode@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/punycode@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "pure-color", + "version": "1.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "405003627b15a01330d6cad6ece54a1188c6f8c6c86b8f6ce78c35300d440d8eabdabfec4dc28a62a457d5fe0662f9d73fb78dfcf7bd1c5717fa1c339ab5d11c" + } + ], + "purl": "pkg:npm/pure-color@1.3.0", + "type": "library", + "bom-ref": "pkg:npm/pure-color@1.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "querystringify", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "148aa08f6114bd36bb479d2ed2b1acc937edce3626bff6b784edf8e5b64daea69b36a8ed8220cc826a389a452377e9f3539a05ddd0a52aa1483d42b26d4caaa1" + } + ], + "purl": "pkg:npm/querystringify@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/querystringify@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "queue-microtask", + "version": "1.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "36e68d49ae9f94a4f925a498433268934e09cd32f5080e9a1a1bf9adf2d6dcf82a03e3360a1a59427002f21f22e19164052f17e51aa40c11c0eebe217a3dcaf4" + } + ], + "purl": "pkg:npm/queue-microtask@1.2.3", + "type": "library", + "bom-ref": "pkg:npm/queue-microtask@1.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "quick-lru", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5aec802d18d63c31adb7fc3326269d3b901763ef2167cd215697ba3328af82b691116ef9d57dd26e146f1b778b28e60dfbc544bea2dc7f7c1d9ede386784b848" + } + ], + "purl": "pkg:npm/quick-lru@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/quick-lru@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "randombytes", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "bd897788e5fee022945aec468bd5248627ba7eca97a92f4513665a89ce2d3450f637641069738c15bb8a2b84260c70b424ee81d59a78d49d0ba53d2847af1a99" + } + ], + "purl": "pkg:npm/randombytes@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/randombytes@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-base16-styling", + "version": "0.6.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "caf87fec202b71e47f8cd0135ce28396f4e73ca3e6199cfbcec7a74378d4c0bcc790d511d02bd8df219825b589fe79f1b0bf12826b7970edff4882d5b8f3ba4d" + } + ], + "purl": "pkg:npm/react-base16-styling@0.6.0", + "type": "framework", + "bom-ref": "pkg:npm/react-base16-styling@0.6.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-clientside-effect", + "version": "1.2.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "5c618645000a63eab6e4bcfd6bfe043eaa26ed6463cf7cfd4769388e154a03fa6e4051ffe4db76eef15962a9789b835535d52f5fc3d2dceeebfd9ce6edc8d496" + } + ], + "purl": "pkg:npm/react-clientside-effect@1.2.6", + "type": "framework", + "bom-ref": "pkg:npm/react-clientside-effect@1.2.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-dom", + "version": "18.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7d4d53c73ec1b9d9af6a6a7b6ec85ee198b7d9dd2597b79cb7e71cc4dbbd16539b4fad3918e101f017cee2d991277f51e598fcdf5542a6f434e503c15b9c9bfb" + } + ], + "purl": "pkg:npm/react-dom@18.1.0", + "type": "framework", + "bom-ref": "pkg:npm/react-dom@18.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-fast-compare", + "version": "3.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "aed18898f6746322ebb1c288f714e957ca6c77a23c540b63282cd00e5cf20efa8903c5ce5bbf135d843035135df20f096670eef2af45bbfd6fe073c057055d1c" + } + ], + "purl": "pkg:npm/react-fast-compare@3.2.0", + "type": "framework", + "bom-ref": "pkg:npm/react-fast-compare@3.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-focus-lock", + "version": "2.9.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "ee911d5f232c7aa9b79158e17551f5f2ca2fa5aac0ccb83987a5af231eff0a4dde92386bac33047a01d26b7b30c02f3081f75dec321d5154467a21d3f7fed282" + } + ], + "purl": "pkg:npm/react-focus-lock@2.9.4", + "type": "framework", + "bom-ref": "pkg:npm/react-focus-lock@2.9.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-icons", + "version": "4.9.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "8a352716bfffc9c79b3aaba3b6ab55f4f152ec98e15a0d1053aca4511547b8be1c6e87ef4427f77fa18c9fdf9f064b441503885599ee0182d9762c9a75141116" + } + ], + "purl": "pkg:npm/react-icons@4.9.0", + "type": "framework", + "bom-ref": "pkg:npm/react-icons@4.9.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-is", + "version": "16.13.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "db87baca71361fe38ab7892ab0ebcd77c901a55eb9ce8c5b038055b04381dc0455590922fc31f3694a02e4ab8e37f06271c0da0824d906e39c7d9b3bd2447c6d" + } + ], + "purl": "pkg:npm/react-is@16.13.1", + "type": "framework", + "bom-ref": "pkg:npm/react-is@16.13.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-is", + "version": "17.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "c361accae90beb62099e569f7ff9d17a03d047de02fd75da9af3169921d1278cbb4ecff8a1c1919931ef3acf0f484ea90777563ab0ff9ee7ae539b1db81b10e3" + } + ], + "purl": "pkg:npm/react-is@17.0.2", + "type": "framework", + "bom-ref": "pkg:npm/react-is@17.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-is", + "version": "18.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c56183216eb1f76d71b733e486250bb6d8491e826f05b177ab6e9fce5a0f08ad21b2fc6d3d57a5bdfb70df38db1d64a4476926f59fb8bb16c30caffa670f41f3" + } + ], + "purl": "pkg:npm/react-is@18.2.0", + "type": "framework", + "bom-ref": "pkg:npm/react-is@18.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-json-view", + "version": "1.21.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "d77a7c211123f7fc7f61ee1623f2698e1a08c2ecc481402d80964d0497247f326dd6aca1db805d4e6e9440d1a7c93abd75aa5076baafaae653a37773d57e828f" + } + ], + "purl": "pkg:npm/react-json-view@1.21.3", + "type": "framework", + "bom-ref": "pkg:npm/react-json-view@1.21.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-lifecycles-compat", + "version": "3.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "7c10126c0e8b9ce53d74e536796eda43cc666014975085abf94985f5bd5e7d905acc634efab7174ff89c74a9d89b6a53c1c472955518c16ec7d4f1df2de915cc" + } + ], + "purl": "pkg:npm/react-lifecycles-compat@3.0.4", + "type": "framework", + "bom-ref": "pkg:npm/react-lifecycles-compat@3.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-markdown", + "version": "8.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "da8c476baa03c5cd5aa60fc69dcd46a21d3ab7707ad7bc5ecb0a88ffddb098357d1442c8e9ac9193081eef0ec3a04a8cd204696464cd53ac501be6292484a756" + } + ], + "purl": "pkg:npm/react-markdown@8.0.4", + "type": "framework", + "bom-ref": "pkg:npm/react-markdown@8.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-query", + "version": "3.39.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a98293d5b6af74389065b9e0599c8fa2d9415737018c3604260e5140b05afbee48c798e37db1182661d2651643f944951d44af97f7b2f47bbe41f1754002bcd0" + } + ], + "purl": "pkg:npm/react-query@3.39.1", + "type": "framework", + "bom-ref": "pkg:npm/react-query@3.39.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-remove-scroll-bar", + "version": "2.3.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "8bd18c356c29cfc5e952943a4257af52d1631c6aa73c6e07c6cfb0948267b6eff172c65512925c215ef52b7664a8dcb6ab719f82f903ef2eadfd2bfca1f6126f" + } + ], + "purl": "pkg:npm/react-remove-scroll-bar@2.3.3", + "type": "framework", + "bom-ref": "pkg:npm/react-remove-scroll-bar@2.3.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-remove-scroll", + "version": "2.5.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "2262a1af3249b325c97c16786f3bbc070a646b5e1cfdf42dd24f9cc85a7f3c18537f20e75398633ad338006ff400ccb2f282b339347494380920cee961723493" + } + ], + "purl": "pkg:npm/react-remove-scroll@2.5.5", + "type": "framework", + "bom-ref": "pkg:npm/react-remove-scroll@2.5.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-router-dom", + "version": "6.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b9a263ecb2b2b51c5935057cf916f32569c9f0ada73ec38e12e5fb690b2d94c64a413d35eb80be5f6c3a6e792a537b23b4bbe9779a23adecc0c9f675fb4b12b7" + } + ], + "purl": "pkg:npm/react-router-dom@6.3.0", + "type": "framework", + "bom-ref": "pkg:npm/react-router-dom@6.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-router", + "version": "6.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed68750f3550fad9458e47a8fae8ef8d2a9226692dd7ef093be4f9c6494f960ae1ef4cbba20c7be4e0d15b44e15a163b4beeb210392cf1362bb507bf6a86e805" + } + ], + "purl": "pkg:npm/react-router@6.3.0", + "type": "framework", + "bom-ref": "pkg:npm/react-router@6.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-select", + "version": "5.3.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "5ba22b87b53a1daee9e6e410d999de9a8090f2671f80eb477f0df0b8ccc6e8502ed0ff82622720a1f48b3aaf7b0618ccc7c8d2fa1fb0c1674205e55567d56a95" + } + ], + "purl": "pkg:npm/react-select@5.3.2", + "type": "framework", + "bom-ref": "pkg:npm/react-select@5.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-style-singleton", + "version": "2.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6568f47c710cc96907cca614af606cff8cd4e972e6abd1ec8015119bb839a4055fca7e3d0e052236063677895746561288289ff58046a5095e7b091ca9d75cee" + } + ], + "purl": "pkg:npm/react-style-singleton@2.2.1", + "type": "framework", + "bom-ref": "pkg:npm/react-style-singleton@2.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-syntax-highlighter", + "version": "15.5.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fb3ab69b2a6b1274261f9cb0e86a9cf250f9e501e7a4a694f1339c15e0bf2e0fcc412b3c5249c4034242e274d91850170b62761f28ff8a327b36569bc8f8b682" + } + ], + "purl": "pkg:npm/react-syntax-highlighter@15.5.0", + "type": "framework", + "bom-ref": "pkg:npm/react-syntax-highlighter@15.5.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-table", + "version": "7.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "84d6b3e3282464ee1b1127857e77ce7edef7881523f0ae682a2d447121cf0226c4c9d7ec5f633253a67c282af79afdc2f4aaaa87bd54f83859905be26db9cf6c" + } + ], + "purl": "pkg:npm/react-table@7.8.0", + "type": "framework", + "bom-ref": "pkg:npm/react-table@7.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-tabs", + "version": "3.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe8e767862b114745afacb2e4c481233ca8e467578fa4ee26d6f9a350cca7bee6089f795cfc9cbc42aec23dc5d4617dbd3008b76021a99b2296f5a82c5a30df8" + } + ], + "purl": "pkg:npm/react-tabs@3.2.2", + "type": "framework", + "bom-ref": "pkg:npm/react-tabs@3.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-textarea-autosize", + "version": "8.3.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "09db663fc0dcd7dc4bf3f47ab16bed9270ff7825e442bdf476dbc2e15986227851b1f17c5ff8a15c2abafbd97da9bc662918aae34effef3e5fc44edc55640d81" + } + ], + "purl": "pkg:npm/react-textarea-autosize@8.3.4", + "type": "framework", + "bom-ref": "pkg:npm/react-textarea-autosize@8.3.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react-transition-group", + "version": "4.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd13587d100c959c034abeb3e3334a57ac6ee77fded81b9a05b1a16f26085d3ae682efdb187ce6a8eb3b989489047cbd51df80a47c77423ae4292a75a71be516" + } + ], + "purl": "pkg:npm/react-transition-group@4.4.2", + "type": "framework", + "bom-ref": "pkg:npm/react-transition-group@4.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "react", + "version": "18.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e282fc8af0b3e5910fc9c94541768d92c2b769dbad552f25db1cd953472a105ac4f526fb7c2d0414ae6e124ef8c08ade2f50c44728efb14f75e63d69713dae11" + } + ], + "purl": "pkg:npm/react@18.1.0", + "type": "framework", + "bom-ref": "pkg:npm/react@18.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "reactflow", + "version": "11.7.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "408ebea1cd45b7aa0578b49d1e5a7e4a683299b2394e6e3dc23e49c84f383b8039e3237f2267d868184b8adf4299fcf19fd4f3ead0ea9863066e4e1b76d07cff" + } + ], + "purl": "pkg:npm/reactflow@11.7.4", + "type": "framework", + "bom-ref": "pkg:npm/reactflow@11.7.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "read-pkg-up", + "version": "8.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b27542a8f73392c4f41d2d840be4b152776f4b39fa2d10b0a5f4af2eb21f47904a0d041931a23a8cf442f5d62f6050d102e144027930c30f24041344ff756fcd" + } + ], + "purl": "pkg:npm/read-pkg-up@8.0.0", + "type": "library", + "bom-ref": "pkg:npm/read-pkg-up@8.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "read-pkg", + "version": "6.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5f516eddd3ee93ff192ec321123e5fe301401740d6a0aeea84626f81a8a3a1c5f1066493a0a7db16da9bc4c3bb6d58cd03576613986e0338d78ff7b2f3a8b0f5" + } + ], + "purl": "pkg:npm/read-pkg@6.0.0", + "type": "library", + "bom-ref": "pkg:npm/read-pkg@6.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "readable-stream", + "version": "1.1.13", + "hashes": [ + { + "alg": "SHA-1", + "content": "f6eef764f514c89e2b9e23146a75ba106756d23e" + } + ], + "purl": "pkg:npm/readable-stream@1.1.13", + "type": "library", + "bom-ref": "pkg:npm/readable-stream@1.1.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "rechoir", + "version": "0.7.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "fe78e667cb35c15791ea98d367ed270a7bfc4a964d44c4f60f544b3894044a56050c1bf0a5303829626967eb01278faf86320b45c2bb24815d182771100022b6" + } + ], + "purl": "pkg:npm/rechoir@0.7.1", + "type": "framework", + "bom-ref": "pkg:npm/rechoir@0.7.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "redent", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ead0c0f20f7c59ed337741af55e313f5aac43a74f0f6a334dcbf5c2576828eb8a9d4e3bbeb844304b05fac1e1cc333460e3e4e0398a8ca60bd1a48b381624352" + } + ], + "purl": "pkg:npm/redent@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/redent@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "redent", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b5890391556d62449586e438cc181fbdc8b298769eb9e97ecc52974a17c39c53f94b25443fbaa8ef445fd634ce4c2c77bc63406e7122ff116471f4153080566a" + } + ], + "purl": "pkg:npm/redent@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/redent@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "redoc", + "version": "2.0.0-rc.72", + "hashes": [ + { + "alg": "SHA-512", + "content": "217fd6bd5878377cf0a38b008e7405cfa7df21477a1b8ee171f9713edae9c5b94969e3b2d0c052cf363c7f5efd5a3b2c58f61c4a69a774fe6fd218045c58a29a" + } + ], + "purl": "pkg:npm/redoc@2.0.0-rc.72", + "type": "library", + "bom-ref": "pkg:npm/redoc@2.0.0-rc.72", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "refractor", + "version": "3.6.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "318f56e3520e5b1c64df5a3e62f14237237376473d336d0da192b9beaea392fe08fee876ce459c7ee763d10d5fa2f8d4409acd7b04bd34ccde4eda8f7fe9f910" + } + ], + "purl": "pkg:npm/refractor@3.6.0", + "type": "library", + "bom-ref": "pkg:npm/refractor@3.6.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "reftools", + "version": "1.1.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "62fcfd347f2e147cc3fc05d7f362e2d467403fa1730c1c44670fa78deacd04142ffd71e286ab1602335f5ed6aae100f69784c46559e9e146e4b5d6127a000cde" + } + ], + "purl": "pkg:npm/reftools@1.1.8", + "type": "library", + "bom-ref": "pkg:npm/reftools@1.1.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regenerate-unicode-properties", + "version": "9.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "dc4d7651e3523df8eb8308e447cd66e49ec0c3f4f9e53bbb9d4c995506022843acfb6764c4463e0e93ed6733b862bbae88f6fb36460b55cc890b8fb309b939a4" + } + ], + "purl": "pkg:npm/regenerate-unicode-properties@9.0.0", + "type": "library", + "bom-ref": "pkg:npm/regenerate-unicode-properties@9.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regenerate", + "version": "1.4.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "ceb71e47f5e119853f77fa29af610a3bb6911d47a2048f2a8ed7c7a800d3c1977a4b37f2d7a95aea4a83d0c214b39cf9871e8068a6be3e2c693eb476f3df88d0" + } + ], + "purl": "pkg:npm/regenerate@1.4.2", + "type": "library", + "bom-ref": "pkg:npm/regenerate@1.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regenerator-runtime", + "version": "0.13.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "918d40655af645afadfa9895689e20c5a15a45e6551f8d0028da3b5025fa5be744c01a3fda8649cea7ee375a8bab5a0be39a39e9c3da4d710bc2b4e1f05a6082" + } + ], + "purl": "pkg:npm/regenerator-runtime@0.13.11", + "type": "library", + "bom-ref": "pkg:npm/regenerator-runtime@0.13.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regenerator-runtime", + "version": "0.13.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "a77553f9c38483116c45103d5f896423513e936fc2b672ad53881cc7268252b7a294bfefa88e82759df0c55531dd439483e82750e41071123b066488eb9e8c60" + } + ], + "purl": "pkg:npm/regenerator-runtime@0.13.9", + "type": "library", + "bom-ref": "pkg:npm/regenerator-runtime@0.13.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regenerator-transform", + "version": "0.14.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "78e7fabe46b920ed79d497ecc3634ef56a465f9f16eb05a679f2b7235cc41abd25383d2ef2bc0f68da902f5691c546b12de28edc0acd87755883529b683f8517" + } + ], + "purl": "pkg:npm/regenerator-transform@0.14.5", + "type": "library", + "bom-ref": "pkg:npm/regenerator-transform@0.14.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regexp.prototype.flags", + "version": "1.4.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "7e382010e3b7b2523a5af823c1f9647383454424d902ee429cd7c1779a8e318856767ebb9c9041bb7e3f4e40fef9e78599df02f6bf637d7276efe9d289191250" + } + ], + "purl": "pkg:npm/regexp.prototype.flags@1.4.3", + "type": "library", + "bom-ref": "pkg:npm/regexp.prototype.flags@1.4.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regexpp", + "version": "3.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a6ad9b5a8f66543e379dbb6cdb01afd7b5cb88d2f26be1a4959f246832d5d99d3c8030ac1a99ca9fd04531ea6f5ae1c26f256f63b279a39f8156fa106e69492e" + } + ], + "purl": "pkg:npm/regexpp@3.2.0", + "type": "library", + "bom-ref": "pkg:npm/regexpp@3.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regexpu-core", + "version": "4.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d45e9b62ca188b3ea2b3ea33ef4356babd95961f4a5adb30b91bb324e7de614adf3d7da8f27ef802751568e1836d4a9518ef5f347bb8f3fa6324ee2c355c2c3a" + } + ], + "purl": "pkg:npm/regexpu-core@4.8.0", + "type": "library", + "bom-ref": "pkg:npm/regexpu-core@4.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regjsgen", + "version": "0.5.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "385153dcc7eb1fdd31216f0e392c94ae4e901c3e44f49393786a1d8897814b727a230960cc930d13fd5b664956cf9a1383ef5d08cc847ad725bc255738fa0ddc" + } + ], + "purl": "pkg:npm/regjsgen@0.5.2", + "type": "library", + "bom-ref": "pkg:npm/regjsgen@0.5.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "regjsparser", + "version": "0.7.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "038a5c68e46a98d3035705235a84f3ba1c0c1a93fe3729297ea02c1202351521ff1330bb96b3794cc77e90df180a8bd7fa3329bbc79aa978173c26b483c15035" + } + ], + "purl": "pkg:npm/regjsparser@0.7.0", + "type": "library", + "bom-ref": "pkg:npm/regjsparser@0.7.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "remark-gfm", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "944143a22d8f20227236b00214e7c30f72652e4b926ce6b959df043edd3a1d4769b6ff069f46f161375b53f5d7437b3000f904686c713cdf5c6e7307bd5bb522" + } + ], + "purl": "pkg:npm/remark-gfm@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/remark-gfm@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "remark-parse", + "version": "10.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "d5f5321ebda32ec54e9216ef3d1049e734ca659c83eb267361a5824ba04f05d43cbc4301087fbdccd08303ab444ffcc70a2fe32ea8c25ad9496543e4f836e717" + } + ], + "purl": "pkg:npm/remark-parse@10.0.1", + "type": "library", + "bom-ref": "pkg:npm/remark-parse@10.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "remark-rehype", + "version": "10.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "105991e73a69741a74590783559fdbeba096262a41daad952cd14c69bcc348647ae99d9f4228bcdc6e604c16e01849c4100d1046eb2cbeb147c64d4758626c93" + } + ], + "purl": "pkg:npm/remark-rehype@10.1.0", + "type": "library", + "bom-ref": "pkg:npm/remark-rehype@10.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "remove-accents", + "version": "0.4.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "0a43d3aaae1e80db919e07ae254b285d9e1c7bb5" + } + ], + "purl": "pkg:npm/remove-accents@0.4.2", + "type": "library", + "bom-ref": "pkg:npm/remove-accents@0.4.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "require-directory", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + } + ], + "purl": "pkg:npm/require-directory@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/require-directory@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "require-from-string", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "5dfd2759ee91b1ece214cbbe029f5b8a251b9a996ae92f7fa7eef0ed85cffc904786b5030d48706bebc0372b9bbaa7d9593bde53ffc36151ac0c6ed128bfef13" + } + ], + "purl": "pkg:npm/require-from-string@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/require-from-string@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "requires-port", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a280e087728714dd7383271b2ef22fe3f13f6dcd3e1a74789e730391450d19645729eda8705ee454d66fb2b8ef740b9654c867867e87070c8d783372f7c8301" + } + ], + "purl": "pkg:npm/requires-port@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/requires-port@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "resolve-cwd", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3ab65a5f631bfab242a47ffa0a94aab7dc4556937efb1d355e737689ef60e8fe7fdf17a52c0917595003a5dcf52070ff2857c45f213a574534d4e43750edab12" + } + ], + "purl": "pkg:npm/resolve-cwd@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/resolve-cwd@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "resolve-from", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a5bfcc6265ecb40932b11171f2988d235b4614d408140def904dc6ab812e035745ea01e9ffebe066ab021896a9bf2f0ddd0fb8a3b170beab8f25c9d9ed1632e2" + } + ], + "purl": "pkg:npm/resolve-from@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/resolve-from@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "resolve-from", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a9883d28fdb8743e6a91af49e3b774695932d0df9be1f4d4f3d2cdf620e78c1e706a4b220b8f6bbcc0743eb509406a13987e745cf8aa3af0230df6a28c6c5867" + } + ], + "purl": "pkg:npm/resolve-from@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/resolve-from@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "resolve.exports", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "27597e671c69e172b72d40d9f66eb42d1245fe601ee33e9ae31c9a6cf1e4ee9bcae6ddf9740095df68888c90c57966457d994edbdc3a499ebb927474b47cc9b5" + } + ], + "purl": "pkg:npm/resolve.exports@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/resolve.exports@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "resolve", + "version": "1.20.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c043413ede324b3838c9b1505b64d3d73310b9c3caf791d287f9ead82153655386baddbea50bd2b20b5d6b8776e98ad872bd3aef08db9b3386f1bc833c15fadc" + } + ], + "purl": "pkg:npm/resolve@1.20.0", + "type": "library", + "bom-ref": "pkg:npm/resolve@1.20.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "resolve", + "version": "1.22.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "49bfa68cd1ce50bb01bfcd7c4f8d2a48f7918ae58bc9a18c6b97b0c9d44b1629a77a2c66572db3762bd197e005ea36983c2f044711839854a2aae8ba49f3ddfa" + } + ], + "purl": "pkg:npm/resolve@1.22.2", + "type": "library", + "bom-ref": "pkg:npm/resolve@1.22.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "resolve", + "version": "1.22.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "1e1b6bc349cb792ac543ba613e9e0e39c5632cf21e327465af999c9d5b8c7bb33fede067f7c0378661512e8168dc32d9922bd26308515094f23f2580939e962f" + } + ], + "purl": "pkg:npm/resolve@1.22.0", + "type": "library", + "bom-ref": "pkg:npm/resolve@1.22.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "resolve", + "version": "2.0.0-next.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "5bc2ee712ca7294203bbdca5ada6bbb9e559ee1734b8080907156c41228e5ceca57bc6bddea5e1733f9701767c6c8ab677a8b812175d9fa12fb7ed3f5302a4e9" + } + ], + "purl": "pkg:npm/resolve@2.0.0-next.3", + "type": "library", + "bom-ref": "pkg:npm/resolve@2.0.0-next.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "reusify", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "53d9c7f3c6b77dcfde902175974fd43f5228b22b888f24e1ee106f5d530762055c7c6bedf3ded782e8f650e2c3788e411b69bbfeec3268b553e9f6ed0b04f2cf" + } + ], + "purl": "pkg:npm/reusify@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/reusify@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "rimraf", + "version": "3.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "25990931990018514f3f662a5d95cf6cc94c060b31cc4f082ece253085ffda8d0bf54070f4efd8de8eb0170fe2f582daa5c5095b0a9b8b791dc483dd0bad9320" + } + ], + "purl": "pkg:npm/rimraf@3.0.2", + "type": "library", + "bom-ref": "pkg:npm/rimraf@3.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "rimraf", + "version": "2.7.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b968db68a20add3d4e495a6dcd7ecd97a3ef437a801ad284b5546346e6b38df2f7071e5e238d3d5594aa80d0fee143679b32d574f8fd16a14934fa81645bdee3" + } + ], + "purl": "pkg:npm/rimraf@2.7.1", + "type": "library", + "bom-ref": "pkg:npm/rimraf@2.7.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "run-parallel", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e65e15c9947ce8b67f943c594d1ea3a8bf00144d92d0814b30fdba01b8ec2d5003c4776107f734194b07fb2dfd51f0a2dddcf3f0e950b8f9a768938ca031d004" + } + ], + "purl": "pkg:npm/run-parallel@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/run-parallel@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "rw", + "version": "1.3.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "3dd85d5b2f3d4a26688012dac38db375eaad449fffcc57763e041abdc2020d48094f9a16d7440244a6c9e9b838af4fd463633a056779b64c6e18546f0a481f1d" + } + ], + "purl": "pkg:npm/rw@1.3.3", + "type": "library", + "bom-ref": "pkg:npm/rw@1.3.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "sade", + "version": "1.8.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c5a9770995f55e5a3f938029c0216b1d50028bd7c1a89ed5fa6c2106cb9fff520e29b072d3df057b1f966bfe5032e6f0d3da5267fbbc118f0f5a07af26c5e9d4" + } + ], + "purl": "pkg:npm/sade@1.8.1", + "type": "library", + "bom-ref": "pkg:npm/sade@1.8.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "safe-buffer", + "version": "5.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ae9dd2a34eca71d9a629b1af81a37141226bedb1954959394bd12ad45fa9a5b468ef4f9879a0f1930e4377c34f37e183e9b8e7626d95b8fb825e6a6e62f9825d" + } + ], + "purl": "pkg:npm/safe-buffer@5.2.1", + "type": "library", + "bom-ref": "pkg:npm/safe-buffer@5.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "safe-buffer", + "version": "5.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "19dd94641243917958ec66c9c5fb04f3f9ef2a45045351b7f1cd6c88de903fa6bd3d3f4c98707c1a7a6c71298c252a05f0b388aedf2e77fc0fb688f2b381bafa" + } + ], + "purl": "pkg:npm/safe-buffer@5.1.2", + "type": "library", + "bom-ref": "pkg:npm/safe-buffer@5.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "safe-regex-test", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "241514cf23a01305d063536e3edbdc8ffa9c0436c3984bd6b9f8659d76489bbe43107a7e69f335af5ba326926c57f812338b79f6da43c8f8b5b1de9968f15fb0" + } + ], + "purl": "pkg:npm/safe-regex-test@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/safe-regex-test@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "safer-buffer", + "version": "2.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "619a372bcd920fb462ca2d04d4440fa232f3ee4a5ea6749023d2323db1c78355d75debdbe5d248eeda72376003c467106c71bbbdcc911e4d1c6f0a9c42b894b6" + } + ], + "purl": "pkg:npm/safer-buffer@2.1.2", + "type": "library", + "bom-ref": "pkg:npm/safer-buffer@2.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "sax", + "version": "1.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "36a543bfd4e900d523166d0df2e3391b12f7e9480a8bdfdab59c3ec7b6059d0f1c9301462ab978c57e325adadecb75099b99cfd6451b9d880ba29a963524615b" + } + ], + "purl": "pkg:npm/sax@1.2.4", + "type": "framework", + "bom-ref": "pkg:npm/sax@1.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "saxes", + "version": "5.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e4b061d5396cf1cf718068f0dd0accc044e64cc564d28160beb152bd6c7ada5951da1704227aca359d866420aebb2da5bd6add9798e16e97aa73985160a14e73" + } + ], + "purl": "pkg:npm/saxes@5.0.1", + "type": "framework", + "bom-ref": "pkg:npm/saxes@5.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "scheduler", + "version": "0.22.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e90026d4181023cf0d3d8ca680640b09982f7a9e05c9e3c3585a5754afb33525201f096aa49cbc54487c12dd0ac530024b8556c0ca2eb01125019387f67924a1" + } + ], + "purl": "pkg:npm/scheduler@0.22.0", + "type": "library", + "bom-ref": "pkg:npm/scheduler@0.22.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "schema-utils", + "version": "2.7.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "48788db4c394196050270cc84a25582aef361a257841819e3e9de8765635b6e28eee03eda61013e51fe9cb47c0eb1b5b80b2ff46fb4966753d6fcb34175ab45e" + } + ], + "purl": "pkg:npm/schema-utils@2.7.1", + "type": "library", + "bom-ref": "pkg:npm/schema-utils@2.7.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "schema-utils", + "version": "3.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6393d0c52e084e50be11a84bb97698f3a4d77d1ec3739970dbde1a9573aaf3a2401c28a100865faaff273425af68426f682e75b8df616cb19e57470505d1fe17" + } + ], + "purl": "pkg:npm/schema-utils@3.1.1", + "type": "library", + "bom-ref": "pkg:npm/schema-utils@3.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "schema-utils", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d5e7725ca821e979c9b09490f262965e737f0556886c530ba68b9152b5e056aed66277b9930dcc5bb50f84ee38b915d0488a53497a096e6ad1d97d30f64513ca" + } + ], + "purl": "pkg:npm/schema-utils@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/schema-utils@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "semver", + "version": "7.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8607acd503d2d687ace8bd840b00b1f0bf9adbd8f1c69498b795f8aa207c51d2ebb00a079f70e25ce7dbfd7efd70f066d2b70c6ebaaa808c8f4d30038e82ad4" + } + ], + "purl": "pkg:npm/semver@7.0.0", + "type": "library", + "bom-ref": "pkg:npm/semver@7.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "semver", + "version": "6.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "051ed5bc30951cefaadb10445ac9314ba0c9135a919dbec3c7352ba206fbd425a849f89c07162c88019df8a9749a6abf329ac6f7202b464cab4314cee978cccc" + } + ], + "purl": "pkg:npm/semver@6.3.1", + "type": "library", + "bom-ref": "pkg:npm/semver@6.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "semver", + "version": "7.5.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "d5b09211257a3effa2db51efa71a770f1fa9483f2520fb7cb958d1af1014b7f9dbb3061cfad2ba6366ed8942e3778f9f9ead793d7fa7a900c2ece7eded693070" + } + ], + "purl": "pkg:npm/semver@7.5.4", + "type": "library", + "bom-ref": "pkg:npm/semver@7.5.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "serialize-javascript", + "version": "5.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "49a68d6a5f629843bbdfb1f6734e4e834ffc2d45c6ec49ec67231af0cce49ae1e810b7d3eadc6e8f470ca918facdf3ca9e6435c9ab11e0f08973cc7e3382523c" + } + ], + "purl": "pkg:npm/serialize-javascript@5.0.1", + "type": "library", + "bom-ref": "pkg:npm/serialize-javascript@5.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "serialize-javascript", + "version": "6.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "42bdd3a2cbe0b85b7c78f5aab2f45facac905c8896fa719b629cbc5cadb83501c4f3771ac56b7e988ca64d3d7d0c615b35634b7c4c2cae44a637ae2555607d6a" + } + ], + "purl": "pkg:npm/serialize-javascript@6.0.0", + "type": "library", + "bom-ref": "pkg:npm/serialize-javascript@6.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "setimmediate", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "3004c9759a7cb0ba8397febc2df4266cff3328f2d0355e81219a0882bb1c14343e46cbcafc1c5e0d03a0cb128aa21d32ffc87706a5459c2a90fe077eade8885c" + } + ], + "purl": "pkg:npm/setimmediate@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/setimmediate@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "shallow-clone", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ffa2aa5fe19551da8fb8f3ddd8bc430f1cd7e8201b8c97a100038a94da6aa94a40a8f33a1de2fc7fea376be26cc868e7da5bf4598f14b1381426353d3a4e7934" + } + ], + "purl": "pkg:npm/shallow-clone@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/shallow-clone@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "shebang-command", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "907c6bdb366962d766acdd6a0e3aeb5ff675ad1d641bc0f1fa09292b51b87979af5ecc26704d614d6056614ce5ada630d7fc99a7a62e0d8efb62dbdb3747660c" + } + ], + "purl": "pkg:npm/shebang-command@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/shebang-command@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "shebang-regex", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "efef9d161b5cc77df9dee05aabc0c347836ec417ad0730bb6503a19934089c711de9b4ab5dd884cb30af1b4ed9e3851874b4a1594c97b7933fca1cfc7a471bd4" + } + ], + "purl": "pkg:npm/shebang-regex@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/shebang-regex@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "should-equal", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "64fdfa4ccacaf5eb84b9641806283d5b9e563c2eeea37eeacc01266e31f3e207f2b97ac452017c714bd054efb0f9ddce31f3ef491409db69529bc310278dcb4c" + } + ], + "purl": "pkg:npm/should-equal@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/should-equal@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "should-format", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "9bfc8f74fa39205c53d38c34d717303e277124f1" + } + ], + "purl": "pkg:npm/should-format@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/should-format@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "should-type-adaptors", + "version": "1.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "240e217682e737e91e6c4a7656cf1e05ef60eeecb4cdb468f9131c53412c372f91fa4d38f4a8be379b53e496a0b2dda0ec40236be7ae16ea171426bcbc89257c" + } + ], + "purl": "pkg:npm/should-type-adaptors@1.1.0", + "type": "library", + "bom-ref": "pkg:npm/should-type-adaptors@1.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "should-type", + "version": "1.4.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "0756d8ce846dfd09843a6947719dfa0d4cff5cf3" + } + ], + "purl": "pkg:npm/should-type@1.4.0", + "type": "library", + "bom-ref": "pkg:npm/should-type@1.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "should-util", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "a1717cb5fc71e5c0e4f2bda462a964509cd9a4306a558fc82365a1bd4d27f58dd762f01846679a7f53efbc8bd380f9efe0a27e112e4cd0fc83ab9269f98832da" + } + ], + "purl": "pkg:npm/should-util@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/should-util@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "should", + "version": "13.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "8202deb0bb6edb1a7e67123ecac25398d8e1d94d13b02fab43fa5f103f5b5196780ca79f3f6ec3fbb6095554ef2ac9a32e9222f6301aee2b700c69030e6b7519" + } + ], + "purl": "pkg:npm/should@13.2.3", + "type": "library", + "bom-ref": "pkg:npm/should@13.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "side-channel", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "ab95cfcada85108287906762308ad8d749af2d1be7421e36ffe1a8065156ddbd8b5cb136c71269645766f78c1ed016a85774702721aa839c12edea714efd19bf" + } + ], + "purl": "pkg:npm/side-channel@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/side-channel@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "signal-exit", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "554278f450bc5353b1c192f121b4d3ac3bcb9dfffa4c383165c2bcc3147ccecd77c69c7bc5b1bad2774196136b162d8432e151a1e0e824eef0b6148bab8d848c" + } + ], + "purl": "pkg:npm/signal-exit@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/signal-exit@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "signal-exit", + "version": "3.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "29670e88a7908fa6725f1ef3ab863148c807465a1de1ccde05066b3dbf0e29ca2172a0174a19bb136d2410c95ef5606ddba8457007f4a8b39ca79ce663b90ea9" + } + ], + "purl": "pkg:npm/signal-exit@3.0.5", + "type": "library", + "bom-ref": "pkg:npm/signal-exit@3.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "signal-exit", + "version": "4.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "318dbfa86c787a7ca3a6b42715a66c1e26f761a761dc85f25760b7db5198d298c67d506ee2e9f4b83264c20771a8ef91771f09313f087c9211c1b615cf739bdd" + } + ], + "purl": "pkg:npm/signal-exit@4.0.2", + "type": "library", + "bom-ref": "pkg:npm/signal-exit@4.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "simple-swizzle", + "version": "0.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "240fff910819b5bb98f379bec53fad5c9926267706313153f82fa0da1d91f6ec64608ac4db2cbdb2099c2e10a7c39eff5920fe121dc9f7b14f1031676d79c352" + } + ], + "purl": "pkg:npm/simple-swizzle@0.2.2", + "type": "library", + "bom-ref": "pkg:npm/simple-swizzle@0.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "sisteransi", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "6cb186951d50c417329e7d9de589835f83068e566fcb631104344d1cb27c548ea5ebef45522c9314d27422f78e48fd1b7178150cf45c7c6a80d298daa94a5f56" + } + ], + "purl": "pkg:npm/sisteransi@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/sisteransi@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "slash", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "83d43585a79bcb7e8e492b706f89ed08618668ab1a5528d0ebc7c1c6841cbad9797d2d6fb98d7c1f7c12b778c5c85b6b931f8acf45751bce40e0cc80743322d9" + } + ], + "purl": "pkg:npm/slash@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/slash@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "slice-ansi", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8c08c7e1634e347151d3e372bd045ca0a986d43c564a1ce83b2bbde6b5358945bf29c8fddfcdfe08c5de52cdd10943a311520fd606738bc60859b4a2aeac435" + } + ], + "purl": "pkg:npm/slice-ansi@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/slice-ansi@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "slugify", + "version": "1.4.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "b5ffa1e56d48ae3366ffdaca2a3d0953630332bba2a29c748e3540e7309d06d7068dfa74f9ce6b1f0ff30032c2dc878a9461ed55b1eda5fcef600d0e613f872a" + } + ], + "purl": "pkg:npm/slugify@1.4.7", + "type": "library", + "bom-ref": "pkg:npm/slugify@1.4.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "source-list-map", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa743b81533118dc6c88be2512e2707bf4e8f149caedf02799b184107f11a4ba2eb8a6de126d2585b415148acd4ae07e1bbb55ac0955b198044d3e679637fe23" + } + ], + "purl": "pkg:npm/source-list-map@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/source-list-map@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "source-map-js", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "4745ef549f56bac2e2a930848860a620208ca65702908c30475d663920fd091e6ef885d8762b1e784b970950234b9e33ab090b70f367994e0e789ead52b5a10f" + } + ], + "purl": "pkg:npm/source-map-js@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/source-map-js@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "source-map-resolve", + "version": "0.6.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "29706bf5dfdf3bf6d6a3decd5ec3c8016d5b15204eb829e36cd4c130eecde7d86cbf98bdcb34437dc630c2dd25d38f95aa7282f84c33bc96483ffaa4b8c811ff" + } + ], + "purl": "pkg:npm/source-map-resolve@0.6.0", + "type": "library", + "bom-ref": "pkg:npm/source-map-resolve@0.6.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "source-map-support", + "version": "0.5.21", + "hashes": [ + { + "alg": "SHA-512", + "content": "b811d4dcbddccec232617297f3c7ddac6a2fc5d482a13183459e92617b524712d95331e0e4fffae87b7aba85251eef4466877e8a75e12a8dea420c17513ff2d7" + } + ], + "purl": "pkg:npm/source-map-support@0.5.21", + "type": "library", + "bom-ref": "pkg:npm/source-map-support@0.5.21", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "source-map", + "version": "0.5.7", + "hashes": [ + { + "alg": "SHA-1", + "content": "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + } + ], + "purl": "pkg:npm/source-map@0.5.7", + "type": "library", + "bom-ref": "pkg:npm/source-map@0.5.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "source-map", + "version": "0.6.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "52381aa6e99695b3219018334fb624739617513e3a17488abbc4865ead1b7303f9773fe1d0f963e9e9c9aa3cf565bab697959aa989eb55bc16396332177178ee" + } + ], + "purl": "pkg:npm/source-map@0.6.1", + "type": "library", + "bom-ref": "pkg:npm/source-map@0.6.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "source-map", + "version": "0.7.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "0a40a3ea088ddd2fa7f6aad88814d7e60cacb6510d9d15b98d978d2c7a5ee9ab9ef92ac7706e55630ba3856f6ce1d637d66106b31043ac747aa08ebd7d35ec69" + } + ], + "purl": "pkg:npm/source-map@0.7.3", + "type": "library", + "bom-ref": "pkg:npm/source-map@0.7.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "space-separated-tokens", + "version": "1.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "abf25255dd4ba6dce17f96e4626e286f88963e3c742a245edec44504dad5a9b26415a066e6f6dba30cb59b29a83cd2d16b9dbea1a74e849f8ae3dc2c49e4a34c" + } + ], + "purl": "pkg:npm/space-separated-tokens@1.1.5", + "type": "library", + "bom-ref": "pkg:npm/space-separated-tokens@1.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "space-separated-tokens", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "3c41a5030ac6f325c65d18d6df67c66e0eba24094e0306ce6eea95a09a6ffe6460a160d07e01f5c033efb735b25123405c119293c87be796036db704cb7487d9" + } + ], + "purl": "pkg:npm/space-separated-tokens@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/space-separated-tokens@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "spdx-correct", + "version": "3.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "70e61c516c210ae1c25e2e3d4611510b22442b788f8f5662cfd0e9562577b5b64ec170f8f50cc837732938b24dc61daac2ada524965a28c570f6a362e234c2d3" + } + ], + "purl": "pkg:npm/spdx-correct@3.1.1", + "type": "library", + "bom-ref": "pkg:npm/spdx-correct@3.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "spdx-exceptions", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fed4eb60e0bb3cf2359d4020c77e21529a97bb2246f834c72539c850b1b8ac3ca08b8c6efed7e09aad5ed5c211c11cf0660a3834bc928beae270b919930e22e4" + } + ], + "purl": "pkg:npm/spdx-exceptions@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/spdx-exceptions@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "spdx-expression-parse", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "71ba87ba7b105a724d13a2a155232c31e1f91ff2fd129ca66f3a93437b8bc0d08b675438f35a166a87ea1fb9cee95d3bc655f063a3e141d43621e756c7f64ae1" + } + ], + "purl": "pkg:npm/spdx-expression-parse@3.0.1", + "type": "framework", + "bom-ref": "pkg:npm/spdx-expression-parse@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "spdx-expression-validate", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6f7c327592ccf9373a085bda44304e17d77bea81881cd08b6057876dfb455d45a39df65681a9e60e6bed339b26d5c47025cfd50c130bc861abb0b15dd6f3b16e" + } + ], + "purl": "pkg:npm/spdx-expression-validate@2.0.0", + "type": "framework", + "bom-ref": "pkg:npm/spdx-expression-validate@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "spdx-license-ids", + "version": "3.0.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a2db5d9d28ae28817fb10e8e02b4e641548c21b0a0447ec1047309897cb4338ab81cda3216773838d149f1cff1f3114a8cd56173565412305f64659d876e82d" + } + ], + "purl": "pkg:npm/spdx-license-ids@3.0.9", + "type": "library", + "bom-ref": "pkg:npm/spdx-license-ids@3.0.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "sprintf-js", + "version": "1.0.3", + "hashes": [ + { + "alg": "SHA-1", + "content": "04e6926f662895354f3dd015203633b857297e2c" + } + ], + "purl": "pkg:npm/sprintf-js@1.0.3", + "type": "library", + "bom-ref": "pkg:npm/sprintf-js@1.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ssri", + "version": "8.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f7ba92873cb5022cb1bcf34890b5a81ae6bbc68433ccf8d0d07007e01d2b58aa3b499e944ae3dcad488016bc2cd141fc46b6d69a0ab72cc4ce6e13c81db6c179" + } + ], + "purl": "pkg:npm/ssri@8.0.1", + "type": "library", + "bom-ref": "pkg:npm/ssri@8.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stable", + "version": "0.1.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e2f6ac519ce55f72e2c3c928fdab3846484155a1bcadd6420e4a48f5a99cd82f3abb4e8b3fa14516be8b543d02e5aec89daac2bab411fcf4173d90be731c0eb" + } + ], + "purl": "pkg:npm/stable@0.1.8", + "type": "library", + "bom-ref": "pkg:npm/stable@0.1.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stack-utils", + "version": "2.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "c6b41c99884eb27ff5917f95adaabeee3e281368ffe8116c719d1eb66620f35c6e33c1aad34db63f16fcf88aa03855086b11ecd0a6926fb4f5f8e7a088dacd14" + } + ], + "purl": "pkg:npm/stack-utils@2.0.5", + "type": "library", + "bom-ref": "pkg:npm/stack-utils@2.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stickyfill", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-1", + "content": "39413fee9d025c74a7e59ceecb23784cc0f17f02" + } + ], + "purl": "pkg:npm/stickyfill@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/stickyfill@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string-length", + "version": "4.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "fa5eab34de5f607361659cb8d515ec629b428c0d88826ab8106ee4640605408d44d554d76abafa64f5c183a7aaed8e9e2b8144858e80265cae1486ffbff4b455" + } + ], + "purl": "pkg:npm/string-length@4.0.2", + "type": "library", + "bom-ref": "pkg:npm/string-length@4.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string-width", + "version": "4.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "c0ac90450a63274b08a7ad84ad265d1ac8cc256b1aa79a1136284786ee86ec954effd8c807a5327af2feb57b8eaab9e0f23fdcc4a4d6c96530bd24eb8a2673fe" + } + ], + "purl": "pkg:npm/string-width@4.2.3", + "type": "library", + "bom-ref": "pkg:npm/string-width@4.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string.prototype.matchall", + "version": "4.0.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "7f8f289025fb262c158b535709559c1676600030c2fe7daf78f950fca50236a0a290b2e2950bf08cc3bcf811d52af8331f4241d09f4b10f8313864f4d91a044e" + } + ], + "purl": "pkg:npm/string.prototype.matchall@4.0.7", + "type": "library", + "bom-ref": "pkg:npm/string.prototype.matchall@4.0.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string.prototype.trim", + "version": "1.2.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "a7a4e6793d53df8d7533c0a083dc014cc46d636abdf8f372f445758b69485d437f6edb7beb7a087f1c0ddd147c554eb01d7f23ff5085cb42fe62e4e19ba6e03a" + } + ], + "purl": "pkg:npm/string.prototype.trim@1.2.7", + "type": "library", + "bom-ref": "pkg:npm/string.prototype.trim@1.2.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string.prototype.trimend", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbdc428f0d4fdb703093c12f4e97322f6348af58fbc09dfd7fe93a96f46748ccfe9b3f421b3f4d60f7a50e4e3690ecfafaa97cc637caf28633cb78c03f9414e4" + } + ], + "purl": "pkg:npm/string.prototype.trimend@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/string.prototype.trimend@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string.prototype.trimend", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "23b446be68d5e2927b3b791d7fe2d716955f74d3b1b425bfd82f1fea33625b8f8f41c870c64083ce5935ffba7e5a5e1ba85219785e3ba801d72ee1c758a031a2" + } + ], + "purl": "pkg:npm/string.prototype.trimend@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/string.prototype.trimend@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string.prototype.trimend", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "2724aafb89ab3dff44b030440d830e6ff94ced740bba5c20e51fe6d6bd0f5c416aad5d2a1ef979f2c7538a5497b4a39f942b0ad84f23c5ff86282d13d3b456c1" + } + ], + "purl": "pkg:npm/string.prototype.trimend@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/string.prototype.trimend@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string.prototype.trimstart", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "8e1e9ef7ce0e05fbf14b9d2d758da74599e80b9fe62c528e44441fc3cb79cb2b64a14b0944dc6f23f137f6abb5b03d0eb56237382d1780a4a6716c338b062e67" + } + ], + "purl": "pkg:npm/string.prototype.trimstart@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/string.prototype.trimstart@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string.prototype.trimstart", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "4c7c75e932421a5b0dd28e9d976a3a9dc594b1d8272d1480db7ad1139a72181c3f98baf7123fd1d8b6aa0ad80ff1534c199b2f3169dff68a193f26366c7bd416" + } + ], + "purl": "pkg:npm/string.prototype.trimstart@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/string.prototype.trimstart@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string.prototype.trimstart", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "a26aa3303698f76a5b9f91ce5fb7fd21c70b03e535b40f46bed53826ba1d89715f601ee33f3cc7a51ce98252c08ed515e9b079e7bcf00a525ecd3aa702262740" + } + ], + "purl": "pkg:npm/string.prototype.trimstart@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/string.prototype.trimstart@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "string_decoder", + "version": "0.10.31", + "hashes": [ + { + "alg": "SHA-1", + "content": "62e203bc41766c6c28c9fc84301dab1c5310fa94" + } + ], + "purl": "pkg:npm/string_decoder@0.10.31", + "type": "library", + "bom-ref": "pkg:npm/string_decoder@0.10.31", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "strip-ansi", + "version": "6.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "637f153d21dcaa416b0a916743dbee4979aabaebf9a1738aa46793e9a1abaf7a3719cf409556ba2417d448e0a76f1186645fbfd28a08ecaacfb944b3b54754e4" + } + ], + "purl": "pkg:npm/strip-ansi@6.0.1", + "type": "library", + "bom-ref": "pkg:npm/strip-ansi@6.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "strip-bom", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + } + ], + "purl": "pkg:npm/strip-bom@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/strip-bom@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "strip-bom", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "df1bab16fe6d1208a2df7662f09b69e79c042082d1f5e877e05016d343d97fe2674ac4e657f8a87b04a0425f7b247be08e8446c0f4a1b169be21daf1077e5dd3" + } + ], + "purl": "pkg:npm/strip-bom@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/strip-bom@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "strip-comments", + "version": "2.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "669acac7e6c12d7bf4ebb5930802eff124b3e65dbe5e1a580ac56d4aa94c9e40173160eafbf7a455b975821a8ff6b5074f3bfab26fc3c023a262eb54ff2a757f" + } + ], + "purl": "pkg:npm/strip-comments@2.0.1", + "type": "library", + "bom-ref": "pkg:npm/strip-comments@2.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "strip-final-newline", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "06ba6f7cd004ddd72fabb965df156e9b38ca8d9439b48d6c11420aaf752892cd17525e394addc595ab55a9e7fda6b9388d10f3856e96660fb76e4f77cbaa4b8c" + } + ], + "purl": "pkg:npm/strip-final-newline@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/strip-final-newline@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "strip-indent", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "95a2536b725bf95429682e83b1e1e117b75756a1d37c93c24436846e277f76b3a1822b60624bbf95eb4c52a397168595d3320851b8e9747dadfad623e1b40c45" + } + ], + "purl": "pkg:npm/strip-indent@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/strip-indent@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "strip-indent", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "9a755257697e66fe812e9483ffc57cec25bfcbd12699b63318221abec9ec23afe7c27dba0f07df33fcb3b66df467f2360d8f70752def5d508c9c70e065a54da0" + } + ], + "purl": "pkg:npm/strip-indent@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/strip-indent@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "strip-json-comments", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-1", + "content": "1e15fbcac97d3ee99bf2d73b4c656b082bbafb91" + } + ], + "purl": "pkg:npm/strip-json-comments@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/strip-json-comments@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "strip-json-comments", + "version": "3.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "e9f3dcf91e22870a8fe8dfda22fd9fd60307f25395b56407a2a0b8c8aea8483555a1cba602c7c2aa39179ea89832198cc12fe61072e9ed57a196ddea97a9448a" + } + ], + "purl": "pkg:npm/strip-json-comments@3.1.1", + "type": "library", + "bom-ref": "pkg:npm/strip-json-comments@3.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "style-loader", + "version": "1.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "57b4c2391928f2bb3dac8aa44ab94c7e4a80eb70dfa060412662b590a1827128be0566f872acf4491b27a7897aad4e62c0e11dd3fd9e3efebc495db6557a27e1" + } + ], + "purl": "pkg:npm/style-loader@1.3.0", + "type": "library", + "bom-ref": "pkg:npm/style-loader@1.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "style-loader", + "version": "3.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "18f710f8b0c96eb7311ce45345eb3a272dac7ef2b6912ea1a527c8fdf5e13edfaca55cf117a2c9d5d1cb37dcc81a655a68fd38e1829a21ab456ae7c4351883a1" + } + ], + "purl": "pkg:npm/style-loader@3.3.1", + "type": "library", + "bom-ref": "pkg:npm/style-loader@3.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "style-search", + "version": "0.1.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "7958c793e47e32e07d2b5cafe5c0bf8e12e77902" + } + ], + "purl": "pkg:npm/style-search@0.1.0", + "type": "library", + "bom-ref": "pkg:npm/style-search@0.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "style-to-object", + "version": "0.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0b31674515e1cd621d22d4f73a617c4907d6c9a847863ab71f070c34234b9fe37b92538ea8f8cc786ff8252bbbec3ef2a59746bd2cef92b6f2793322cf3d95ac" + } + ], + "purl": "pkg:npm/style-to-object@0.3.0", + "type": "library", + "bom-ref": "pkg:npm/style-to-object@0.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "style-value-types", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d3ccaadfa2249f8931e1853a443ee3584bf6eefe15f8f52c3866b89ff6acf04b770ae383309434d0435e0155c07b2757e19da3d571d91752b6b17e261a5d7c7c" + } + ], + "purl": "pkg:npm/style-value-types@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/style-value-types@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stylehacks", + "version": "5.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4b32e6bc7413ac859f4a09639100b0dbef82f7e35ef7577fe92a7dd88f1ce6e1d3732fcf81e1da9b021321b056f709c54d8ff765f49747d1c82fa224aa672ee9" + } + ], + "purl": "pkg:npm/stylehacks@5.1.0", + "type": "library", + "bom-ref": "pkg:npm/stylehacks@5.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stylelint-config-prettier", + "version": "9.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "538e2510b80b6616c00ffc72fef9dc6763eaf2c8764e7a623efa37f087e0f7ecde8a847e2c0907bb48ba60e4483b115a7d9a15834c6a4307b1e9ee85db94b95c" + } + ], + "purl": "pkg:npm/stylelint-config-prettier@9.0.5", + "type": "library", + "bom-ref": "pkg:npm/stylelint-config-prettier@9.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stylelint-config-recommended", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "17ac9346e734eb1af5879430ff291bd8bb85ca727623190a7c231ffb5c6a3df7e4c61d12d3d65cf74d9709f7dcb30fd7305abf3b3435c39e1f2c80ed9913479d" + } + ], + "purl": "pkg:npm/stylelint-config-recommended@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/stylelint-config-recommended@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stylelint-config-standard", + "version": "20.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "201da215dcce4c0ff34b88d255abfacfec06b629f4f2a7e3f98c84c470772c5f659e8b9086dfff632074299abd806cf91cd3e475d1cecdc63c1ec51ecba65494" + } + ], + "purl": "pkg:npm/stylelint-config-standard@20.0.0", + "type": "library", + "bom-ref": "pkg:npm/stylelint-config-standard@20.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stylelint", + "version": "15.10.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "09893362b0857c0fe09ce47ebbd909d4fa73c06d7458b567a311c3b8103f262c06a9d33dfb2c7dfa8bba484ff2f581ed7efd6670ba34e9f75a7474cec7880165" + } + ], + "purl": "pkg:npm/stylelint@15.10.1", + "type": "library", + "bom-ref": "pkg:npm/stylelint@15.10.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stylis", + "version": "4.0.13", + "hashes": [ + { + "alg": "SHA-512", + "content": "c463d7885565e18103f4987b12ebf6576db49ab886f6ee01d9303a61b8dcd5c6adaecb4a0f63e921d53753444aa645410b612198bfc5d2c3c2afdbeb1533516a" + } + ], + "purl": "pkg:npm/stylis@4.0.13", + "type": "library", + "bom-ref": "pkg:npm/stylis@4.0.13", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "stylis", + "version": "4.0.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "9b793e764ed0789c3aeb4788291467df13c5eaebaf1ecfc51738d7dc7439a2f7b4a98b22ca0a008709f96b721829a64fa392eb603d2b7d59adbf580d635b98c2" + } + ], + "purl": "pkg:npm/stylis@4.0.10", + "type": "library", + "bom-ref": "pkg:npm/stylis@4.0.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "supports-color", + "version": "5.5.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "423563c1d5c8b78d3c308880a825f8a142ac814d84a801b3b363e9926e1a4186e39be644584716e127c5353af8b8c35999ad1ecb87f99602eb901d1a5f440ca3" + } + ], + "purl": "pkg:npm/supports-color@5.5.0", + "type": "library", + "bom-ref": "pkg:npm/supports-color@5.5.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "supports-color", + "version": "7.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "aa9080bd197db2db8e1ef78ab27ec79dc251befe74d6a21a70acd094effe2f0c5cf7ed2adb02f2bf80dfbedf34fc33e7da9a8e06c25d0e2a205c647df8ebf047" + } + ], + "purl": "pkg:npm/supports-color@7.2.0", + "type": "library", + "bom-ref": "pkg:npm/supports-color@7.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "supports-color", + "version": "8.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "3295043763a876d533c6f29097bd9c505ed14391221ec1af4ac546d226bd73945b5862f6088e02ec4a4f4bc513048a659e5cd988db95e7ac3e16e371cb7b72d9" + } + ], + "purl": "pkg:npm/supports-color@8.1.1", + "type": "library", + "bom-ref": "pkg:npm/supports-color@8.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "supports-hyperlinks", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "eac5c4cd5e7e2398fc066abdfef52984644cfd124d4fd48251124b8f07ce839d61791b60b86583cdc6819600332a141ad0454da4f10acd0b81c19f12f1668279" + } + ], + "purl": "pkg:npm/supports-hyperlinks@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/supports-hyperlinks@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "supports-hyperlinks", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4010cf1f23d00d14f2f64bb85113466392da87c3c0697b3ab40030a79e6c2f9582b125bb1887dd7fa5b98b17f3896fadef0877195bc7c871f2435112b2846f68" + } + ], + "purl": "pkg:npm/supports-hyperlinks@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/supports-hyperlinks@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "supports-preserve-symlinks-flag", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a2dd169d74bd7e076480871e3dee911cd935580f3e9ae3dae9c4a3791dd5f0adbbabd041d6b4c4dd1d69ec7bf4cf567201cf2ce95beff0323259febcd4c02dd3" + } + ], + "purl": "pkg:npm/supports-preserve-symlinks-flag@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/supports-preserve-symlinks-flag@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "svg-tags", + "version": "1.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "58f71cee3bd519b59d4b2a843b6c7de64ac04764" + } + ], + "purl": "pkg:npm/svg-tags@1.0.0", + "type": "library", + "bom-ref": "pkg:npm/svg-tags@1.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "svgo", + "version": "2.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "f8dfd0f64575f85f947966284a250b628e316120d095381bf9ac8ca1b0173f03272efa29ee8c4a328f4ecc8ad7e71dde4b82f87f650785cf5ac57c18f03a4286" + } + ], + "purl": "pkg:npm/svgo@2.8.0", + "type": "library", + "bom-ref": "pkg:npm/svgo@2.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "swagger-ui-dist", + "version": "4.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "5af7cf49f00032513fb0a4ba6245b8ee75ff840ed2b668589c01dceb05825cd2f4a1c9702e3e945efd2140290b9c382f79b8b4304578d12249a558ca5201f521" + } + ], + "purl": "pkg:npm/swagger-ui-dist@4.1.3", + "type": "library", + "bom-ref": "pkg:npm/swagger-ui-dist@4.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "swagger2openapi", + "version": "7.0.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "5484f8d789287b4789aab7b42ab84d31407b40451f3e318029eb0f659a2c20aaf6af167abe95287abb0750534eb0dfce679bb6cec9e20ac9413b055c99067096" + } + ], + "purl": "pkg:npm/swagger2openapi@7.0.6", + "type": "library", + "bom-ref": "pkg:npm/swagger2openapi@7.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "symbol-tree", + "version": "3.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "f50364e4ac0317e06fcfe3f239b9264988c8e64b15518b635bb014db6af634a71f2c9717a7dea1903594dfe5e774eb146fe010f5085fcdf093d8ef823564f94f" + } + ], + "purl": "pkg:npm/symbol-tree@3.2.4", + "type": "library", + "bom-ref": "pkg:npm/symbol-tree@3.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "table", + "version": "6.8.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "6385fdceaac27ed52131e1f6129b5248445d54ab7f9c47628d339a7060fff7b10a8e143f42cf114e510600148934d37c95a73d921787f9a7fbc809045a582778" + } + ], + "purl": "pkg:npm/table@6.8.1", + "type": "library", + "bom-ref": "pkg:npm/table@6.8.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tapable", + "version": "2.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "18dcd0bd04ce20fe91c937c4d90c5bf19565366c349fcf2fa75b33c1646298fd369a74ecc775ad9f9a9176a63dc365ddb8535482f3b084d9d0b23c02a7e92a69" + } + ], + "purl": "pkg:npm/tapable@2.2.1", + "type": "library", + "bom-ref": "pkg:npm/tapable@2.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tar", + "version": "6.1.11", + "hashes": [ + { + "alg": "SHA-512", + "content": "6a7fca650cd052464292ea0003ae2133dd97d14adbe95a51840165943cf3e3853699c0f9b1c993df305ce15815a64ba0179f34f83427f1e0054b2a10b74b739c" + } + ], + "purl": "pkg:npm/tar@6.1.11", + "type": "library", + "bom-ref": "pkg:npm/tar@6.1.11", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "terminal-link", + "version": "2.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "ba7d059a245440daf93c9ab2f643fb738d05e4139fa469584ebc689c30a111907ba7367144da7f6edfb29a2cbdfe7a705f26bd287f7d9c9fc65c522252460615" + } + ], + "purl": "pkg:npm/terminal-link@2.1.1", + "type": "library", + "bom-ref": "pkg:npm/terminal-link@2.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "terser-webpack-plugin", + "version": "4.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d3817878d119ef3ab2d0360224c042a743cae61e31cae2efba501122f96f853e6bdbfaea3e7212579ed29eeffde55b998dcac812583eb42b27ac9e15bc0fa31" + } + ], + "purl": "pkg:npm/terser-webpack-plugin@4.2.3", + "type": "library", + "bom-ref": "pkg:npm/terser-webpack-plugin@4.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "terser-webpack-plugin", + "version": "5.3.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "171eb41b91cd6249cd4cd427cd0d5578f46ebbcf5955859f8d101e4f9ac84ee098ff56f4f2ce3d7b99124301c38ab2995aea0a3814454bdf04514a19f642c4c1" + } + ], + "purl": "pkg:npm/terser-webpack-plugin@5.3.3", + "type": "library", + "bom-ref": "pkg:npm/terser-webpack-plugin@5.3.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "terser", + "version": "5.14.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "a0bd2b19e33f58540251dd32d90ad6c589eaeed7d2b8a062a938d13d6ad1801e3a583fe48b01f017c4f6df3efc1fa43a9060aeb8770f07e2942c745dc6f54640" + } + ], + "purl": "pkg:npm/terser@5.14.2", + "type": "library", + "bom-ref": "pkg:npm/terser@5.14.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "test-exclude", + "version": "6.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "7001963c8c8e1d4eb396683cf23c26ed54725e730dee257af0e1806d80e4fcc87fc42fe9cd53e542d63a9e0a081ffe7fb5c8ae8467ef11253c1ab1eb7310f9eb" + } + ], + "purl": "pkg:npm/test-exclude@6.0.0", + "type": "library", + "bom-ref": "pkg:npm/test-exclude@6.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "text-table", + "version": "0.2.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + } + ], + "purl": "pkg:npm/text-table@0.2.0", + "type": "library", + "bom-ref": "pkg:npm/text-table@0.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "throat", + "version": "6.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f219a218824c0e5c2383b765278c8a18b2bc12c62a2a03d66c6ddbe308c975d28dc1cecdec3a67d3c0dfe2ccebfec65d31578eb2dadd612b2acd7e8161b701fb" + } + ], + "purl": "pkg:npm/throat@6.0.1", + "type": "library", + "bom-ref": "pkg:npm/throat@6.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tiny-glob", + "version": "0.2.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "83fe79b2c44f5234a187ec647f1f543c35ea85c90712c1ebe1577dcd7e79a1274665cfcc0f49b7b1f7ab3a4c16b69f7c6effa47157c41ed449801549cde96bce" + } + ], + "purl": "pkg:npm/tiny-glob@0.2.9", + "type": "library", + "bom-ref": "pkg:npm/tiny-glob@0.2.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tiny-invariant", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d54867fdaab0e42e9123829e8d579383a9884bb22ac672c9f0cbf6b55e6b4dcd2a5a86dacbba43533e968b7f760a773c6a4d47d05d9c8e84736f6fc05b8f85be" + } + ], + "purl": "pkg:npm/tiny-invariant@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/tiny-invariant@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tmpl", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "ddfd2e384010c08a86b965b6315cd883c7d5fd036773f229b89346f37eeb2ee73301a2d51ec9561d9423e081a2125e47b379246e1c0bf406fb1ebb26ba3f929b" + } + ], + "purl": "pkg:npm/tmpl@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/tmpl@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "to-fast-properties", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-1", + "content": "dc5e698cbd079265bc73e0377681a4e4e83f616e" + } + ], + "purl": "pkg:npm/to-fast-properties@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/to-fast-properties@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "to-regex-range", + "version": "5.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "eb93fb8b3e97e7212bd5cc1c82f4316db230ed493780ecb974876d678ac3bde2ea86b7493fe2e2fc7c7ab722b43446fed860b29de08c2621aaac00c248d93cb1" + } + ], + "purl": "pkg:npm/to-regex-range@5.0.1", + "type": "library", + "bom-ref": "pkg:npm/to-regex-range@5.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "toggle-selection", + "version": "1.0.6", + "hashes": [ + { + "alg": "SHA-1", + "content": "6e45b1263f2017fa0acc7d89d78b15b8bf77da32" + } + ], + "purl": "pkg:npm/toggle-selection@1.0.6", + "type": "library", + "bom-ref": "pkg:npm/toggle-selection@1.0.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tough-cookie", + "version": "4.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "697ff2e6955191f4677e6b97f8e75b49d5ef3deea278a5ff1b6b3b7bdf1fe29a091e7a87df6f358033e6fe67ad9ba13f5916a67f1ed60b81d4aa45877d01e9af" + } + ], + "purl": "pkg:npm/tough-cookie@4.1.3", + "type": "library", + "bom-ref": "pkg:npm/tough-cookie@4.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tr46", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "d79221ee985f71d3f9631aa207e883b4ba1a4f3e0d777e7e22202fd2443914d287cd781d5aa3e84c8a840c32665dc790b7825993a9553d3f259c394fa460e9a7" + } + ], + "purl": "pkg:npm/tr46@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/tr46@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tr46", + "version": "0.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "37758cb2ea95eba953df40ab5cd6c48f1e06130968c37bfaaebe2609cbfaa6b9dfc214b4d6b920c857633cd05877d6ebecba57575f849a1d357c79ead86760af" + } + ], + "purl": "pkg:npm/tr46@0.0.3", + "type": "library", + "bom-ref": "pkg:npm/tr46@0.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "trim-lines", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9118fc07e60764273d91061d59f241dbfa1497dac0f7da9ba3061806daf8ba2e26672010d89a6f54177fe94d989680137ea06105348c853a60047b54d0c7f746" + } + ], + "purl": "pkg:npm/trim-lines@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/trim-lines@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "trim-newlines", + "version": "4.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "8d12a3d27d235d6a3a921eb69c0e53121dfee2280a0d72efcc125c3e98a2ccfee83a8954ad8231995046f533ad1d8147a1d75493a62f02419e1a84954d77d05d" + } + ], + "purl": "pkg:npm/trim-newlines@4.1.1", + "type": "library", + "bom-ref": "pkg:npm/trim-newlines@4.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "trough", + "version": "2.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "02a4e200e2dc8fce714bbbd0f10900578d613c3209ef55c907844252bce8ff518cd8243086424669ff4782bec13ae80c46980652ba9183f0eb0439781f8d3ef2" + } + ], + "purl": "pkg:npm/trough@2.1.0", + "type": "library", + "bom-ref": "pkg:npm/trough@2.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tsconfig-paths", + "version": "3.14.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "a3ff625e00987392ff2710873dedc7be1f10ff6c66e59fa9d7c3c448153a15fdf7ebde509c21c1123732b58daad7db9aecc6e5fc36afb4138babea06d1108bfa" + } + ], + "purl": "pkg:npm/tsconfig-paths@3.14.2", + "type": "library", + "bom-ref": "pkg:npm/tsconfig-paths@3.14.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tslib", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "37cda8a32c55366ea1d6b88b0a8c92f5eddfb89dc0306db3219b3619dd404dc4858d2036dd0d1fce38d97a1d236c9bd65436747094fcc9a34d69a5c7cee78d8e" + } + ], + "purl": "pkg:npm/tslib@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/tslib@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tslib", + "version": "1.14.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e78b7e4d2b38e032bc1ebf2b074c202bb4b0e93efc9ef3357fd04e04c989f8dcfeffeeabd0c0f87d0469077b06ccba5567b5b8a099c4fbadd5f704da3dc1126" + } + ], + "purl": "pkg:npm/tslib@1.14.1", + "type": "library", + "bom-ref": "pkg:npm/tslib@1.14.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tslib", + "version": "2.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "77ac4ea440dfb22d8265594f43319ebb1f173302d3f61b2c02c68f604c5a40cb98b24c1bfb1d71ec9dfbd6d5a56c17561eba32f7d2a7541eaa22451bb395f751" + } + ], + "purl": "pkg:npm/tslib@2.4.0", + "type": "library", + "bom-ref": "pkg:npm/tslib@2.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tslib", + "version": "2.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "efb11bc8f3e9333f8544546e00595632d9a051619ef54386d99db936a0b08888d184e7f988a1aecd27b93f6c3595aabe164472e29f8f0ae5642521a4cd310a57" + } + ], + "purl": "pkg:npm/tslib@2.3.1", + "type": "library", + "bom-ref": "pkg:npm/tslib@2.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "tsutils", + "version": "3.21.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "98728ade25172fedd417ac4be64d0f12129150128f042bfff919043a98d15b1c71dbb28a4419a603ad00f6980e52f322f062a144c3c49a30513f3b365bb3b538" + } + ], + "purl": "pkg:npm/tsutils@3.21.0", + "type": "library", + "bom-ref": "pkg:npm/tsutils@3.21.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "type-check", + "version": "0.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "5e5794a1cf6ec065ea8d6c176944d9026ccc705679f39f10036befc7552be7121c8b15c83fef0b9c50e0469954df4bacead7aa765b2415fbbe69ee0aefd3a87b" + } + ], + "purl": "pkg:npm/type-check@0.4.0", + "type": "library", + "bom-ref": "pkg:npm/type-check@0.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "type-check", + "version": "0.3.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "5884cab512cf1d355e3fb784f30804b2b520db72" + } + ], + "purl": "pkg:npm/type-check@0.3.2", + "type": "library", + "bom-ref": "pkg:npm/type-check@0.3.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "type-detect", + "version": "4.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "d1faff9881f57653bec7b4e570ccbe6c80ea28fb30ffbd2d5727875bbf3b828423866a9a65ed74bb02ee8ee6caf6af4b83a162868d4a50a0d8cf467b93b839fe" + } + ], + "purl": "pkg:npm/type-detect@4.0.8", + "type": "library", + "bom-ref": "pkg:npm/type-detect@4.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "type-fest", + "version": "0.20.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "35ef9e138af4fe25a7a40c43f39db3dc0f8dd01b7944dfff36327045dd95147126af2c317f9bec66587847a962c65e81fb0cfff1dfa669348090dd452242372d" + } + ], + "purl": "pkg:npm/type-fest@0.20.2", + "type": "library", + "bom-ref": "pkg:npm/type-fest@0.20.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "type-fest", + "version": "0.21.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "b74af306af3b9b77d571db870d41612a6cb25fef5ea3a5908d9bdfe7511afccd10efe4f7ef8269d5a522c9497418ac69f0cfce113547483be69323e0bd7f97db" + } + ], + "purl": "pkg:npm/type-fest@0.21.3", + "type": "library", + "bom-ref": "pkg:npm/type-fest@0.21.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "type-fest", + "version": "1.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c864b36bbe31934506f24fa92e1e687a8622aef2225a8e6dd3fa37cc71c03b6b510e265cc563fb7f2c0d95786a6fafebeac5afc22f91b3240c5a154b7b8055b8" + } + ], + "purl": "pkg:npm/type-fest@1.4.0", + "type": "library", + "bom-ref": "pkg:npm/type-fest@1.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "type-fest", + "version": "2.17.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "53e837fc95579ce922d642d273ec5918f465977021f6ed95206e929fd887f585fa5243c4466b7a3bfd1f2324e0b1ddbfc21574fa001a1c083c7f3eac1b543330" + } + ], + "purl": "pkg:npm/type-fest@2.17.0", + "type": "library", + "bom-ref": "pkg:npm/type-fest@2.17.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "typed-array-length", + "version": "1.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a3672a46abe23f1fb1c8e4794ea061e4594506abe4344cf850bab2dbcab56bbe7293060ccb84827b8fa27f5d340e8b4775463c99d3075ab3c6cab36a74c7736" + } + ], + "purl": "pkg:npm/typed-array-length@1.0.4", + "type": "library", + "bom-ref": "pkg:npm/typed-array-length@1.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "typedarray-to-buffer", + "version": "3.1.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "cddbbc5cc3440dea4a291f9760e5c054fb56ba2d25cb436da2152c730f9499a1e20164fc86b575aebfff1fa57ed03bc9dce435f52f7bf4cd2568b7d7f2b9bcd9" + } + ], + "purl": "pkg:npm/typedarray-to-buffer@3.1.5", + "type": "library", + "bom-ref": "pkg:npm/typedarray-to-buffer@3.1.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "typescript", + "version": "4.7.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "58e913dd762fae95f1e2f30caa50fef11f11dfb7d9923c8b1a5c5abcc738881f25ae5f0bd037937076d8830fefd0dff3f70005b2006172c174aeea32492db698" + } + ], + "purl": "pkg:npm/typescript@4.7.3", + "type": "library", + "bom-ref": "pkg:npm/typescript@4.7.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ua-parser-js", + "version": "0.7.33", + "hashes": [ + { + "alg": "SHA-512", + "content": "b3c6b1fc279974af51ff9e92ba2d1633acbd38544425aacc447a8b076130928bde981c4d43e06abbc180b149d57172a0a616fefa086bfc1d81671e266a1ba33f" + } + ], + "purl": "pkg:npm/ua-parser-js@0.7.33", + "type": "library", + "bom-ref": "pkg:npm/ua-parser-js@0.7.33", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unbox-primitive", + "version": "1.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "b5953fdcda8addd0398291352adca2254ac40749719c690c147a6d27baba7b0759f2cd7642b383c0d6e12094ad98991dd500d76b535103c685d80d7393f629cb" + } + ], + "purl": "pkg:npm/unbox-primitive@1.0.1", + "type": "library", + "bom-ref": "pkg:npm/unbox-primitive@1.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unbox-primitive", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "eb5a4f9420fd879d55a2b7b22740517a275e33730328c2a787af95f4bd3cdf7d62a6ae90f0e1576588aa3fa9ffb5b1f1e2ce48f6e4617327ba06b6e48b39010f" + } + ], + "purl": "pkg:npm/unbox-primitive@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/unbox-primitive@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "undici", + "version": "5.26.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "1fb9f6ce62845a03a594a9085242ef166b09423d3ada54a6dee0381180291bc80bba238cd3f828f5b2280b71d56929df838c6e9e8c031368bda7c76b917baf0f" + } + ], + "purl": "pkg:npm/undici@5.26.3", + "type": "library", + "bom-ref": "pkg:npm/undici@5.26.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unicode-canonical-property-names-ecmascript", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "c98e4fa4395f548539fb2fc1482c402510484b565cd9d0c6dd48eafac47453e26351ebd6d8986870e17eb2844e60349a01eccecce2aecb28b1843ea60649d299" + } + ], + "purl": "pkg:npm/unicode-canonical-property-names-ecmascript@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/unicode-canonical-property-names-ecmascript@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unicode-match-property-ecmascript", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e646990ab6e9e6699bcf9ba50640e46d8d12b0f3a32aa552df95692fdba530f7d29742745ec9bef44be986ff42a08645c2b7bb689a1af78018eac78c28654de5" + } + ], + "purl": "pkg:npm/unicode-match-property-ecmascript@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/unicode-match-property-ecmascript@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unicode-match-property-value-ecmascript", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ed886473461efade0f358cce18a79d0e15db60805ed57110610c4e3f285c5cd309d1608006aaa3e9c93275dea95916531d5e06b823ca74101488c73ad2db0a57" + } + ], + "purl": "pkg:npm/unicode-match-property-value-ecmascript@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/unicode-match-property-value-ecmascript@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unicode-property-aliases-ecmascript", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e597eecbdabf0c5af8b5f3bb64f7955dbd5a3e879049d78530ba58b8579b7a10c085bb9ebcbb39cb149998814dd6d3f917d5a5e08a49ad8a2383ce7fce0c991d" + } + ], + "purl": "pkg:npm/unicode-property-aliases-ecmascript@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/unicode-property-aliases-ecmascript@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unified", + "version": "10.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "a54496022fd1027572d4f89fda40287963416b7255af1d0c21dd8b0128fc1beec08875a8299353a26aba2c6df6e93ebc53bfdedbadd7e9f4dd717232ed79c5ed" + } + ], + "purl": "pkg:npm/unified@10.1.2", + "type": "library", + "bom-ref": "pkg:npm/unified@10.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unique-filename", + "version": "1.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "566a748c8a76967df95135eeaf2be3ce48c6751c9ff5bda54d7b9261488f9b345c977143b58a80c0e9d3264027803f525a19e82730db4cac1a3ab67e493b7135" + } + ], + "purl": "pkg:npm/unique-filename@1.1.1", + "type": "library", + "bom-ref": "pkg:npm/unique-filename@1.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unique-slug", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "ce85abf4e6dac402c3dc338f7e33d2ab1b787e766259b9711c881e5aa5bcc7b52a0f312d1c440bce38b672e258405094e8a9a826290e600665ad31c779b8f1db" + } + ], + "purl": "pkg:npm/unique-slug@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/unique-slug@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unist-builder", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "185c667c401ad2f8bd8b9b1dd11da472b23d92cd2bf3635ab11ab9407876cac1a782b73a1a2a83e420dfd458cf7a7638bc0a66140481208964fe38f927961b99" + } + ], + "purl": "pkg:npm/unist-builder@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/unist-builder@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unist-util-generated", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "4e2584e8356d55eed87b64313955bd92ac9bb3a7197b13704f048c56091f8c445eab2ff1c06a405dbf7d3b192da16c262fe67e1296f40e7f3f18d0d83f5c2753" + } + ], + "purl": "pkg:npm/unist-util-generated@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/unist-util-generated@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unist-util-is", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "179099ebc798cee4af2631a108b3cbddc631e3923192a5d27ad09c460517b5b726e745f62fda0e59095f51f0dd01ffba3dddbb6036e505f76d9ac4e15e6c296d" + } + ], + "purl": "pkg:npm/unist-util-is@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/unist-util-is@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unist-util-position", + "version": "4.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "a7fe4430621ad6ac1b5e303e4207015da3d68d29d97d0d92737c811047e03f0b0498977c421f834a4dcb1a798e3384b56d8d82d008e632707c46e118c693f05d" + } + ], + "purl": "pkg:npm/unist-util-position@4.0.3", + "type": "library", + "bom-ref": "pkg:npm/unist-util-position@4.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unist-util-stringify-position", + "version": "3.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "ec0e9e8830acf54b6373064e702a4ce1a3c82376c0006bf5dc4f7a2246b090e016d0e847fb2471b58d25ce8f0a887a7310c7c7ed0f858b3526c29f08ab2e445a" + } + ], + "purl": "pkg:npm/unist-util-stringify-position@3.0.2", + "type": "library", + "bom-ref": "pkg:npm/unist-util-stringify-position@3.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unist-util-visit-parents", + "version": "5.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "824b386da6a94ff90d45a5b1b86925e41221a1a9d9a3bb02fdc513fc94e849134bd5d6285d1165ef977ef8d923624e1302edaebf63f1fa5f20b8c6a3a207ae8b" + } + ], + "purl": "pkg:npm/unist-util-visit-parents@5.1.1", + "type": "library", + "bom-ref": "pkg:npm/unist-util-visit-parents@5.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unist-util-visit", + "version": "4.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "9fd28ddd657d9388750f1611d4ba1a8e037ddf0a448bfed9a6555ed36228078807e5cb48d40685dbaef404b1d061bc23fa963cde016dc9ec92162c8c1c9925ae" + } + ], + "purl": "pkg:npm/unist-util-visit@4.1.1", + "type": "library", + "bom-ref": "pkg:npm/unist-util-visit@4.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "universalify", + "version": "0.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "089d5080a98d8370b0bc0bff90e166b6710dd397f40ff727f509ed80d39095017d760bd54c78f7b7ef093dd8ea6b008793b57f280f9f6d4ab367d5d685ca8f52" + } + ], + "purl": "pkg:npm/universalify@0.2.0", + "type": "library", + "bom-ref": "pkg:npm/universalify@0.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "unload", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "07ad2e0794cd04bb4debf2ec8007f7b9d1fdb1a079a7b82a2707057db38467c05c0479c6c027fa1bf4c6884aa4440c57ef3005214b7376b5d049d2f743fc2a34" + } + ], + "purl": "pkg:npm/unload@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/unload@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "uri-js", + "version": "4.4.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "eeb294cb2df7435c9cf7ca50d430262edc17d74f45ed321f5a55b561da3c5a5d628b549e1e279e8741c77cf78bd9f3172bacf4b3c79c2acf5fac2b8b26f9dd06" + } + ], + "purl": "pkg:npm/uri-js@4.4.1", + "type": "library", + "bom-ref": "pkg:npm/uri-js@4.4.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "url-loader", + "version": "4.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2338000080bcc11ae0e8d624148258d3dbed92d41cb2f53c57a1e1b508fd3d379f6d8226ccb07586e7eaa389be47233937798bc7906a24a71c831252f96de4ab" + } + ], + "purl": "pkg:npm/url-loader@4.1.0", + "type": "library", + "bom-ref": "pkg:npm/url-loader@4.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "url-parse", + "version": "1.5.10", + "hashes": [ + { + "alg": "SHA-512", + "content": "5b2a5c7e24617de50ff6fbc5d23eabc3427786b5abc3a899bf7fb6da1ea244c27ff33d538fa5df2cfe03b148b1e4c84c3e75e98870e82b2a19fdb74293004289" + } + ], + "purl": "pkg:npm/url-parse@1.5.10", + "type": "library", + "bom-ref": "pkg:npm/url-parse@1.5.10", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "url-search-params-polyfill", + "version": "8.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "2a6902b3a4a313ab788a1adf5bd25e9403d02082056c9c1e69a48b4e1ff800ef9ce7c2650dc6fe19b74fb7ccabe6545c160e2b3ecc11151461046a56c21d0afd" + } + ], + "purl": "pkg:npm/url-search-params-polyfill@8.1.1", + "type": "library", + "bom-ref": "pkg:npm/url-search-params-polyfill@8.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "url-template", + "version": "2.0.8", + "hashes": [ + { + "alg": "SHA-1", + "content": "fc565a3cccbff7730c775f5641f9555791439f21" + } + ], + "purl": "pkg:npm/url-template@2.0.8", + "type": "library", + "bom-ref": "pkg:npm/url-template@2.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "use-callback-ref", + "version": "1.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "dc54fd3d1b9175b07d1df5e112adf9bb8a1992fa49e64b986e9aa109f9a267245eb918299e10e56ebd991279ee4b446b2403e7ea5db7c63160f64a4333e32cef" + } + ], + "purl": "pkg:npm/use-callback-ref@1.3.0", + "type": "library", + "bom-ref": "pkg:npm/use-callback-ref@1.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "use-composed-ref", + "version": "1.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "18b306d0973f8e22a8bffdd4962775c1bbf7af9e0af4794c5b6f4859c0c53c4a859123b69d2d0cb9e7d680c26978743d6097970cbdd9505f8fde37579595ff71" + } + ], + "purl": "pkg:npm/use-composed-ref@1.3.0", + "type": "library", + "bom-ref": "pkg:npm/use-composed-ref@1.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "use-isomorphic-layout-effect", + "version": "1.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "e3d2fcc823b78864ff645f50b6d8f02c5fd90fd230b68e4b9c7e4b984764ffa70599775daa2dae945d1e7714f08e3fbb9aabe95551905af6d765d9f7db04521c" + } + ], + "purl": "pkg:npm/use-isomorphic-layout-effect@1.1.2", + "type": "library", + "bom-ref": "pkg:npm/use-isomorphic-layout-effect@1.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "use-latest", + "version": "1.2.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c40f80566fd6960dded8ffc9888b53ce2c12ec52bdd8b5ab0c1d29fa181796820cb9509e249f2fe9fd1e787c8f65a26b33ebac33516415f6cd0ab246b3c03fcf" + } + ], + "purl": "pkg:npm/use-latest@1.2.1", + "type": "library", + "bom-ref": "pkg:npm/use-latest@1.2.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "use-sidecar", + "version": "1.1.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "7a94dbb0bbb367b94f0a5a73d93cabc817f3b66ee6fb6f03944bf6642437303af9b2c8b0c8ec061ff7b917d0a47d68c9d6de1c96f239f3217cdb6fc65248e387" + } + ], + "purl": "pkg:npm/use-sidecar@1.1.2", + "type": "library", + "bom-ref": "pkg:npm/use-sidecar@1.1.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "use-sync-external-store", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "784827171190d487def5bcd8b3a54b8bcff85fa08e6c7330f50afdb4f638de22b0b0fc3cc44f3e105b1fff67056794b77ac5e0a5682d482b4b352e3517eb0a3c" + } + ], + "purl": "pkg:npm/use-sync-external-store@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/use-sync-external-store@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "util-deprecate", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "450d4dc9fa70de732762fbd2d4a28981419a0ccf" + } + ], + "purl": "pkg:npm/util-deprecate@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/util-deprecate@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "uvu", + "version": "0.5.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "fa0f043517b2afc62c39ce9fbff35526cdaf15d1c19c135d7c4e3daec86b4f30d63a5531e06abb28e4b6183f1eaa1cb68fe123ab6f7e49b287f328e402a5eaa0" + } + ], + "purl": "pkg:npm/uvu@0.5.6", + "type": "library", + "bom-ref": "pkg:npm/uvu@0.5.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "v8-compile-cache", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "97c9421262dc2d8661e276ee9cd66f40225ce69bfbf910b06bcabf2dd531f2eee5b16bcf0ca9a9a1d24024dc24021242fff745638f0ab881268ed778455883ac" + } + ], + "purl": "pkg:npm/v8-compile-cache@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/v8-compile-cache@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "v8-to-istanbul", + "version": "8.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fcf4617ddf1a4cda7d1a0afad873f35e0d976ac3451b2e4f06dd11a74e1dbbbffc18d35283114be9605392030a48bf5b1631fef242841b77f7ec59b1893a9450" + } + ], + "purl": "pkg:npm/v8-to-istanbul@8.1.0", + "type": "library", + "bom-ref": "pkg:npm/v8-to-istanbul@8.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "validate-npm-package-license", + "version": "3.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "0e92a6d948bfc4deff1d0282b69671a11581859f59d24aadca01bc5c280d43c6650e7c6e4265a18f9eba8fc7cde02bb7fc999b86c0e8edf70026ae2cf61dbb13" + } + ], + "purl": "pkg:npm/validate-npm-package-license@3.0.4", + "type": "library", + "bom-ref": "pkg:npm/validate-npm-package-license@3.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "validator", + "version": "13.9.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "07e7461bc5377ddb4cd3f68d2b8fd7f025eafc473153658facf124246b256f8eeac87b3199b8204d62b4c84038aa7615345fa7c4d94df3ca35e2121c3e648810" + } + ], + "purl": "pkg:npm/validator@13.9.0", + "type": "library", + "bom-ref": "pkg:npm/validator@13.9.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "vfile-message", + "version": "3.1.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "d32694fab8f680a032124d767df7526c17e39e78fe6f5cea4c1bf73900939fcc84074d9bb0f8b3c1d04facb2631e72be714f4430c7149cdbfddfc5dc64892674" + } + ], + "purl": "pkg:npm/vfile-message@3.1.3", + "type": "library", + "bom-ref": "pkg:npm/vfile-message@3.1.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "vfile", + "version": "5.3.6", + "hashes": [ + { + "alg": "SHA-512", + "content": "00306c99eadd181b36598724acb0449ae11348fc930f84ee2f14ebc340ef8e2af15b5adae19c246f31bc9ddb2fdd0e7bb26bc7c68ebbecc1da42b63dcb11fc70" + } + ], + "purl": "pkg:npm/vfile@5.3.6", + "type": "library", + "bom-ref": "pkg:npm/vfile@5.3.6", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "w3c-hr-time", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "cfc3f90ef0cd8ca0e81481caeeaf2bf2569c913ea5fa3a3f61edc73a57bb97d9c808ff657f50a2db97f2f6f1ddd093967b09081735c81228374dd293ec94397d" + } + ], + "purl": "pkg:npm/w3c-hr-time@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/w3c-hr-time@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "w3c-xmlserializer", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "e2dcc3d2617c89288c88db37d0188b3b71297c62d9513d8c497fc6fa8ed9cb00f3962590dce3ed4d9d0f4c2dc1ddc6b55007f870930707ed817f9e84ae226e44" + } + ], + "purl": "pkg:npm/w3c-xmlserializer@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/w3c-xmlserializer@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "walker", + "version": "1.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "b6cffc13c9796fb918d2f9562dec0e9035cc98f74b7155781a63902f2c6e4acc0826cc1e78566d02c305ee4d4db33cfe4d8050ae56119b33a7af7f7ccb525e99" + } + ], + "purl": "pkg:npm/walker@1.0.8", + "type": "library", + "bom-ref": "pkg:npm/walker@1.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "watchpack", + "version": "2.4.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2dcbe6ecc1924ffe1fba9fa27f22a2da18f2200c1c748e07460b6f4e9214c4146107e445b5487c5ed0cec547dcb550a78558be4108f8f62f753b2bf390997a72" + } + ], + "purl": "pkg:npm/watchpack@2.4.0", + "type": "library", + "bom-ref": "pkg:npm/watchpack@2.4.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "web-worker", + "version": "1.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "3e0177e356afceacb1eb49de13d0c3f974b6e8c30d328510473f4d399c16df69cf42b17aa7bedfd61b5c9e3052115f0118c299d7a721a2a506e21c88d07c7b98" + } + ], + "purl": "pkg:npm/web-worker@1.2.0", + "type": "library", + "bom-ref": "pkg:npm/web-worker@1.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webidl-conversions", + "version": "3.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "d89027df3f0047aae32bc4a6f28ad10b487f6dc97f0ea2fbb513dd199e08d428dd17e11a30b998c411f25ee28bf38f5eb9c3c586f068c4cb1f95f39bf24c5a79" + } + ], + "purl": "pkg:npm/webidl-conversions@3.0.1", + "type": "library", + "bom-ref": "pkg:npm/webidl-conversions@3.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webidl-conversions", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "56567028f0a460ac5081e49b1f91329e03a6469ed6c3b23dad02c44444ed7f9a1f77da467acc1688eb6882910ef39d23ce23d16abade1b19f9408893aa96f6c0" + } + ], + "purl": "pkg:npm/webidl-conversions@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/webidl-conversions@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webidl-conversions", + "version": "6.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "a8122f14b1a20692e37f099801a1cf5ec9fe868e716671afc86bec6abcb018d73c57240950c1c9f0e04a186acf111d2890178c0da6a7e263419600513b1b88f3" + } + ], + "purl": "pkg:npm/webidl-conversions@6.1.0", + "type": "library", + "bom-ref": "pkg:npm/webidl-conversions@6.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webpack-cli", + "version": "4.10.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "34b8437c7fe1e0ee943b2fb42d2b28e36c6f632a4294836e30d0555735f8bd7f7c4e64da4d4c7045b5dd86e71b14c776a8b6824dc2eafcf758aef8bca27c3dd3" + } + ], + "purl": "pkg:npm/webpack-cli@4.10.0", + "type": "library", + "bom-ref": "pkg:npm/webpack-cli@4.10.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webpack-license-plugin", + "version": "4.2.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "39f21d9bae7d20abab1089ca94137a49fceb87e30d2885a40a128a83e6830a83dfdce9353925c10ddd912926ee500b718e6756da3e8b5156569d16119d574ec4" + } + ], + "purl": "pkg:npm/webpack-license-plugin@4.2.2", + "type": "library", + "bom-ref": "pkg:npm/webpack-license-plugin@4.2.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webpack-manifest-plugin", + "version": "4.1.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "617500c31b5f2882482a4860d3730aba21400fbd8f96ba828b07703b85445dd44ee55d0e44237068ec0065ac0f65a9426e61fd9010e65e735e40ec3e048122a3" + } + ], + "purl": "pkg:npm/webpack-manifest-plugin@4.1.1", + "type": "library", + "bom-ref": "pkg:npm/webpack-manifest-plugin@4.1.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webpack-merge", + "version": "5.8.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "fd2688ef1634f37d57c0fea4ceec2129654a0cff6dd5063587ae650052db66a30f22e61c0fd4005b8bbd49321b53d91a25b3c107f81e53f80baf5c038ce850f9" + } + ], + "purl": "pkg:npm/webpack-merge@5.8.0", + "type": "library", + "bom-ref": "pkg:npm/webpack-merge@5.8.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webpack-sources", + "version": "1.4.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "9604d2dd786fd6508e2a8ed20394e3297323a52338b018cd579faad9ba9eb1b48fb391631a653a8e3b414a45fd6f8a96f3bbc322c0889543ce1216d9acc76379" + } + ], + "purl": "pkg:npm/webpack-sources@1.4.3", + "type": "library", + "bom-ref": "pkg:npm/webpack-sources@1.4.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webpack-sources", + "version": "2.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "cbd108f403b8d898c472b4c914e626572c1565d29551f3af0d43ec25e6b9188af524e106155ab0958d8ad3df1f1682233a40f31e7d808d1bccf1db0166efa008" + } + ], + "purl": "pkg:npm/webpack-sources@2.3.1", + "type": "library", + "bom-ref": "pkg:npm/webpack-sources@2.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webpack-sources", + "version": "3.2.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "fc3c8c10eac380b28a206d1f9afb73fb87545ffdc6868cf0826ea23e9f0a461be7f9e41ff7e43b196c5534c937fae08f59f757602e04c4605c9085dd1447c7d7" + } + ], + "purl": "pkg:npm/webpack-sources@3.2.3", + "type": "library", + "bom-ref": "pkg:npm/webpack-sources@3.2.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "webpack", + "version": "5.76.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "979b0e758043ba7c9fef61d6f1d176deb16d5aaffb660bedffd7ed3287fbd44ff251bd582ce0664e00362b8bd0b61077928b4cad28fad3db71544d1d9ebd9f8c" + } + ], + "purl": "pkg:npm/webpack@5.76.0", + "type": "library", + "bom-ref": "pkg:npm/webpack@5.76.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "whatwg-encoding", + "version": "1.0.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "6f99629b9e0938f37d1edcef2bd1c55ef0666bfae77c57aab22734852a63b436d5c51ddd24a2dcf8a07857a1a08863af97b098fca361f2bc52a3d0ca42b9d413" + } + ], + "purl": "pkg:npm/whatwg-encoding@1.0.5", + "type": "library", + "bom-ref": "pkg:npm/whatwg-encoding@1.0.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "whatwg-mimetype", + "version": "2.3.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "338c8cc2bea6027433efa4db266f75e3e80fa41fe70b0bd96c9536f1c503e9d474d38480c432ce39251a07524346a2ed68e57fbe2d080b9944006160ae31affe" + } + ], + "purl": "pkg:npm/whatwg-mimetype@2.3.0", + "type": "library", + "bom-ref": "pkg:npm/whatwg-mimetype@2.3.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "whatwg-url", + "version": "5.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "b1a139ee7ba9c64eafdc7637e7e8f307061ad2b292cb45d1f094b164fc202ebef2b34201ce11af880d7f4d41892e6495aacf296fd027bc809712e3872e9ad84f" + } + ], + "purl": "pkg:npm/whatwg-url@5.0.0", + "type": "library", + "bom-ref": "pkg:npm/whatwg-url@5.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "whatwg-url", + "version": "8.7.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "800a23a9bfe6f50f1ae4857de84ddf1c933bd00cc2920b78b97617d8eec49aec8e9cbad5882425b0406617d51022edff69e008a76535eebb5ba5958d9ed42a76" + } + ], + "purl": "pkg:npm/whatwg-url@8.7.0", + "type": "library", + "bom-ref": "pkg:npm/whatwg-url@8.7.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "which-boxed-primitive", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "6f065dbf400a2e9a65158d8a6515fa4efcae37ba238ebee5c2483a9a5d2ba08cbd61eb92afb252dfbdaa94d5b5f14418ce060af7388671ead6a993a6127f5536" + } + ], + "purl": "pkg:npm/which-boxed-primitive@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/which-boxed-primitive@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "which-typed-array", + "version": "1.1.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "c3d738c64c7a98f89dc29ef5f347246167cc9afc698e566e22e74db437f837fb5301407c5496d7db9a99a00b2bb46b983671b0de96b401781b18a441f3f11c78" + } + ], + "purl": "pkg:npm/which-typed-array@1.1.9", + "type": "library", + "bom-ref": "pkg:npm/which-typed-array@1.1.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "which", + "version": "1.3.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "1f125d616ab53132106c9de7c3472ab2c1e84cd536ebb2a5ac3b866755989710d2b54b4a52139a266875d76fd36661f1c547ee26a3d748e9bbb43c9ab3439221" + } + ], + "purl": "pkg:npm/which@1.3.1", + "type": "library", + "bom-ref": "pkg:npm/which@1.3.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "which", + "version": "2.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "04b2374e5d535b73ef97bd25df2ab763ae22f9ac29c17aac181616924a8cb676d782b303fb28fbae15b492e103c7325a6171a3116e6881aa4a34c10a34c8e26c" + } + ], + "purl": "pkg:npm/which@2.0.2", + "type": "library", + "bom-ref": "pkg:npm/which@2.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "wildcard", + "version": "2.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "25c2aa0072cfc5c75bf4a338f5db9f1979f6c77b2c9df8db71a41d2e57d9b0bf6b1fdc200d08d4b43c5ba3c344d05e9216fc9d7aed558597bb859b87b01dbfa7" + } + ], + "purl": "pkg:npm/wildcard@2.0.0", + "type": "library", + "bom-ref": "pkg:npm/wildcard@2.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "word-wrap", + "version": "1.2.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "d95f35380e2e815a39a51a38ea10280f68af509c7c8d79965df524638285370d21129b6f37441f1f72b89c78b0cc678a979ac529e755e3c415a2a61abf2e18a4" + } + ], + "purl": "pkg:npm/word-wrap@1.2.4", + "type": "library", + "bom-ref": "pkg:npm/word-wrap@1.2.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "wrap-ansi", + "version": "7.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "6151888f691a98b493c70e8db198e80717d2c2c9f4c9c75eb26738a7e436d5ce733ee675a65f8d7f155dc4fb5d1ef98d54e43a5d2606e0052dcadfc58bb0f5e9" + } + ], + "purl": "pkg:npm/wrap-ansi@7.0.0", + "type": "library", + "bom-ref": "pkg:npm/wrap-ansi@7.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "wrappy", + "version": "1.0.2", + "hashes": [ + { + "alg": "SHA-1", + "content": "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + } + ], + "purl": "pkg:npm/wrappy@1.0.2", + "type": "library", + "bom-ref": "pkg:npm/wrappy@1.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "write-file-atomic", + "version": "3.0.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "02f1dcc99e499d27eade2a12ca3ac1907f725b89bb03293cffd332fc30fda2729ebbff787f0acca1c7a63b64002450259e70cdf990d2f998c0479b9ad7f3d5fd" + } + ], + "purl": "pkg:npm/write-file-atomic@3.0.3", + "type": "library", + "bom-ref": "pkg:npm/write-file-atomic@3.0.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "write-file-atomic", + "version": "5.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f90536cdde8e4c3f175882426df7da890787f54ef7a88a9a7e8d71e95d6c9c25981897fa7151347034780fcc51cdc1277c8db5205ad43f33c6b5c3dff000be47" + } + ], + "purl": "pkg:npm/write-file-atomic@5.0.1", + "type": "library", + "bom-ref": "pkg:npm/write-file-atomic@5.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "ws", + "version": "7.5.5", + "hashes": [ + { + "alg": "SHA-512", + "content": "04090c15c03397c6acd46fe102b9313b1ab71bba6352a43783361b2cbd3fe73364a61ef47be942a310469e6e805b5fbf6a235e5787e72aa67c9b81997b0987db" + } + ], + "purl": "pkg:npm/ws@7.5.5", + "type": "library", + "bom-ref": "pkg:npm/ws@7.5.5", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "xml-name-validator", + "version": "3.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "039094a6dc43b2fc4a244537c8ee83b96052273fea8b3ab324a38c21f5091c44db070fec15a0f181de9fc66d5ec1468cd23678e3815ce6f0b944e62eae0ff83f" + } + ], + "purl": "pkg:npm/xml-name-validator@3.0.0", + "type": "library", + "bom-ref": "pkg:npm/xml-name-validator@3.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "xmlchars", + "version": "2.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "2599c328af01d11083c3ce0535d0c022964af89b89c3eb3b2f3f2792c23b488b94dd45c926c954b61b22fae5815183b03c5c16ed6ecf44b45f50aa718ed8c50b" + } + ], + "purl": "pkg:npm/xmlchars@2.2.0", + "type": "library", + "bom-ref": "pkg:npm/xmlchars@2.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "xtend", + "version": "4.0.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "2ca614d620172575200179fd5118e2bbe3168725171ecbdfa7b99cb989bd75250a2b4fc28edad4c050310fcdbf98259bb4bb068c521a774c08b28778ceb4c011" + } + ], + "purl": "pkg:npm/xtend@4.0.2", + "type": "library", + "bom-ref": "pkg:npm/xtend@4.0.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "y18n", + "version": "5.0.8", + "hashes": [ + { + "alg": "SHA-512", + "content": "d297c5cde81e0d62472480264cb44fd83c078dd179b3b8e8f6dbb3b5d43102120d09dbd2fb79c620da8f774d00a61a8947fd0b8403544baffeed209bf7c60e7c" + } + ], + "purl": "pkg:npm/y18n@5.0.8", + "type": "library", + "bom-ref": "pkg:npm/y18n@5.0.8", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "yallist", + "version": "4.0.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "df074689d672ab93c1d3ce172c44b94e9392440df08d7025216321ba6da445cbffe354a7d9e990d1dc9c416e2e6572de8f02af83a12cbdb76554bf8560472dec" + } + ], + "purl": "pkg:npm/yallist@4.0.0", + "type": "library", + "bom-ref": "pkg:npm/yallist@4.0.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "yaml-ast-parser", + "version": "0.0.43", + "hashes": [ + { + "alg": "SHA-512", + "content": "d8f4c8354c2c46a49dfacf17c4a689590954b84307250c84ba1d9e7416d6f0a349cf44893f05120f6cd15aa7b314474dec8cc081eb981c550217ba3ccd1759d0" + } + ], + "purl": "pkg:npm/yaml-ast-parser@0.0.43", + "type": "library", + "bom-ref": "pkg:npm/yaml-ast-parser@0.0.43", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "yaml", + "version": "1.10.2", + "hashes": [ + { + "alg": "SHA-512", + "content": "af7bd7c84ad109827bc20dbccaf058e554a8005f19be5716f7f07053312d52c8ef5ff0cab36e1d224bb08edba9af02491ec6f251b2c0a5ea584d1d41378b87ae" + } + ], + "purl": "pkg:npm/yaml@1.10.2", + "type": "library", + "bom-ref": "pkg:npm/yaml@1.10.2", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "yargs-parser", + "version": "20.2.7", + "hashes": [ + { + "alg": "SHA-512", + "content": "162364bdb787cc1fecc8e8c85311430a78527f300bf11e6fb38d0c80b141a2b5c008238011a5aed20459975e2f1bc311f403892196e692386eb2a0586771d31f" + } + ], + "purl": "pkg:npm/yargs-parser@20.2.7", + "type": "library", + "bom-ref": "pkg:npm/yargs-parser@20.2.7", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "yargs-parser", + "version": "20.2.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "cb5d67184953215f824f766ff6ded52a5f90de14d0a13f5ad50cdece1865e91a76d6027f2154d6ed9df2f4459786e5010b64a19dff835f46a7b5e72903048ff3" + } + ], + "purl": "pkg:npm/yargs-parser@20.2.9", + "type": "library", + "bom-ref": "pkg:npm/yargs-parser@20.2.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "yargs-parser", + "version": "21.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "f412b58c5a4bcc944e088e53cf064bfd353882a8cae7188757f45f58b39a86b8c0928fdee032644436505dfbea02c899cf3621800cdb833ea5838f23726e062e" + } + ], + "purl": "pkg:npm/yargs-parser@21.0.1", + "type": "library", + "bom-ref": "pkg:npm/yargs-parser@21.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "yargs", + "version": "16.2.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "0f59afbed0c6d0be5fb7f8c65a42e91b5fa6d1e43139f681bd33442eb6968f6db049550c5b1654bd880961c2a1ea3186224245847e0864f4214784caa5cf2607" + } + ], + "purl": "pkg:npm/yargs@16.2.0", + "type": "library", + "bom-ref": "pkg:npm/yargs@16.2.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "yargs", + "version": "17.0.1", + "hashes": [ + { + "alg": "SHA-512", + "content": "c4106e95f09cf18ea02c572b3efb6a2b3f61cfc48ed25d4d8bc1a00de92f057daba341d14089831a78a47dcdf7720cdc6144a771aa6735c6438d51481f77fa29" + } + ], + "purl": "pkg:npm/yargs@17.0.1", + "type": "library", + "bom-ref": "pkg:npm/yargs@17.0.1", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "yocto-queue", + "version": "0.1.0", + "hashes": [ + { + "alg": "SHA-512", + "content": "ad592cbec9cd09d27fa2119ceb180fc3237c7a1782c6c88b33c9b1b84fedfe6395a897b03ee3b59a22e94c74224604ca08b7b12f831e00555a82db3b1e6359d9" + } + ], + "purl": "pkg:npm/yocto-queue@0.1.0", + "type": "library", + "bom-ref": "pkg:npm/yocto-queue@0.1.0", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "zrender", + "version": "5.4.3", + "hashes": [ + { + "alg": "SHA-512", + "content": "0d150ce192e7a1a4f43c156f1810cef685880c128574056278d5b15b02b49e263324233019c851936d7f86c13e44a908bde1f75c70b2bd77090e480b56f7e2cd" + } + ], + "purl": "pkg:npm/zrender@5.4.3", + "type": "library", + "bom-ref": "pkg:npm/zrender@5.4.3", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "zustand", + "version": "4.3.9", + "hashes": [ + { + "alg": "SHA-512", + "content": "4dab79afc8ce306d5572c8fcba574ccaa60a0b9219bd089ff337ad98b1ecf56a19967b531e622834cf13a4b458df51319dcb94bd43977a177492f6a192e1e30f" + } + ], + "purl": "pkg:npm/zustand@4.3.9", + "type": "library", + "bom-ref": "pkg:npm/zustand@4.3.9", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "group": "", + "name": "zwitch", + "version": "2.0.4", + "hashes": [ + { + "alg": "SHA-512", + "content": "6d7138711fe455984a657fd18cf11f94768a56151597ce67a14defe9bf1aa5f404735c7803ecc1c6367894df0ba8677a599ddd97df29638a3bd7b5459a83e9f8" + } + ], + "purl": "pkg:npm/zwitch@2.0.4", + "type": "library", + "bom-ref": "pkg:npm/zwitch@2.0.4", + "evidence": { + "identity": { + "field": "purl", + "confidence": 1, + "methods": [ + { + "technique": "manifest-analysis", + "confidence": 1, + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + } + }, + "properties": [ + { + "name": "SrcFile", + "value": "/app/2.8.0/python3.10/yarn.lock" + } + ] + }, + { + "author": "Hsiaoming Yang ", + "group": "", + "name": "Authlib", + "version": "1.2.1", + "description": "The ultimate Python library in building OAuth and OpenID Connect servers and clients.", + "hashes": [ + { + "alg": "SHA-256", + "content": "c88984ea00149a90e3537c964327da930779afa4564e354edfd98410bea01911" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/authlib@1.2.1", + "type": "library", + "bom-ref": "pkg:pypi/authlib@1.2.1", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "1.3.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "Authlib" + } + ] + }, + { + "author": "Armin Ronacher ", + "group": "", + "name": "Babel", + "version": "2.14.0", + "description": "Internationalization utilities", + "hashes": [ + { + "alg": "SHA-256", + "content": "efb1a25b7118e67ce3a259bed20545c29cb68be8ad2c784c83689981b7a57287" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/babel@2.14.0", + "externalReferences": [ + { + "type": "website", + "url": "https://babel.pocoo.org/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/babel@2.14.0" + }, + { + "author": "Florian Wilhelm ", + "group": "", + "name": "ConfigUpdater", + "version": "3.2", + "description": "Parser like ConfigParser but for updating configuration files", + "hashes": [ + { + "alg": "SHA-256", + "content": "0f65a041627d7693840b4dd743581db4c441c97195298a29d075f91b79539df2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/configupdater@3.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pyscaffold/configupdater" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/configupdater@3.2" + }, + { + "author": "Laurent LAPORTE ", + "group": "", + "name": "Deprecated", + "version": "1.2.14", + "description": "Python @deprecated decorator to deprecate old python classes, functions or methods.", + "hashes": [ + { + "alg": "SHA-256", + "content": "6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/deprecated@1.2.14", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/tantale/deprecated" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/deprecated@1.2.14" + }, + { + "author": "Daniel Vaz Gaspar ", + "group": "", + "name": "Flask-AppBuilder", + "version": "4.3.10", + "description": "Simple and rapid application development framework, built on top of Flask. includes detailed security, auto CRUD generation for your models, google charts and much more.", + "hashes": [ + { + "alg": "SHA-256", + "content": "c0af506e1a68e7ee14f26a16fda829f1a14f8343654c30bdbb1351d23c545df9" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/flask-appbuilder@4.3.10", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/dpgaspar/flask-appbuilder/" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/flask-appbuilder@4.3.10" + }, + { + "author": "Armin Ronacher", + "group": "", + "name": "Flask-Babel", + "version": "2.0.0", + "description": "Adds i18n/l10n support for Flask applications.", + "hashes": [ + { + "alg": "SHA-256", + "content": "e6820a052a8d344e178cdd36dd4bb8aea09b4bda3d5f9fa9f008df2c7f2f5468" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/flask-babel@2.0.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/python-babel/flask-babel" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/flask-babel@2.0.0", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "4.0.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "Flask-Babel" + } + ] + }, + { + "author": "Max Countryman ", + "group": "", + "name": "Flask-Bcrypt", + "version": "1.0.1", + "description": "Brcrypt hashing for Flask.", + "hashes": [ + { + "alg": "SHA-256", + "content": "062fd991dc9118d05ac0583675507b9fe4670e44416c97e0e6819d03d01f808a" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/flask-bcrypt@1.0.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/maxcountryman/flask-bcrypt" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/flask-bcrypt@1.0.1" + }, + { + "author": "Peter Justin ", + "group": "", + "name": "Flask-Caching", + "version": "2.1.0", + "description": "Adds caching support to Flask applications.", + "hashes": [ + { + "alg": "SHA-256", + "content": "f02645a629a8c89800d96dc8f690a574a0d49dcd66c7536badc6d362ba46b716" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/flask-caching@2.1.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pallets-eco/flask-caching" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/flask-caching@2.1.0" + }, + { + "author": "Lily Acadia Gilbert ", + "group": "", + "name": "Flask-JWT-Extended", + "version": "4.6.0", + "description": "Extended JWT integration with Flask", + "hashes": [ + { + "alg": "SHA-256", + "content": "63a28fc9731bcc6c4b8815b6f954b5904caa534fc2ae9b93b1d3ef12930dca95" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/flask-jwt-extended@4.6.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/vimalloc/flask-jwt-extended" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/flask-jwt-extended@4.6.0" + }, + { + "author": "Ali-Akber Saifee ", + "group": "", + "name": "Flask-Limiter", + "version": "3.5.0", + "description": "Rate limiting for flask applications", + "hashes": [ + { + "alg": "SHA-256", + "content": "dbda4174f44e6cb858c6eb75e7488186f2977dd5d33d7028ba1aabf179de1bee" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/flask-limiter@3.5.0", + "externalReferences": [ + { + "type": "website", + "url": "https://flask-limiter.readthedocs.org" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/flask-limiter@3.5.0" + }, + { + "author": "Matthew Frazier ", + "group": "", + "name": "Flask-Login", + "version": "0.6.3", + "description": "User authentication and session management for Flask.", + "hashes": [ + { + "alg": "SHA-256", + "content": "849b25b82a436bf830a054e74214074af59097171562ab10bfa999e6b78aae5d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/flask-login@0.6.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/maxcountryman/flask-login" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/flask-login@0.6.3" + }, + { + "group": "", + "name": "Flask-SQLAlchemy", + "version": "2.5.1", + "description": "Add SQLAlchemy support to your Flask application.", + "hashes": [ + { + "alg": "SHA-256", + "content": "f12c3d4cc5cc7fdcc148b9527ea05671718c3ea45d50c7e732cceb33f574b390" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/flask-sqlalchemy@2.5.1", + "type": "framework", + "bom-ref": "pkg:pypi/flask-sqlalchemy@2.5.1", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "3.1.1" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "Flask-SQLAlchemy" + } + ] + }, + { + "author": "Shipeng Feng ", + "group": "", + "name": "Flask-Session", + "version": "0.5.0", + "description": "Server-side session support for Flask", + "hashes": [ + { + "alg": "SHA-256", + "content": "1619bcbc16f04f64e90f8e0b17145ba5c9700090bb1294e889956c1282d58631" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/flask-session@0.5.0", + "type": "framework", + "bom-ref": "pkg:pypi/flask-session@0.5.0" + }, + { + "group": "", + "name": "Flask-WTF", + "version": "1.2.1", + "description": "Form rendering, validation, and CSRF protection for Flask with WTForms.", + "hashes": [ + { + "alg": "SHA-256", + "content": "fa6793f2fb7e812e0fe9743b282118e581fb1b6c45d414b8af05e659bd653287" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/flask-wtf@1.2.1", + "type": "framework", + "bom-ref": "pkg:pypi/flask-wtf@1.2.1" + }, + { + "group": "", + "name": "Flask", + "version": "2.2.5", + "description": "A simple framework for building complex web applications.", + "hashes": [ + { + "alg": "SHA-256", + "content": "58107ed83443e86067e41eff4631b058178191a355886f8e479e347fa1285fdf" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/flask@2.2.5", + "type": "framework", + "bom-ref": "pkg:pypi/flask@2.2.5", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "3.0.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "Flask" + } + ] + }, + { + "author": "Armin Ronacher ", + "group": "", + "name": "Jinja2", + "version": "3.1.2", + "description": "A very fast and expressive template engine.", + "hashes": [ + { + "alg": "SHA-256", + "content": "6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/jinja2@3.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://palletsprojects.com/p/jinja/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/jinja2@3.1.2" + }, + { + "author": "Mike Bayer ", + "group": "", + "name": "Mako", + "version": "1.3.0", + "description": "A super-fast templating language that borrows the best ideas from the existing templating languages.", + "hashes": [ + { + "alg": "SHA-256", + "content": "57d4e997349f1a92035aa25c17ace371a4213f2ca42f99bee9a602500cfd54d9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/mako@1.3.0", + "externalReferences": [ + { + "type": "website", + "url": "https://www.makotemplates.org/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/mako@1.3.0" + }, + { + "author": "Manfred Stienstra, Yuri Takhteyev >", + "group": "", + "name": "Markdown", + "version": "3.5.1", + "description": "Python implementation of John Gruber's Markdown.", + "hashes": [ + { + "alg": "SHA-256", + "content": "5874b47d4ee3f0b14d764324d2c94c03ea66bee56f2d929da9f2508d65e722dc" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/markdown@3.5.1", + "type": "library", + "bom-ref": "pkg:pypi/markdown@3.5.1" + }, + { + "group": "", + "name": "MarkupSafe", + "version": "2.1.3", + "description": "Safely add untrusted strings to HTML/XML markup.", + "hashes": [ + { + "alg": "SHA-256", + "content": "cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/markupsafe@2.1.3", + "externalReferences": [ + { + "type": "website", + "url": "https://palletsprojects.com/p/markupsafe/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/markupsafe@2.1.3" + }, + { + "author": "Jose Padilla ", + "group": "", + "name": "PyJWT", + "version": "2.8.0", + "description": "JSON Web Token implementation in Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pyjwt@2.8.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/jpadilla/pyjwt" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pyjwt@2.8.0" + }, + { + "author": "Kirill Simonov ", + "group": "", + "name": "PyYAML", + "version": "6.0.1", + "description": "YAML parser and emitter for Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pyyaml@6.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://pyyaml.org/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pyyaml@6.0.1" + }, + { + "author": "Georg Brandl ", + "group": "", + "name": "Pygments", + "version": "2.17.2", + "description": "Pygments is a syntax highlighting package written in Python.", + "hashes": [ + { + "alg": "SHA-256", + "content": "b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-2-Clause", + "url": "https://opensource.org/licenses/BSD-2-Clause" + } + } + ], + "purl": "pkg:pypi/pygments@2.17.2", + "type": "library", + "bom-ref": "pkg:pypi/pygments@2.17.2" + }, + { + "author": "Alexey Stepanov ", + "group": "", + "name": "SQLAlchemy-JSONField", + "version": "1.0.2", + "description": "SQLALchemy JSONField implementation for storing dicts at SQL", + "hashes": [ + { + "alg": "SHA-256", + "content": "b2945fa1e60b07d5764a7c73b18da427948b35dd4c07c0e94939001dc2dacf77" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/sqlalchemy-jsonfield@1.0.2", + "type": "library", + "bom-ref": "pkg:pypi/sqlalchemy-jsonfield@1.0.2" + }, + { + "author": "Konsta Vesterinen, Ryan Leckey, Janne Vanhala, Vesa Uimonen ", + "group": "", + "name": "SQLAlchemy-Utils", + "version": "0.41.1", + "description": "Various utility functions for SQLAlchemy.", + "hashes": [ + { + "alg": "SHA-256", + "content": "6c96b0768ea3f15c0dc56b363d386138c562752b84f647fb8d31a2223aaab801" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/sqlalchemy-utils@0.41.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/kvesteri/sqlalchemy-utils" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/sqlalchemy-utils@0.41.1" + }, + { + "author": "Mike Bayer ", + "group": "", + "name": "SQLAlchemy", + "version": "1.4.50", + "description": "Database Abstraction Library", + "hashes": [ + { + "alg": "SHA-256", + "content": "d00665725063692c42badfd521d0c4392e83c6c826795d38eb88fb108e5660e5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/sqlalchemy@1.4.50", + "externalReferences": [ + { + "type": "website", + "url": "https://www.sqlalchemy.org" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/sqlalchemy@1.4.50", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "2.0.23" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "SQLAlchemy" + } + ] + }, + { + "group": "", + "name": "WTForms", + "version": "3.1.1", + "description": "Form validation and rendering for Python web development.", + "hashes": [ + { + "alg": "SHA-256", + "content": "ae7c54b29806c70f7bce8eb9f24afceb10ca5c32af3d9f04f74d2f66ccc5c7e0" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/wtforms@3.1.1", + "type": "library", + "bom-ref": "pkg:pypi/wtforms@3.1.1" + }, + { + "group": "", + "name": "Werkzeug", + "version": "2.2.3", + "description": "The comprehensive WSGI web application library.", + "hashes": [ + { + "alg": "SHA-256", + "content": "56433961bc1f12533306c624f3be5e744389ac61d722175d543e1751285da612" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/werkzeug@2.2.3", + "type": "library", + "bom-ref": "pkg:pypi/werkzeug@2.2.3", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "3.0.1" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "Werkzeug" + } + ] + }, + { + "author": "Nikolay Novik ", + "group": "", + "name": "aiobotocore", + "version": "2.9.0", + "description": "Async client for aws services using botocore and aiohttp", + "hashes": [ + { + "alg": "SHA-256", + "content": "acf5e49644e6e434b9ecc26284ae7e05d557effbdcdd8185e2eb08925f011853" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/aiobotocore@2.9.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/aio-libs/aiobotocore" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/aiobotocore@2.9.0" + }, + { + "author": "Tin Tvrtkovic ", + "group": "", + "name": "aiofiles", + "version": "23.2.1", + "description": "File support for asyncio.", + "hashes": [ + { + "alg": "SHA-256", + "content": "19297512c647d4b27a2cf7c34caa7e405c0d60b5560618a29a9fe027b18b0107" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/aiofiles@23.2.1", + "type": "library", + "bom-ref": "pkg:pypi/aiofiles@23.2.1" + }, + { + "group": "", + "name": "aiohttp", + "version": "3.9.1", + "description": "Async http client/server framework (asyncio)", + "hashes": [ + { + "alg": "SHA-256", + "content": "e1f80197f8b0b846a8d5cf7b7ec6084493950d0882cc5537fb7b96a69e3c8590" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/aiohttp@3.9.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/aio-libs/aiohttp" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/aiohttp@3.9.1" + }, + { + "author": "Amethyst Reese ", + "group": "", + "name": "aioitertools", + "version": "0.11.0", + "description": "itertools and builtins for AsyncIO and mixed iterables", + "hashes": [ + { + "alg": "SHA-256", + "content": "04b95e3dab25b449def24d7df809411c10e62aab0cbe31a50ca4e68748c43394" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/aioitertools@0.11.0", + "externalReferences": [ + { + "type": "website", + "url": "https://aioitertools.omnilib.dev" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/aioitertools@0.11.0" + }, + { + "group": "", + "name": "aiosignal", + "version": "1.3.1", + "description": "aiosignal: a list of registered asynchronous callbacks", + "hashes": [ + { + "alg": "SHA-256", + "content": "f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/aiosignal@1.3.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/aio-libs/aiosignal" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/aiosignal@1.3.1" + }, + { + "author": "Mike Bayer ", + "group": "", + "name": "alembic", + "version": "1.13.0", + "description": "A database migration tool for SQLAlchemy.", + "hashes": [ + { + "alg": "SHA-256", + "content": "a23974ea301c3ee52705db809c7413cecd165290c6679b9998dd6c74342ca23a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/alembic@1.13.0", + "externalReferences": [ + { + "type": "website", + "url": "https://alembic.sqlalchemy.org" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/alembic@1.13.0" + }, + { + "author": "Barry Pederson ", + "group": "", + "name": "amqp", + "version": "5.2.0", + "description": "Low-level AMQP client for Python (fork of amqplib).", + "hashes": [ + { + "alg": "SHA-256", + "content": "827cb12fb0baa892aad844fd95258143bce4027fdac4fccddbc43330fd281637" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/amqp@5.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "http://github.com/celery/py-amqp" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/amqp@5.2.0" + }, + { + "author": "Samuel Colvin , Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>, Zac Hatfield-Dodds ", + "group": "", + "name": "annotated-types", + "version": "0.6.0", + "description": "Reusable constraint types to use with typing.Annotated", + "hashes": [ + { + "alg": "SHA-256", + "content": "0641064de18ba7a25dee8f96403ebc39113d0cb953a01429249d5c7564666a43" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/annotated-types@0.6.0", + "type": "library", + "bom-ref": "pkg:pypi/annotated-types@0.6.0" + }, + { + "author": "Alex Grönholm ", + "group": "", + "name": "anyio", + "version": "4.1.0", + "description": "High level compatibility layer for multiple asynchronous event loop implementations", + "hashes": [ + { + "alg": "SHA-256", + "content": "56a415fbc462291813a94528a779597226619c8e78af7de0507333f700011e5f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/anyio@4.1.0", + "type": "library", + "bom-ref": "pkg:pypi/anyio@4.1.0", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "4.2.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "anyio" + } + ] + }, + { + "author": "Steven Loria ", + "group": "", + "name": "apispec", + "version": "6.3.0", + "description": "A pluggable API specification generator. Currently supports the OpenAPI Specification (f.k.a. the Swagger specification).", + "hashes": [ + { + "alg": "SHA-256", + "content": "95a0b9355785df998bb0e9b939237a30ee4c7428fd6ef97305eae3da06b9b339" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/apispec@6.3.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/marshmallow-code/apispec" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/apispec@6.3.0" + }, + { + "author": "Andrey Kislyuk ", + "group": "", + "name": "argcomplete", + "version": "3.2.1", + "description": "Bash tab completion for argparse", + "hashes": [ + { + "alg": "SHA-256", + "content": "30891d87f3c1abe091f2142613c9d33cac84a5e15404489f033b20399b691fec" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/argcomplete@3.2.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/kislyuk/argcomplete" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/argcomplete@3.2.1" + }, + { + "author": "Django Software Foundation ", + "group": "", + "name": "asgiref", + "version": "3.7.2", + "description": "ASGI specs, helper code, and adapters", + "hashes": [ + { + "alg": "SHA-256", + "content": "89b2ef2247e3b562a16eef663bc0e2e703ec6468e2fa8a5cd61cd449786d4f6e" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/asgiref@3.7.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/django/asgiref/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/asgiref@3.7.2" + }, + { + "author": "Andrew Svetlov ", + "group": "", + "name": "async-timeout", + "version": "4.0.3", + "description": "Timeout context manager for asyncio programs", + "hashes": [ + { + "alg": "SHA-256", + "content": "7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/async-timeout@4.0.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/aio-libs/async-timeout" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/async-timeout@4.0.3" + }, + { + "author": "Hynek Schlawack ", + "group": "", + "name": "attrs", + "version": "23.1.0", + "description": "Classes Without Boilerplate", + "hashes": [ + { + "alg": "SHA-256", + "content": "1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/attrs@23.1.0", + "type": "library", + "bom-ref": "pkg:pypi/attrs@23.1.0" + }, + { + "author": "Bob Green ", + "group": "", + "name": "backoff", + "version": "2.2.1", + "description": "Function decoration for backoff and retry", + "hashes": [ + { + "alg": "SHA-256", + "content": "63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/backoff@2.2.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/litl/backoff" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/backoff@2.2.1" + }, + { + "author": "The Python Cryptographic Authority developers ", + "group": "", + "name": "bcrypt", + "version": "4.1.2", + "description": "Modern password hashing for your software and your servers", + "hashes": [ + { + "alg": "SHA-256", + "content": "ac621c093edb28200728a9cca214d7e838529e557027ef0581685909acd28b5e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/bcrypt@4.1.2", + "type": "library", + "bom-ref": "pkg:pypi/bcrypt@4.1.2" + }, + { + "author": "R Oudkerk / Python Software Foundation ", + "group": "", + "name": "billiard", + "version": "4.2.0", + "description": "Python multiprocessing fork with improvements and bugfixes", + "hashes": [ + { + "alg": "SHA-256", + "content": "07aa978b308f334ff8282bd4a746e681b3513db5c9a514cbdd810cbbdc19714d" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/billiard@4.2.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/celery/billiard" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/billiard@4.2.0" + }, + { + "author": "Jason Kirtland ", + "group": "", + "name": "blinker", + "version": "1.7.0", + "description": "Fast, simple object-to-object and broadcast signaling", + "hashes": [ + { + "alg": "SHA-256", + "content": "c3f865d4d54db7abc53758a01601cf343fe55b84c1de4e3fa910e420b438d5b9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/blinker@1.7.0", + "type": "library", + "bom-ref": "pkg:pypi/blinker@1.7.0" + }, + { + "author": "Amazon Web Services", + "group": "", + "name": "botocore", + "version": "1.33.13", + "description": "Low-level, data-driven core of boto 3.", + "hashes": [ + { + "alg": "SHA-256", + "content": "aeadccf4b7c674c7d47e713ef34671b834bc3e89723ef96d994409c9f54666e6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/botocore@1.33.13", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/boto/botocore" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/botocore@1.33.13", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "1.34.2" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "botocore" + } + ] + }, + { + "group": "", + "name": "cachelib", + "version": "0.9.0", + "description": "A collection of cache libraries in the same API interface.", + "hashes": [ + { + "alg": "SHA-256", + "content": "811ceeb1209d2fe51cd2b62810bd1eccf70feba5c52641532498be5c675493b3" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/cachelib@0.9.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pallets-eco/cachelib/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/cachelib@0.9.0", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "0.10.2" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "cachelib" + } + ] + }, + { + "author": "Thomas Kemmer ", + "group": "", + "name": "cachetools", + "version": "5.3.2", + "description": "Extensible memoizing collections and decorators", + "hashes": [ + { + "alg": "SHA-256", + "content": "861f35a13a451f94e301ce2bec7cac63e881232ccce7ed67fab9b5df4d3beaa1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/cachetools@5.3.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/tkem/cachetools/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/cachetools@5.3.2" + }, + { + "author": "Ask Solem ", + "group": "", + "name": "celery", + "version": "5.3.6", + "description": "Distributed Task Queue.", + "hashes": [ + { + "alg": "SHA-256", + "content": "9da4ea0118d232ce97dff5ed4974587fb1c0ff5c10042eb15278487cdd27d1af" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/celery@5.3.6", + "externalReferences": [ + { + "type": "website", + "url": "https://docs.celeryq.dev/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/celery@5.3.6" + }, + { + "author": "Kenneth Reitz ", + "group": "", + "name": "certifi", + "version": "2023.11.17", + "description": "Python package for providing Mozilla's CA Bundle.", + "hashes": [ + { + "alg": "SHA-256", + "content": "e036ab49d5b79556f99cfc2d9320b34cfbe5be05c5871b51de9329f0603b0474" + } + ], + "licenses": [ + { + "license": { + "id": "MPL-2.0", + "url": "https://opensource.org/licenses/MPL-2.0" + } + } + ], + "purl": "pkg:pypi/certifi@2023.11.17", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/certifi/python-certifi" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/certifi@2023.11.17" + }, + { + "author": "Armin Rigo, Maciej Fijalkowski ", + "group": "", + "name": "cffi", + "version": "1.16.0", + "description": "Foreign Function Interface for Python calling C code.", + "hashes": [ + { + "alg": "SHA-256", + "content": "6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/cffi@1.16.0", + "externalReferences": [ + { + "type": "website", + "url": "http://cffi.readthedocs.org" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/cffi@1.16.0" + }, + { + "author": "CloudSigma AG ", + "group": "", + "name": "cgroupspy", + "version": "0.2.2", + "description": "Python library for managing cgroups", + "hashes": [ + { + "alg": "SHA-256", + "content": "d42b4666b852e65e20b8864747fe86e27c04d3b09d44c76f18cca9b12c957475" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "name": "New BSD" + } + } + ], + "purl": "pkg:pypi/cgroupspy@0.2.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/cloudsigma/cgroupspy" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/cgroupspy@0.2.2" + }, + { + "author": "Ahmed TAHRI ", + "group": "", + "name": "charset-normalizer", + "version": "3.3.2", + "description": "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet.", + "hashes": [ + { + "alg": "SHA-256", + "content": "25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/charset-normalizer@3.3.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/Ousret/charset_normalizer" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/charset-normalizer@3.3.2" + }, + { + "author": "Timo Furrer ", + "group": "", + "name": "click-didyoumean", + "version": "0.3.0", + "description": "Enables git-like *did-you-mean* feature in click", + "hashes": [ + { + "alg": "SHA-256", + "content": "a0713dc7a1de3f06bc0df5a9567ad19ead2d3d5689b434768a6145bff77c0667" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/click-didyoumean@0.3.0", + "type": "library", + "bom-ref": "pkg:pypi/click-didyoumean@0.3.0" + }, + { + "author": "Kevin Wurster, Sean Gillies ", + "group": "", + "name": "click-plugins", + "version": "1.1.1", + "description": "An extension module for click to enable registering CLI commands via setuptools entry-points.", + "hashes": [ + { + "alg": "SHA-256", + "content": "5d262006d3222f5057fd81e1623d4443e41dcda5dc815c06b442aa3c02889fc8" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "name": "New BSD" + } + } + ], + "purl": "pkg:pypi/click-plugins@1.1.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/click-contrib/click-plugins" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/click-plugins@1.1.1" + }, + { + "author": "Markus Unterwaditzer ", + "group": "", + "name": "click-repl", + "version": "0.3.0", + "description": "REPL plugin for Click", + "hashes": [ + { + "alg": "SHA-256", + "content": "fb7e06deb8da8de86180a33a9da97ac316751c094c6899382da7feeeeb51b812" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/click-repl@0.3.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/untitaker/click-repl" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/click-repl@0.3.0" + }, + { + "group": "", + "name": "click", + "version": "8.1.7", + "description": "Composable command line interface toolkit", + "hashes": [ + { + "alg": "SHA-256", + "content": "ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/click@8.1.7", + "externalReferences": [ + { + "type": "website", + "url": "https://palletsprojects.com/p/click/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/click@8.1.7" + }, + { + "author": "Henning Jacobs ", + "group": "", + "name": "clickclick", + "version": "20.10.2", + "description": "Click utility functions", + "hashes": [ + { + "alg": "SHA-256", + "content": "c8f33e6d9ec83f68416dd2136a7950125bd256ec39ccc9a85c6e280a16be2bb5" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/clickclick@20.10.2", + "externalReferences": [ + { + "type": "website", + "url": "https://codeberg.org/hjacobs/python-clickclick" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/clickclick@20.10.2" + }, + { + "author": "Jonathan Hartley ", + "group": "", + "name": "colorama", + "version": "0.4.6", + "description": "Cross-platform colored terminal text.", + "hashes": [ + { + "alg": "SHA-256", + "content": "4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/colorama@0.4.6", + "type": "library", + "bom-ref": "pkg:pypi/colorama@0.4.6" + }, + { + "author": "Sam Clements ", + "group": "", + "name": "colorlog", + "version": "4.8.0", + "description": "Add colours to the output of Python's logging module.", + "hashes": [ + { + "alg": "SHA-256", + "content": "3dd15cb27e8119a24c1a7b5c93f9f3b455855e0f73993b1c25921b2f646f1dcd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/colorlog@4.8.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/borntyping/python-colorlog" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/colorlog@4.8.0", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "6.8.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "colorlog" + } + ] + }, + { + "author": "Robbe Sneyders ", + "group": "", + "name": "connexion", + "version": "2.14.2", + "description": "Connexion - API first applications with OpenAPI/Swagger", + "hashes": [ + { + "alg": "SHA-256", + "content": "a73b96a0e07b16979a42cde7c7e26afe8548099e352cf350f80c57185e0e0b36" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/connexion@2.14.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/spec-first/connexion" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/connexion@2.14.2", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "3.0.5" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "connexion" + } + ] + }, + { + "author": "Adam Schubert ", + "group": "", + "name": "cron-descriptor", + "version": "1.4.0", + "description": "A Python library that converts cron expressions into human readable strings.", + "hashes": [ + { + "alg": "SHA-256", + "content": "b6ff4e3a988d7ca04a4ab150248e9f166fb7a5c828a85090e75bcc25aa93b4dd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/cron-descriptor@1.4.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/Salamek/cron-descriptor" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/cron-descriptor@1.4.0" + }, + { + "author": "Matsumoto Taichi, kiorky ", + "group": "", + "name": "croniter", + "version": "2.0.1", + "description": "croniter provides iteration for datetime object with cron like format", + "hashes": [ + { + "alg": "SHA-256", + "content": "4cb064ce2d8f695b3b078be36ff50115cf8ac306c10a7e8653ee2a5b534673d7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/croniter@2.0.1", + "externalReferences": [ + { + "type": "vcs", + "url": "http://github.com/kiorky/croniter" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/croniter@2.0.1" + }, + { + "author": "The Python Cryptographic Authority and individual contributors ", + "group": "", + "name": "cryptography", + "version": "41.0.7", + "description": "cryptography is a package which provides cryptographic recipes and primitives to Python developers.", + "hashes": [ + { + "alg": "SHA-256", + "content": "3c78451b78313fa81607fa1b3f1ae0a5ddd8014c38a02d9db0616133987b9cdf" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + }, + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "name": "Apache-2.0 OR BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/cryptography@41.0.7", + "type": "library", + "bom-ref": "pkg:pypi/cryptography@41.0.7" + }, + { + "author": "Michele Simionato ", + "group": "", + "name": "decorator", + "version": "5.1.1", + "description": "Decorators for Humans", + "hashes": [ + { + "alg": "SHA-256", + "content": "b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/decorator@5.1.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/micheles/decorator" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/decorator@5.1.1" + }, + { + "author": "Mike McKerns ", + "group": "", + "name": "dill", + "version": "0.3.7", + "description": "serialize all of Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "76b122c08ef4ce2eedcd4d1abd8e641114bfc6c2867f49f3c41facf65bf19f5e" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/dill@0.3.7", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/uqfoundation/dill" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/dill@0.3.7" + }, + { + "author": "Vinay Sajip ", + "group": "", + "name": "distlib", + "version": "0.3.8", + "description": "Distribution utilities", + "hashes": [ + { + "alg": "SHA-256", + "content": "034db59a0b96f8ca18035f36290806a9a6e6bd9d1ff91e45a7f172eb17e51784" + } + ], + "licenses": [ + { + "license": { + "id": "PSF-2.0", + "url": "https://opensource.org/licenses/PSF-2.0" + } + } + ], + "purl": "pkg:pypi/distlib@0.3.8", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pypa/distlib" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/distlib@0.3.8" + }, + { + "author": "Bob Halley ", + "group": "", + "name": "dnspython", + "version": "2.4.2", + "description": "DNS toolkit", + "hashes": [ + { + "alg": "SHA-256", + "content": "57c6fbaaeaaf39c891292012060beb141791735dbb4004798328fc2c467402d8" + } + ], + "licenses": [ + { + "license": { + "name": "OSI Approved" + } + }, + { + "license": { + "id": "ISC", + "url": "https://opensource.org/licenses/ISC" + } + } + ], + "purl": "pkg:pypi/dnspython@2.4.2", + "externalReferences": [ + { + "type": "website", + "url": "https://www.dnspython.org" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/dnspython@2.4.2" + }, + { + "author": "David Goodger ", + "group": "", + "name": "docutils", + "version": "0.20.1", + "description": "Docutils -- Python Documentation Utilities", + "hashes": [ + { + "alg": "SHA-256", + "content": "96f387a2c5562db4476f09f13bbab2192e764cac08ebbf3a34a95d9b1e4a59d6" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "name": "GNU General Public License (GPL)" + } + }, + { + "license": { + "id": "PSF-2.0", + "url": "https://opensource.org/licenses/PSF-2.0" + } + }, + { + "license": { + "name": "Public Domain" + } + }, + { + "license": { + "name": "public domain, Python, 2-Clause BSD, GPL 3 (see COPYING.txt)" + } + } + ], + "purl": "pkg:pypi/docutils@0.20.1", + "externalReferences": [ + { + "type": "website", + "url": "https://docutils.sourceforge.io/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/docutils@0.20.1" + }, + { + "author": "Joshua Tauberer ", + "group": "", + "name": "email-validator", + "version": "1.3.1", + "description": "A robust email address syntax and deliverability validation library.", + "hashes": [ + { + "alg": "SHA-256", + "content": "49a72f5fa6ed26be1c964f0567d931d10bf3fdeeacdf97bc26ef1cd2a44e0bda" + } + ], + "licenses": [ + { + "license": { + "name": "CC0 1.0 Universal (CC0 1.0) Public Domain Dedication" + } + }, + { + "license": { + "name": "CC0 (copyright waived)" + } + } + ], + "purl": "pkg:pypi/email-validator@1.3.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/JoshData/python-email-validator" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/email-validator@1.3.1", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "2.1.0.post1" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "email-validator" + } + ] + }, + { + "author": "Linden Lab ", + "group": "", + "name": "eventlet", + "version": "0.33.3", + "description": "Highly concurrent networking library", + "hashes": [ + { + "alg": "SHA-256", + "content": "e43b9ae05ba4bb477a10307699c9aff7ff86121b2640f9184d29059f5a687df8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/eventlet@0.33.3", + "externalReferences": [ + { + "type": "website", + "url": "http://eventlet.net" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/eventlet@0.33.3" + }, + { + "author": "Alex Grönholm ", + "group": "", + "name": "exceptiongroup", + "version": "1.2.0", + "description": "Backport of PEP 654 (exception groups)", + "hashes": [ + { + "alg": "SHA-256", + "content": "4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/exceptiongroup@1.2.0", + "type": "library", + "bom-ref": "pkg:pypi/exceptiongroup@1.2.0" + }, + { + "group": "", + "name": "filelock", + "version": "3.13.1", + "description": "A platform independent file lock.", + "hashes": [ + { + "alg": "SHA-256", + "content": "57dbda9b35157b05fb3e58ee91448612eb674172fab98ee235ccb0b5bee19a1c" + } + ], + "licenses": [ + { + "license": { + "name": "The Unlicense (Unlicense)" + } + } + ], + "purl": "pkg:pypi/filelock@3.13.1", + "type": "library", + "bom-ref": "pkg:pypi/filelock@3.13.1" + }, + { + "author": "Mher Movsisyan ", + "group": "", + "name": "flower", + "version": "2.0.1", + "description": "Celery Flower", + "hashes": [ + { + "alg": "SHA-256", + "content": "9db2c621eeefbc844c8dd88be64aef61e84e2deb29b271e02ab2b5b9f01068e2" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/flower@2.0.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/mher/flower" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/flower@2.0.1" + }, + { + "group": "", + "name": "frozenlist", + "version": "1.4.1", + "description": "A list-like structure which implements collections.abc.MutableSequence", + "hashes": [ + { + "alg": "SHA-256", + "content": "f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/frozenlist@1.4.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/aio-libs/frozenlist" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/frozenlist@1.4.1" + }, + { + "group": "", + "name": "fsspec", + "version": "2023.12.2", + "description": "File-system specification", + "hashes": [ + { + "alg": "SHA-256", + "content": "d800d87f72189a745fa3d6b033b9dc4a34ad069f60ca60b943a63599f5501960" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/fsspec@2023.12.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/fsspec/filesystem_spec" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/fsspec@2023.12.2" + }, + { + "author": "Denis Bilenko ", + "group": "", + "name": "gevent", + "version": "23.9.1", + "description": "Coroutine-based network library", + "hashes": [ + { + "alg": "SHA-256", + "content": "a3c5e9b1f766a7a64833334a18539a362fb563f6c4682f9634dea72cbe24f771" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/gevent@23.9.1", + "externalReferences": [ + { + "type": "website", + "url": "http://www.gevent.org/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/gevent@23.9.1" + }, + { + "author": "Google Cloud Platform ", + "group": "", + "name": "google-auth", + "version": "2.25.2", + "description": "Google Authentication Library", + "hashes": [ + { + "alg": "SHA-256", + "content": "473a8dfd0135f75bb79d878436e568f2695dce456764bf3a02b6f8c540b1d256" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/google-auth@2.25.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/googleapis/google-auth-library-python" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/google-auth@2.25.2" + }, + { + "author": "The RE2 Authors ", + "group": "", + "name": "google-re2", + "version": "1.1", + "description": "RE2 Python bindings", + "hashes": [ + { + "alg": "SHA-256", + "content": "874d2e36dfa506b03d4f9c4aef1701a65304f4004c96c7edac7d8aea08fe193e" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/google-re2@1.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/google/re2" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/google-re2@1.1" + }, + { + "author": "Google LLC ", + "group": "", + "name": "googleapis-common-protos", + "version": "1.62.0", + "description": "Common protobufs used in Google APIs", + "hashes": [ + { + "alg": "SHA-256", + "content": "4750113612205514f9f6aa4cb00d523a94f3e8c06c5ad2fee466387dc4875f07" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/googleapis-common-protos@1.62.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/googleapis/python-api-common-protos" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/googleapis-common-protos@1.62.0" + }, + { + "author": "Sebastian Bank ", + "group": "", + "name": "graphviz", + "version": "0.20.1", + "description": "Simple Python interface for Graphviz", + "hashes": [ + { + "alg": "SHA-256", + "content": "587c58a223b51611c0cf461132da386edd896a029524ca61a1462b880bf97977" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/graphviz@0.20.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/xflr6/graphviz" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/graphviz@0.20.1" + }, + { + "author": "Alexey Borzenkov ", + "group": "", + "name": "greenlet", + "version": "3.0.2", + "description": "Lightweight in-process concurrent programming", + "hashes": [ + { + "alg": "SHA-256", + "content": "9acd8fd67c248b8537953cb3af8787c18a87c33d4dcf6830e410ee1f95a63fd4" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/greenlet@3.0.2", + "externalReferences": [ + { + "type": "website", + "url": "https://greenlet.readthedocs.io/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/greenlet@3.0.2" + }, + { + "author": "The gRPC Authors ", + "group": "", + "name": "grpcio-status", + "version": "1.60.0", + "description": "Status proto mapping for gRPC", + "hashes": [ + { + "alg": "SHA-256", + "content": "7d383fa36e59c1e61d380d91350badd4d12ac56e4de2c2b831b050362c3c572e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/grpcio-status@1.60.0", + "externalReferences": [ + { + "type": "website", + "url": "https://grpc.io" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/grpcio-status@1.60.0" + }, + { + "author": "The gRPC Authors ", + "group": "", + "name": "grpcio", + "version": "1.60.0", + "description": "HTTP/2-based RPC framework", + "hashes": [ + { + "alg": "SHA-256", + "content": "d020cfa595d1f8f5c6b343530cd3ca16ae5aefdd1e832b777f9f0eb105f5b139" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/grpcio@1.60.0", + "externalReferences": [ + { + "type": "website", + "url": "https://grpc.io" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/grpcio@1.60.0" + }, + { + "author": "The Python GSSAPI Team ", + "group": "", + "name": "gssapi", + "version": "1.8.3", + "description": "Python GSSAPI Wrapper", + "hashes": [ + { + "alg": "SHA-256", + "content": "4e4a83e9b275fe69b5d40be6d5479889866b80333a12c51a9243f2712d4f0554" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "url": "https://opensource.org/licenses/ISC" + } + }, + { + "license": { + "name": "LICENSE.txt" + } + } + ], + "purl": "pkg:pypi/gssapi@1.8.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pythongssapi/python-gssapi" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/gssapi@1.8.3" + }, + { + "author": "Benoit Chesneau ", + "group": "", + "name": "gunicorn", + "version": "21.2.0", + "description": "WSGI HTTP Server for UNIX", + "hashes": [ + { + "alg": "SHA-256", + "content": "3213aa5e8c24949e792bcacfc176fef362e7aac80b76c56f6b5122bf350722f0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/gunicorn@21.2.0", + "externalReferences": [ + { + "type": "website", + "url": "https://gunicorn.org" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/gunicorn@21.2.0" + }, + { + "author": "Nathaniel J. Smith ", + "group": "", + "name": "h11", + "version": "0.14.0", + "description": "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1", + "hashes": [ + { + "alg": "SHA-256", + "content": "e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/h11@0.14.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/python-hyper/h11" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/h11@0.14.0" + }, + { + "author": "Tom Christie ", + "group": "", + "name": "httpcore", + "version": "1.0.2", + "description": "A minimal low-level HTTP client.", + "hashes": [ + { + "alg": "SHA-256", + "content": "096cc05bca73b8e459a1fc3dcf585148f63e534eae4339559c9b8a8d6399acc7" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/httpcore@1.0.2", + "type": "library", + "bom-ref": "pkg:pypi/httpcore@1.0.2" + }, + { + "author": "Tom Christie ", + "group": "", + "name": "httpx", + "version": "0.25.2", + "description": "The next generation HTTP client.", + "hashes": [ + { + "alg": "SHA-256", + "content": "a05d3d052d9b2dfce0e3896636467f8a5342fb2b902c819428e1ac65413ca118" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/httpx@0.25.2", + "type": "library", + "bom-ref": "pkg:pypi/httpx@0.25.2" + }, + { + "author": "Jason Moiron ", + "group": "", + "name": "humanize", + "version": "4.9.0", + "description": "Python humanize utilities", + "hashes": [ + { + "alg": "SHA-256", + "content": "ce284a76d5b1377fd8836733b983bfb0b76f1aa1c090de2566fcf008d7f6ab16" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/humanize@4.9.0", + "type": "library", + "bom-ref": "pkg:pypi/humanize@4.9.0" + }, + { + "author": "Kim Davies ", + "group": "", + "name": "idna", + "version": "3.6", + "description": "Internationalized Domain Names in Applications (IDNA)", + "hashes": [ + { + "alg": "SHA-256", + "content": "c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/idna@3.6", + "type": "library", + "bom-ref": "pkg:pypi/idna@3.6" + }, + { + "author": "Jason R. Coombs ", + "group": "", + "name": "importlib-metadata", + "version": "6.11.0", + "description": "Read metadata from Python packages", + "hashes": [ + { + "alg": "SHA-256", + "content": "f0afba6205ad8f8947c7d338b5342d5db2afbfd82f9cbef7879a9539cc12eb9b" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/importlib-metadata@6.11.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/python/importlib_metadata" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/importlib-metadata@6.11.0", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "7.0.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "importlib-metadata" + } + ] + }, + { + "author": "Barry Warsaw ", + "group": "", + "name": "importlib-resources", + "version": "6.1.1", + "description": "Read resources from Python packages", + "hashes": [ + { + "alg": "SHA-256", + "content": "e8bf90d8213b486f428c9c39714b920041cb02c184686a3dee24905aaa8105d6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/importlib-resources@6.1.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/python/importlib_resources" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/importlib-resources@6.1.1" + }, + { + "author": "Janne Vanhala ", + "group": "", + "name": "inflection", + "version": "0.5.1", + "description": "A port of Ruby on Rails inflector to Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/inflection@0.5.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/jpvanhal/inflection" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/inflection@0.5.1" + }, + { + "author": "Gerhard Weis ", + "group": "", + "name": "isodate", + "version": "0.6.1", + "description": "An ISO 8601 date/time/duration parser and formatter", + "hashes": [ + { + "alg": "SHA-256", + "content": "0751eece944162659049d35f4f549ed815792b38793f07cf73381c1c87cbed96" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/isodate@0.6.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/gweis/isodate/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/isodate@0.6.1" + }, + { + "author": "Armin Ronacher ", + "group": "", + "name": "itsdangerous", + "version": "2.1.2", + "description": "Safely pass data to untrusted environments and back.", + "hashes": [ + { + "alg": "SHA-256", + "content": "2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/itsdangerous@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://palletsprojects.com/p/itsdangerous/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/itsdangerous@2.1.2" + }, + { + "author": "James Saryerwinnie ", + "group": "", + "name": "jmespath", + "version": "1.0.1", + "description": "JSON Matching Expressions", + "hashes": [ + { + "alg": "SHA-256", + "content": "02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/jmespath@1.0.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/jmespath/jmespath.py" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/jmespath@1.0.1" + }, + { + "author": "Julian Berman ", + "group": "", + "name": "jsonschema-specifications", + "version": "2023.11.2", + "description": "The JSON Schema meta-schemas and vocabularies, exposed as a Registry", + "hashes": [ + { + "alg": "SHA-256", + "content": "e74ba7c0a65e8cb49dc26837d6cfe576557084a8b423ed16a420984228104f93" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/jsonschema-specifications@2023.11.2", + "type": "library", + "bom-ref": "pkg:pypi/jsonschema-specifications@2023.11.2" + }, + { + "author": "Julian Berman ", + "group": "", + "name": "jsonschema", + "version": "4.20.0", + "description": "An implementation of JSON Schema validation for Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "ed6231f0429ecf966f5bc8dfef245998220549cbbcf140f913b7464c52c3b6b3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/jsonschema@4.20.0", + "type": "library", + "bom-ref": "pkg:pypi/jsonschema@4.20.0" + }, + { + "author": "Ask Solem ", + "group": "", + "name": "kombu", + "version": "5.3.4", + "description": "Messaging library for Python.", + "hashes": [ + { + "alg": "SHA-256", + "content": "63bb093fc9bb80cfb3a0972336a5cec1fa7ac5f9ef7e8237c6bf8dda9469313e" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/kombu@5.3.4", + "externalReferences": [ + { + "type": "website", + "url": "https://kombu.readthedocs.io" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/kombu@5.3.4" + }, + { + "author": "Jordan Borean ", + "group": "", + "name": "krb5", + "version": "0.5.1", + "description": "Kerberos API bindings for Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "e51c700cf148e63fef60bc4b2c453018218a3170dedbfe2840f122aee5a453e7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/krb5@0.5.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/jborean93/pykrb5" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/krb5@0.5.1" + }, + { + "author": "Kubernetes", + "group": "", + "name": "kubernetes-asyncio", + "version": "24.2.3", + "description": "Kubernetes asynchronous python client", + "hashes": [ + { + "alg": "SHA-256", + "content": "48f3bd583eeb16fbeb0767b0e190039013c1a4a7f4af5178ca3a6a904a7b6aba" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/kubernetes-asyncio@24.2.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/tomplus/kubernetes_asyncio" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/kubernetes-asyncio@24.2.3", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "28.2.1" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "kubernetes-asyncio" + } + ] + }, + { + "author": "Kubernetes", + "group": "", + "name": "kubernetes", + "version": "23.6.0", + "description": "Kubernetes python client", + "hashes": [ + { + "alg": "SHA-256", + "content": "dd58e286a53071bc8e32041f07f3c2236b3ed8ca5b9f57794a5077358f7ccb06" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/kubernetes@23.6.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/kubernetes-client/python" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/kubernetes@23.6.0", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "28.1.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "kubernetes" + } + ] + }, + { + "author": "Ionel Cristian Mărieș ", + "group": "", + "name": "lazy-object-proxy", + "version": "1.10.0", + "description": "A fast and thorough lazy object proxy.", + "hashes": [ + { + "alg": "SHA-256", + "content": "855e068b0358ab916454464a884779c7ffa312b8925c6f7401e952dcf3b89977" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-2-Clause", + "url": "https://opensource.org/licenses/BSD-2-Clause" + } + } + ], + "purl": "pkg:pypi/lazy-object-proxy@1.10.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/ionelmc/python-lazy-object-proxy" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/lazy-object-proxy@1.10.0" + }, + { + "author": "Giovanni Cannata ", + "group": "", + "name": "ldap3", + "version": "2.9.1", + "description": "A strictly RFC 4510 conforming LDAP V3 pure Python client library", + "hashes": [ + { + "alg": "SHA-256", + "content": "5ab7febc00689181375de40c396dcad4f2659cd260fc5e94c508b6d77c17e9d5" + } + ], + "licenses": [ + { + "license": { + "name": "GNU Lesser General Public License v3 (LGPLv3)" + } + }, + { + "license": { + "name": "LGPL v3" + } + } + ], + "purl": "pkg:pypi/ldap3@2.9.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/cannatag/ldap3" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/ldap3@2.9.1" + }, + { + "author": "Ali-Akber Saifee ", + "group": "", + "name": "limits", + "version": "3.7.0", + "description": "Rate limiting utilities", + "hashes": [ + { + "alg": "SHA-256", + "content": "c528817b7fc15f3e86ad091ba3e40231f6430a91b753db864767684cda8a7f2e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/limits@3.7.0", + "externalReferences": [ + { + "type": "website", + "url": "https://limits.readthedocs.org" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/limits@3.7.0" + }, + { + "author": "tsutsu3", + "group": "", + "name": "linkify-it-py", + "version": "2.0.2", + "description": "Links recognition library with FULL unicode support.", + "hashes": [ + { + "alg": "SHA-256", + "content": "a3a24428f6c96f27370d7fe61d2ac0be09017be5190d68d8658233171f1b6541" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/linkify-it-py@2.0.2", + "type": "library", + "bom-ref": "pkg:pypi/linkify-it-py@2.0.2" + }, + { + "author": "OpenStack ", + "group": "", + "name": "lockfile", + "version": "0.12.2", + "description": "Platform-independent file locking module", + "hashes": [ + { + "alg": "SHA-256", + "content": "6c3cb24f344923d30b2785d5ad75182c8ea7ac1b6171b08657258ec7429d50fa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/lockfile@0.12.2", + "externalReferences": [ + { + "type": "website", + "url": "http://launchpad.net/pylockfile" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/lockfile@0.12.2" + }, + { + "author": "lxml dev team ", + "group": "", + "name": "lxml", + "version": "4.9.3", + "description": "Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API.", + "hashes": [ + { + "alg": "SHA-256", + "content": "b0a545b46b526d418eb91754565ba5b63b1c0b12f9bd2f808c852d9b4b2f9b5c" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/lxml@4.9.3", + "externalReferences": [ + { + "type": "website", + "url": "https://lxml.de/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/lxml@4.9.3" + }, + { + "author": "Chris Sewell ", + "group": "", + "name": "markdown-it-py", + "version": "3.0.0", + "description": "Python port of markdown-it. Markdown parsing, done right!", + "hashes": [ + { + "alg": "SHA-256", + "content": "355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/markdown-it-py@3.0.0", + "type": "library", + "bom-ref": "pkg:pypi/markdown-it-py@3.0.0" + }, + { + "author": "Maxim Kulkin ", + "group": "", + "name": "marshmallow-oneofschema", + "version": "3.0.1", + "description": "marshmallow multiplexing schema", + "hashes": [ + { + "alg": "SHA-256", + "content": "bd29410a9f2f7457a2b428286e2a80ef76b8ddc3701527dc1f935a88914b02f2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/marshmallow-oneofschema@3.0.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/marshmallow-code/marshmallow-oneofschema" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/marshmallow-oneofschema@3.0.1" + }, + { + "author": "Steven Loria ", + "group": "", + "name": "marshmallow-sqlalchemy", + "version": "0.26.1", + "description": "SQLAlchemy integration with the marshmallow (de)serialization library", + "hashes": [ + { + "alg": "SHA-256", + "content": "ba7493eeb8669a3bf00d8f906b657feaa87a740ae9e4ecf829cfd6ddf763d276" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/marshmallow-sqlalchemy@0.26.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/marshmallow-code/marshmallow-sqlalchemy" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/marshmallow-sqlalchemy@0.26.1", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "0.29.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "marshmallow-sqlalchemy" + } + ] + }, + { + "author": "Steven Loria ", + "group": "", + "name": "marshmallow", + "version": "3.20.1", + "description": "A lightweight library for converting complex datatypes to and from native Python datatypes.", + "hashes": [ + { + "alg": "SHA-256", + "content": "684939db93e80ad3561392f47be0230743131560a41c5110684c16e21ade0a5c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/marshmallow@3.20.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/marshmallow-code/marshmallow" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/marshmallow@3.20.1" + }, + { + "author": "Chris Sewell ", + "group": "", + "name": "mdit-py-plugins", + "version": "0.4.0", + "description": "Collection of plugins for markdown-it-py", + "hashes": [ + { + "alg": "SHA-256", + "content": "b51b3bb70691f57f974e257e367107857a93b36f322a9e6d44ca5bf28ec2def9" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/mdit-py-plugins@0.4.0", + "type": "library", + "bom-ref": "pkg:pypi/mdit-py-plugins@0.4.0" + }, + { + "author": "Taneli Hukkinen ", + "group": "", + "name": "mdurl", + "version": "0.1.2", + "description": "Markdown URL utilities", + "hashes": [ + { + "alg": "SHA-256", + "content": "84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/mdurl@0.1.2", + "type": "library", + "bom-ref": "pkg:pypi/mdurl@0.1.2" + }, + { + "author": "Andrew Svetlov ", + "group": "", + "name": "multidict", + "version": "6.0.4", + "description": "multidict implementation", + "hashes": [ + { + "alg": "SHA-256", + "content": "0b1a97283e0c85772d613878028fec909f003993e1007eafa715b24b377cb9b8" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/multidict@6.0.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/aio-libs/multidict" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/multidict@6.0.4" + }, + { + "author": "Travis E. Oliphant et al.", + "group": "", + "name": "numpy", + "version": "1.26.2", + "description": "Fundamental package for array computing in Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "3703fc9258a4a122d17043e57b35e5ef1c5a5837c3db8be396c82e04c1cf9b0f" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/numpy@1.26.2", + "externalReferences": [ + { + "type": "website", + "url": "https://numpy.org" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/numpy@1.26.2" + }, + { + "author": "The OAuthlib Community ", + "group": "", + "name": "oauthlib", + "version": "3.2.2", + "description": "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic", + "hashes": [ + { + "alg": "SHA-256", + "content": "8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca" + } + ], + "licenses": [ + { + "license": { + "name": "OSI Approved" + } + }, + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/oauthlib@3.2.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/oauthlib/oauthlib" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/oauthlib@3.2.2" + }, + { + "author": "OpenTelemetry Authors ", + "group": "", + "name": "opentelemetry-api", + "version": "1.22.0", + "description": "OpenTelemetry Python API", + "hashes": [ + { + "alg": "SHA-256", + "content": "43621514301a7e9f5d06dd8013a1b450f30c2e9372b8e30aaeb4562abf2ce034" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/opentelemetry-api@1.22.0", + "type": "library", + "bom-ref": "pkg:pypi/opentelemetry-api@1.22.0" + }, + { + "author": "OpenTelemetry Authors ", + "group": "", + "name": "opentelemetry-exporter-otlp-proto-common", + "version": "1.22.0", + "description": "OpenTelemetry Protobuf encoding", + "hashes": [ + { + "alg": "SHA-256", + "content": "3f2538bec5312587f8676c332b3747f54c89fe6364803a807e217af4603201fa" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/opentelemetry-exporter-otlp-proto-common@1.22.0", + "type": "library", + "bom-ref": "pkg:pypi/opentelemetry-exporter-otlp-proto-common@1.22.0" + }, + { + "author": "OpenTelemetry Authors ", + "group": "", + "name": "opentelemetry-exporter-otlp-proto-grpc", + "version": "1.22.0", + "description": "OpenTelemetry Collector Protobuf over gRPC Exporter", + "hashes": [ + { + "alg": "SHA-256", + "content": "b5bcadc129272004316a455e9081216d3380c1fc2231a928ea6a70aa90e173fb" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/opentelemetry-exporter-otlp-proto-grpc@1.22.0", + "type": "library", + "bom-ref": "pkg:pypi/opentelemetry-exporter-otlp-proto-grpc@1.22.0" + }, + { + "author": "OpenTelemetry Authors ", + "group": "", + "name": "opentelemetry-exporter-otlp-proto-http", + "version": "1.22.0", + "description": "OpenTelemetry Collector Protobuf over HTTP Exporter", + "hashes": [ + { + "alg": "SHA-256", + "content": "e002e842190af45b91dc55a97789d0b98e4308c88d886b16049ee90e17a4d396" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/opentelemetry-exporter-otlp-proto-http@1.22.0", + "type": "library", + "bom-ref": "pkg:pypi/opentelemetry-exporter-otlp-proto-http@1.22.0" + }, + { + "author": "OpenTelemetry Authors ", + "group": "", + "name": "opentelemetry-exporter-otlp", + "version": "1.22.0", + "description": "OpenTelemetry Collector Exporters", + "hashes": [ + { + "alg": "SHA-256", + "content": "cb03a1cbf300e12b47690858be13dd26fe2f60b2610204959f3497cd6645e3a1" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/opentelemetry-exporter-otlp@1.22.0", + "type": "library", + "bom-ref": "pkg:pypi/opentelemetry-exporter-otlp@1.22.0" + }, + { + "author": "OpenTelemetry Authors ", + "group": "", + "name": "opentelemetry-exporter-prometheus", + "version": "0.43b0", + "description": "Prometheus Metric Exporter for OpenTelemetry", + "hashes": [ + { + "alg": "SHA-256", + "content": "f016a93e33cdda5565fed6595affb016fd460b0fad967dc38c9925cdb19e5bbd" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/opentelemetry-exporter-prometheus@0.43b0", + "type": "library", + "bom-ref": "pkg:pypi/opentelemetry-exporter-prometheus@0.43b0" + }, + { + "author": "OpenTelemetry Authors ", + "group": "", + "name": "opentelemetry-proto", + "version": "1.22.0", + "description": "OpenTelemetry Python Proto", + "hashes": [ + { + "alg": "SHA-256", + "content": "ce7188d22c75b6d0fe53e7fb58501613d0feade5139538e79dedd9420610fa0c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/opentelemetry-proto@1.22.0", + "type": "library", + "bom-ref": "pkg:pypi/opentelemetry-proto@1.22.0" + }, + { + "author": "OpenTelemetry Authors ", + "group": "", + "name": "opentelemetry-sdk", + "version": "1.22.0", + "description": "OpenTelemetry Python SDK", + "hashes": [ + { + "alg": "SHA-256", + "content": "a730555713d7c8931657612a88a141e3a4fe6eb5523d9e2d5a8b1e673d76efa6" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/opentelemetry-sdk@1.22.0", + "type": "framework", + "bom-ref": "pkg:pypi/opentelemetry-sdk@1.22.0" + }, + { + "author": "OpenTelemetry Authors ", + "group": "", + "name": "opentelemetry-semantic-conventions", + "version": "0.43b0", + "description": "OpenTelemetry Semantic Conventions", + "hashes": [ + { + "alg": "SHA-256", + "content": "291284d7c1bf15fdaddf309b3bd6d3b7ce12a253cec6d27144439819a15d8445" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/opentelemetry-semantic-conventions@0.43b0", + "type": "library", + "bom-ref": "pkg:pypi/opentelemetry-semantic-conventions@0.43b0" + }, + { + "author": "Elia Robyn Lake ", + "group": "", + "name": "ordered-set", + "version": "4.1.0", + "description": "An OrderedSet is a custom MutableSet that remembers its order, so that every", + "hashes": [ + { + "alg": "SHA-256", + "content": "046e1132c71fcf3330438a539928932caf51ddbc582496833e23de611de14562" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/ordered-set@4.1.0", + "type": "library", + "bom-ref": "pkg:pypi/ordered-set@4.1.0" + }, + { + "author": "Donald Stufft ", + "group": "", + "name": "packaging", + "version": "23.2", + "description": "Core utilities for Python packages", + "hashes": [ + { + "alg": "SHA-256", + "content": "8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + }, + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/packaging@23.2", + "type": "library", + "bom-ref": "pkg:pypi/packaging@23.2" + }, + { + "author": "The Pandas Development Team ", + "group": "", + "name": "pandas", + "version": "2.1.4", + "description": "Powerful data structures for data analysis, time series, and statistics", + "hashes": [ + { + "alg": "SHA-256", + "content": "bdec823dc6ec53f7a6339a0e34c68b144a7a1fd28d80c260534c39c62c5bf8c9" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/pandas@2.1.4", + "externalReferences": [ + { + "type": "website", + "url": "https://pandas.pydata.org" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/pandas@2.1.4" + }, + { + "author": "\"Caleb P. Burns\" ", + "group": "", + "name": "pathspec", + "version": "0.12.1", + "description": "Utility library for gitignore style pattern matching of file paths.", + "hashes": [ + { + "alg": "SHA-256", + "content": "a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08" + } + ], + "licenses": [ + { + "license": { + "id": "MPL-2.0", + "url": "https://opensource.org/licenses/MPL-2.0" + } + } + ], + "purl": "pkg:pypi/pathspec@0.12.1", + "type": "library", + "bom-ref": "pkg:pypi/pathspec@0.12.1" + }, + { + "author": "Sébastien Eustace ", + "group": "", + "name": "pendulum", + "version": "2.1.2", + "description": "Python datetimes made easy", + "hashes": [ + { + "alg": "SHA-256", + "content": "b6c352f4bd32dff1ea7066bd31ad0f71f8d8100b9ff709fb343f3b86cee43efe" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pendulum@2.1.2", + "externalReferences": [ + { + "type": "website", + "url": "https://pendulum.eustace.io" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pendulum@2.1.2", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "3.0.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "pendulum" + } + ] + }, + { + "group": "", + "name": "platformdirs", + "version": "4.1.0", + "description": "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\".", + "hashes": [ + { + "alg": "SHA-256", + "content": "11c8f37bcca40db96d8144522d925583bdb7a31f7b0e37e3ed4318400a8e2380" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/platformdirs@4.1.0", + "type": "library", + "bom-ref": "pkg:pypi/platformdirs@4.1.0" + }, + { + "author": "Holger Krekel ", + "group": "", + "name": "pluggy", + "version": "1.3.0", + "description": "plugin and hook calling mechanisms for python", + "hashes": [ + { + "alg": "SHA-256", + "content": "d89c696a773f8bd377d18e5ecda92b7a3793cbe66c87060a6fb58c7b6e1061f7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pluggy@1.3.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pytest-dev/pluggy" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pluggy@1.3.0" + }, + { + "author": "Wouter Bolsterlee ", + "group": "", + "name": "plyvel", + "version": "1.5.0", + "description": "Plyvel, a fast and feature-rich Python interface to LevelDB", + "hashes": [ + { + "alg": "SHA-256", + "content": "92d949ec657f58e966ee5cc58ea51c436b61e43b86247656f1b6d4a987782a35" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/plyvel@1.5.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/wbolster/plyvel" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/plyvel@1.5.0" + }, + { + "author": "Beto Dealmeida ", + "group": "", + "name": "prison", + "version": "0.2.1", + "description": "Rison encoder/decoder", + "hashes": [ + { + "alg": "SHA-256", + "content": "f90bab63fca497aa0819a852f64fb21a4e181ed9f6114deaa5dc04001a7555c5" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/prison@0.2.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/betodealmeida/python-rison" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/prison@0.2.1" + }, + { + "author": "Brian Brazil ", + "group": "", + "name": "prometheus-client", + "version": "0.19.0", + "description": "Python client for the Prometheus monitoring system.", + "hashes": [ + { + "alg": "SHA-256", + "content": "c88b1e6ecf6b41cd8fb5731c7ae919bf66df6ec6fafa555cd6c0e16ca169ae92" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + }, + { + "license": { + "name": "Apache Software License 2.0" + } + } + ], + "purl": "pkg:pypi/prometheus-client@0.19.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/prometheus/client_python" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/prometheus-client@0.19.0" + }, + { + "author": "Jonathan Slenders", + "group": "", + "name": "prompt-toolkit", + "version": "3.0.43", + "description": "Library for building powerful interactive command lines in Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "a11a29cb3bf0a28a387fe5122cdb649816a957cd9261dcedf8c9f1fef33eacf6" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/prompt-toolkit@3.0.43", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/prompt-toolkit/python-prompt-toolkit" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/prompt-toolkit@3.0.43" + }, + { + "author": "protobuf@googlegroups.com ", + "group": "", + "name": "protobuf", + "version": "4.25.1", + "hashes": [ + { + "alg": "SHA-256", + "content": "193f50a6ab78a970c9b4f148e7c750cfde64f59815e86f686c22e26b4fe01ce7" + } + ], + "licenses": [ + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/protobuf@4.25.1", + "externalReferences": [ + { + "type": "website", + "url": "https://developers.google.com/protocol-buffers/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/protobuf@4.25.1" + }, + { + "author": "Giampaolo Rodola ", + "group": "", + "name": "psutil", + "version": "5.9.6", + "description": "Cross-platform lib for process and system monitoring in Python.", + "hashes": [ + { + "alg": "SHA-256", + "content": "fb8a697f11b0f5994550555fcfe3e69799e5b060c8ecf9e2f75c69302cc35c0d" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/psutil@5.9.6", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/giampaolo/psutil" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/psutil@5.9.6", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "5.9.7" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "psutil" + } + ] + }, + { + "author": "Alex Shafer ", + "group": "", + "name": "pure-sasl", + "version": "0.6.2", + "description": "Pure Python client SASL implementation", + "hashes": [ + { + "alg": "SHA-256", + "content": "edb33b1a46eb3c602c0166de0442c0fb41f5ac2bfccbde4775183b105ad89ab2" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pure-sasl@0.6.2", + "externalReferences": [ + { + "type": "vcs", + "url": "http://github.com/thobbs/pure-sasl" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pure-sasl@0.6.2" + }, + { + "author": "Antoine Pitrou ", + "group": "", + "name": "pyarrow-hotfix", + "version": "0.6", + "hashes": [ + { + "alg": "SHA-256", + "content": "dcc9ae2d220dff0083be6a9aa8e0cdee5182ad358d4931fce825c545e5c89178" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/pyarrow-hotfix@0.6", + "type": "library", + "bom-ref": "pkg:pypi/pyarrow-hotfix@0.6" + }, + { + "group": "", + "name": "pyarrow", + "version": "14.0.1", + "description": "Python library for Apache Arrow", + "hashes": [ + { + "alg": "SHA-256", + "content": "96d64e5ba7dceb519a955e5eeb5c9adcfd63f73a56aea4722e2cc81364fc567a" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/pyarrow@14.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://arrow.apache.org/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pyarrow@14.0.1", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "14.0.2" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "pyarrow" + } + ] + }, + { + "author": "Ilya Etingof ", + "group": "", + "name": "pyasn1-modules", + "version": "0.3.0", + "description": "A collection of ASN.1-based protocols modules", + "hashes": [ + { + "alg": "SHA-256", + "content": "d3ccd6ed470d9ffbc716be08bd90efbd44d0734bc9303818f7336070984a162d" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/pyasn1-modules@0.3.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pyasn1/pyasn1-modules" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pyasn1-modules@0.3.0" + }, + { + "author": "Ilya Etingof ", + "group": "", + "name": "pyasn1", + "version": "0.5.1", + "description": "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)", + "hashes": [ + { + "alg": "SHA-256", + "content": "4439847c58d40b1d0a573d07e3856e95333f1976294494c325775aeca506eb58" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-2-Clause", + "url": "https://opensource.org/licenses/BSD-2-Clause" + } + } + ], + "purl": "pkg:pypi/pyasn1@0.5.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pyasn1/pyasn1" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pyasn1@0.5.1" + }, + { + "author": "Eli Bendersky ", + "group": "", + "name": "pycparser", + "version": "2.21", + "description": "C parser in Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/pycparser@2.21", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/eliben/pycparser" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pycparser@2.21" + }, + { + "author": "Samuel Colvin , Eric Jolibois , Hasan Ramezani , Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com>, Terrence Dorsey , David Montague , Serge Matveenko , Marcelo Trylesinski , Sydney Runkle , David Hewitt ", + "group": "", + "name": "pydantic", + "version": "2.5.2", + "description": "Data validation using Python type hints", + "hashes": [ + { + "alg": "SHA-256", + "content": "80c50fb8e3dcecfddae1adbcc00ec5822918490c99ab31f6cf6140ca1c1429f0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pydantic@2.5.2", + "type": "library", + "bom-ref": "pkg:pypi/pydantic@2.5.2" + }, + { + "author": "Samuel Colvin ", + "group": "", + "name": "pydantic_core", + "version": "2.14.5", + "hashes": [ + { + "alg": "SHA-256", + "content": "7e88f5696153dc516ba6e79f82cc4747e87027205f0e02390c21f7cb3bd8abfd" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pydantic-core@2.14.5", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/pydantic/pydantic-core" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pydantic-core@2.14.5" + }, + { + "group": "", + "name": "pykerberos", + "version": "1.2.4", + "description": "High-level interface to Kerberos", + "hashes": [ + { + "alg": "SHA-256", + "content": "9d701ebd8fc596c99d3155d5ba45813bd5908d26ef83ba0add250edb622abed4" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + }, + { + "license": { + "name": "ASL 2.0" + } + } + ], + "purl": "pkg:pypi/pykerberos@1.2.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/02strich/pykerberos" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pykerberos@1.2.4" + }, + { + "author": "Jordan Borean ", + "group": "", + "name": "pyspnego", + "version": "0.10.2", + "description": "Windows Negotiate Authentication Client and Server", + "hashes": [ + { + "alg": "SHA-256", + "content": "3d5c5c28dbd0cd6a679acf45219630254db3c0e5ad4a16de521caa0585b088c0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pyspnego@0.10.2", + "type": "library", + "bom-ref": "pkg:pypi/pyspnego@0.10.2" + }, + { + "author": "Ben Finney ", + "group": "", + "name": "python-daemon", + "version": "3.0.1", + "description": "Library to implement a well-behaved Unix daemon process.", + "hashes": [ + { + "alg": "SHA-256", + "content": "42bb848a3260a027fa71ad47ecd959e471327cb34da5965962edd5926229f341" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + }, + { + "license": { + "name": "Apache-2" + } + } + ], + "purl": "pkg:pypi/python-daemon@3.0.1", + "externalReferences": [ + { + "type": "website", + "url": "https://pagure.io/python-daemon/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/python-daemon@3.0.1" + }, + { + "author": "Gustavo Niemeyer ", + "group": "", + "name": "python-dateutil", + "version": "2.8.2", + "description": "Extensions to the standard Python datetime module", + "hashes": [ + { + "alg": "SHA-256", + "content": "961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + }, + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "name": "Dual License" + } + } + ], + "purl": "pkg:pypi/python-dateutil@2.8.2", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/dateutil/dateutil" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/python-dateutil@2.8.2" + }, + { + "author": "python-ldap project ", + "group": "", + "name": "python-ldap", + "version": "3.4.4", + "description": "Python modules for implementing LDAP clients", + "hashes": [ + { + "alg": "SHA-256", + "content": "7edb0accec4e037797705f3a05cbf36a9fde50d08c8f67f2aef99a2628fab828" + } + ], + "licenses": [ + { + "license": { + "id": "PSF-2.0", + "url": "https://opensource.org/licenses/PSF-2.0" + } + }, + { + "license": { + "name": "Python style" + } + } + ], + "purl": "pkg:pypi/python-ldap@3.4.4", + "externalReferences": [ + { + "type": "website", + "url": "https://www.python-ldap.org/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/python-ldap@3.4.4" + }, + { + "author": "Belaid Arezqui ", + "group": "", + "name": "python-nvd3", + "version": "0.15.0", + "description": "Python NVD3 - Chart Library for d3.js", + "hashes": [ + { + "alg": "SHA-256", + "content": "fbd75ff47e0ef255b4aa4f3a8b10dc8b4024aa5a9a7abed5b2406bd3cb817715" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/python-nvd3@0.15.0", + "externalReferences": [ + { + "type": "vcs", + "url": "http://github.com/areski/python-nvd3" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/python-nvd3@0.15.0" + }, + { + "author": "Val Neekman ", + "group": "", + "name": "python-slugify", + "version": "8.0.1", + "description": "A Python slugify application that also handles Unicode", + "hashes": [ + { + "alg": "SHA-256", + "content": "70ca6ea68fe63ecc8fa4fcf00ae651fc8a5d02d93dcd12ae6d4fc7ca46c4d395" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/python-slugify@8.0.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/un33k/python-slugify" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/python-slugify@8.0.1" + }, + { + "group": "", + "name": "python3-saml", + "version": "1.16.0", + "description": "Saml Python Toolkit. Add SAML support to your Python software using this library", + "hashes": [ + { + "alg": "SHA-256", + "content": "c49097863c278ff669a337a96c46dc1f25d16307b4bb2679d2d1733cc4f5176a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/python3-saml@1.16.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/SAML-Toolkits/python3-saml" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/python3-saml@1.16.0" + }, + { + "author": "Stuart Bishop ", + "group": "", + "name": "pytz", + "version": "2023.3.post1", + "description": "World timezone definitions, modern and historical", + "hashes": [ + { + "alg": "SHA-256", + "content": "ce42d816b81b68506614c11e8937d3aa9e41007ceb50bfdcb0749b921bf646c7" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pytz@2023.3.post1", + "externalReferences": [ + { + "type": "website", + "url": "http://pythonhosted.org/pytz" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pytz@2023.3.post1" + }, + { + "author": "Sébastien Eustace ", + "group": "", + "name": "pytzdata", + "version": "2020.1", + "description": "The Olson timezone database for Python.", + "hashes": [ + { + "alg": "SHA-256", + "content": "e1e14750bcf95016381e4d472bad004eef710f2d6417240904070b3d6654485f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/pytzdata@2020.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/sdispater/pytzdata" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/pytzdata@2020.1" + }, + { + "author": "Julian Berman ", + "group": "", + "name": "referencing", + "version": "0.32.0", + "description": "JSON Referencing + Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "bdcd3efb936f82ff86f993093f6da7435c7de69a3b3a5a06678a6050184bee99" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/referencing@0.32.0", + "type": "library", + "bom-ref": "pkg:pypi/referencing@0.32.0" + }, + { + "author": "Ian Cordasco, Cory Benfield, Michael Komitee ", + "group": "", + "name": "requests-kerberos", + "version": "0.14.0", + "description": "A Kerberos authentication handler for python-requests", + "hashes": [ + { + "alg": "SHA-256", + "content": "da74ea478ccd8584de88092bdcd17a7c29d494374a340d1d8677189903c9ac6a" + } + ], + "licenses": [ + { + "license": { + "id": "ISC", + "url": "https://opensource.org/licenses/ISC" + } + }, + { + "license": { + "name": "ISC License" + } + } + ], + "purl": "pkg:pypi/requests-kerberos@0.14.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/requests/requests-kerberos" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/requests-kerberos@0.14.0" + }, + { + "author": "Kenneth Reitz ", + "group": "", + "name": "requests-oauthlib", + "version": "1.3.1", + "description": "OAuthlib authentication support for Requests.", + "hashes": [ + { + "alg": "SHA-256", + "content": "2577c501a2fb8d05a304c09d090d6e47c306fef15809d102b327cf8364bddab5" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "ISC", + "url": "https://opensource.org/licenses/ISC" + } + } + ], + "purl": "pkg:pypi/requests-oauthlib@1.3.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/requests/requests-oauthlib" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/requests-oauthlib@1.3.1" + }, + { + "author": "Kenneth Reitz ", + "group": "", + "name": "requests", + "version": "2.31.0", + "description": "Python HTTP for Humans.", + "hashes": [ + { + "alg": "SHA-256", + "content": "58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/requests@2.31.0", + "externalReferences": [ + { + "type": "website", + "url": "https://requests.readthedocs.io" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/requests@2.31.0" + }, + { + "author": "Nicolas Aimetti ", + "group": "", + "name": "rfc3339-validator", + "version": "0.1.4", + "description": "A pure python RFC3339 validator", + "hashes": [ + { + "alg": "SHA-256", + "content": "24f6ec1eda14ef823da9e36ec7113124b39c04d50a4d3d3a3c2859577e7791fa" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/rfc3339-validator@0.1.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/naimetti/rfc3339-validator" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/rfc3339-validator@0.1.4" + }, + { + "author": "Ali Hamdan ", + "group": "", + "name": "rich-argparse", + "version": "1.4.0", + "description": "Rich help formatters for argparse and optparse", + "hashes": [ + { + "alg": "SHA-256", + "content": "68b263d3628d07b1d27cfe6ad896da2f5a5583ee2ba226aeeb24459840023b38" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/rich-argparse@1.4.0", + "type": "library", + "bom-ref": "pkg:pypi/rich-argparse@1.4.0" + }, + { + "author": "Will McGugan ", + "group": "", + "name": "rich", + "version": "13.7.0", + "description": "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal", + "hashes": [ + { + "alg": "SHA-256", + "content": "6da14c108c4866ee9520bbffa71f6fe3962e193b7da68720583850cd4548e235" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/rich@13.7.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/Textualize/rich" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/rich@13.7.0" + }, + { + "author": "Julian Berman ", + "group": "", + "name": "rpds-py", + "version": "0.13.2", + "description": "Python bindings to Rust's persistent data structures (rpds)", + "hashes": [ + { + "alg": "SHA-256", + "content": "1ceebd0ae4f3e9b2b6b553b51971921853ae4eebf3f54086be0565d59291e53d" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/rpds-py@0.13.2", + "type": "library", + "bom-ref": "pkg:pypi/rpds-py@0.13.2", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "0.15.2" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "rpds-py" + } + ] + }, + { + "author": "Sybren A. Stüvel ", + "group": "", + "name": "rsa", + "version": "4.9", + "description": "Pure-Python RSA implementation", + "hashes": [ + { + "alg": "SHA-256", + "content": "90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/rsa@4.9", + "externalReferences": [ + { + "type": "website", + "url": "https://stuvel.eu/rsa" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/rsa@4.9" + }, + { + "group": "", + "name": "s3fs", + "version": "2023.12.2", + "description": "Convenient Filesystem interface over S3", + "hashes": [ + { + "alg": "SHA-256", + "content": "0d5a99039665f30b2dbee5495de3b299a022d51b3195a9440f5df47c2621b777" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/s3fs@2023.12.2", + "externalReferences": [ + { + "type": "vcs", + "url": "http://github.com/fsspec/s3fs/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/s3fs@2023.12.2" + }, + { + "author": "Sentry Team and Contributors ", + "group": "", + "name": "sentry-sdk", + "version": "1.39.1", + "description": "Python client for Sentry (https://sentry.io)", + "hashes": [ + { + "alg": "SHA-256", + "content": "81b5b9ffdd1a374e9eb0c053b5d2012155db9cbe76393a8585677b753bd5fdc1" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/sentry-sdk@1.39.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/getsentry/sentry-python" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/sentry-sdk@1.39.1" + }, + { + "author": "Daniele Varrazzo ", + "group": "", + "name": "setproctitle", + "version": "1.3.3", + "description": "A Python module to customize the process title", + "hashes": [ + { + "alg": "SHA-256", + "content": "897a73208da48db41e687225f355ce993167079eda1260ba5e13c4e53be7f754" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + }, + { + "license": { + "id": "BSD-3-Clause", + "url": "https://opensource.org/licenses/BSD-3-Clause" + } + } + ], + "purl": "pkg:pypi/setproctitle@1.3.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/dvarrazzo/py-setproctitle" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/setproctitle@1.3.3" + }, + { + "author": "Benjamin Peterson ", + "group": "", + "name": "six", + "version": "1.16.0", + "description": "Python 2 and 3 compatibility utilities", + "hashes": [ + { + "alg": "SHA-256", + "content": "8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/six@1.16.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/benjaminp/six" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/six@1.16.0" + }, + { + "author": "Nathaniel J. Smith ", + "group": "", + "name": "sniffio", + "version": "1.3.0", + "description": "Sniff out which async library your code is running under", + "hashes": [ + { + "alg": "SHA-256", + "content": "eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + }, + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + }, + { + "license": { + "name": "MIT OR Apache-2.0" + } + } + ], + "purl": "pkg:pypi/sniffio@1.3.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/python-trio/sniffio" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/sniffio@1.3.0" + }, + { + "author": "James Socol ", + "group": "", + "name": "statsd", + "version": "4.0.1", + "description": "A simple statsd client.", + "hashes": [ + { + "alg": "SHA-256", + "content": "c2676519927f7afade3723aca9ca8ea986ef5b059556a980a867721ca69df093" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/statsd@4.0.1", + "type": "library", + "bom-ref": "pkg:pypi/statsd@4.0.1" + }, + { + "author": "Sergey Astanin ", + "group": "", + "name": "tabulate", + "version": "0.9.0", + "description": "Pretty-print tabular data", + "hashes": [ + { + "alg": "SHA-256", + "content": "024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/tabulate@0.9.0", + "type": "library", + "bom-ref": "pkg:pypi/tabulate@0.9.0" + }, + { + "author": "Julien Danjou ", + "group": "", + "name": "tenacity", + "version": "8.2.3", + "description": "Retry code until it succeeds", + "hashes": [ + { + "alg": "SHA-256", + "content": "ce510e327a630c9e1beaf17d42e6ffacc88185044ad85cf74c0a8887c6a0f88c" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/tenacity@8.2.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/jd/tenacity" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/tenacity@8.2.3" + }, + { + "author": "Konstantin Lepa ", + "group": "", + "name": "termcolor", + "version": "2.4.0", + "description": "ANSI color formatting for output in terminal", + "hashes": [ + { + "alg": "SHA-256", + "content": "9297c0df9c99445c2412e832e882a7884038a25617c60cea2ad69488d4040d63" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/termcolor@2.4.0", + "type": "library", + "bom-ref": "pkg:pypi/termcolor@2.4.0" + }, + { + "author": "Mikhail Korobov ", + "group": "", + "name": "text-unidecode", + "version": "1.3", + "description": "The most basic Text::Unidecode port", + "hashes": [ + { + "alg": "SHA-256", + "content": "1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8" + } + ], + "licenses": [ + { + "license": { + "name": "Artistic License" + } + }, + { + "license": { + "name": "GNU General Public License (GPL)" + } + }, + { + "license": { + "name": "GNU General Public License v2 or later (GPLv2+)" + } + } + ], + "purl": "pkg:pypi/text-unidecode@1.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/kmike/text-unidecode/" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/text-unidecode@1.3" + }, + { + "group": "", + "name": "thrift-sasl", + "version": "0.4.3", + "description": "Thrift SASL Python module that implements SASL transports for Thrift (`TSaslClientTransport`).", + "hashes": [ + { + "alg": "SHA-256", + "content": "d24b49140115e6e2a96d08335cff225a27a28ea71866fb1b2bdb30ca5afca64e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/thrift-sasl@0.4.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/cloudera/thrift_sasl" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/thrift-sasl@0.4.3" + }, + { + "author": "Apache Thrift Developers ", + "group": "", + "name": "thrift", + "version": "0.16.0", + "description": "Python bindings for the Apache Thrift RPC system", + "hashes": [ + { + "alg": "SHA-256", + "content": "2b5b6488fcded21f9d312aa23c9ff6a0195d0f6ae26ddbd5ad9e3e25dfc14408" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/thrift@0.16.0", + "externalReferences": [ + { + "type": "website", + "url": "http://thrift.apache.org" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/thrift@0.16.0" + }, + { + "author": "Facebook ", + "group": "", + "name": "tornado", + "version": "6.4", + "description": "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.", + "hashes": [ + { + "alg": "SHA-256", + "content": "02ccefc7d8211e5a7f9e8bc3f9e5b0ad6262ba2fbb683a6443ecc804e5224ce0" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/tornado@6.4", + "externalReferences": [ + { + "type": "website", + "url": "http://www.tornadoweb.org/" + } + ], + "type": "framework", + "bom-ref": "pkg:pypi/tornado@6.4" + }, + { + "author": "\"Guido van Rossum, Jukka Lehtosalo, Łukasz Langa, Michael Lee\" ", + "group": "", + "name": "typing_extensions", + "version": "4.9.0", + "description": "Backported and Experimental Type Hints for Python 3.8+", + "hashes": [ + { + "alg": "SHA-256", + "content": "af72aea155e91adfc61c3ae9e0e342dbc0cba726d6cba4b6c72c1f34e47291cd" + } + ], + "licenses": [ + { + "license": { + "id": "PSF-2.0", + "url": "https://opensource.org/licenses/PSF-2.0" + } + } + ], + "purl": "pkg:pypi/typing-extensions@4.9.0", + "type": "library", + "bom-ref": "pkg:pypi/typing-extensions@4.9.0" + }, + { + "author": "Python Software Foundation ", + "group": "", + "name": "tzdata", + "version": "2023.3", + "description": "Provider of IANA time zone data", + "hashes": [ + { + "alg": "SHA-256", + "content": "7e65763eef3120314099b6939b5546db7adce1e7d6f2e179e3df563c70511eda" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/tzdata@2023.3", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/python/tzdata" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/tzdata@2023.3" + }, + { + "author": "tsutsu3", + "group": "", + "name": "uc-micro-py", + "version": "1.0.2", + "description": "Micro subset of unicode data files for linkify-it-py projects.", + "hashes": [ + { + "alg": "SHA-256", + "content": "8c9110c309db9d9e87302e2f4ad2c3152770930d88ab385cd544e7a7e75f3de0" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/uc-micro-py@1.0.2", + "type": "library", + "bom-ref": "pkg:pypi/uc-micro-py@1.0.2" + }, + { + "author": "Jeremy Dunck ", + "group": "", + "name": "unicodecsv", + "version": "0.14.1", + "description": "Python2's stdlib csv module is nice, but it doesn't support unicode. This module is a drop-in replacement which *does*.", + "hashes": [ + { + "alg": "SHA-256", + "content": "018c08037d48649a0412063ff4eda26eaa81eff1546dbffa51fa5293276ff7fc" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/unicodecsv@0.14.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/jdunck/python-unicodecsv" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/unicodecsv@0.14.1" + }, + { + "group": "", + "name": "universal-pathlib", + "version": "0.1.4", + "description": "pathlib api extended to use fsspec backends", + "hashes": [ + { + "alg": "SHA-256", + "content": "f99186cf950bde1262de9a590bb019613ef84f9fabd9f276e8b019722201943a" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/universal-pathlib@0.1.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/fsspec/universal_pathlib" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/universal-pathlib@0.1.4" + }, + { + "author": "Andrey Petrov ", + "group": "", + "name": "urllib3", + "version": "2.0.7", + "description": "HTTP library with thread-safe connection pooling, file post, and more.", + "hashes": [ + { + "alg": "SHA-256", + "content": "fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/urllib3@2.0.7", + "type": "library", + "bom-ref": "pkg:pypi/urllib3@2.0.7", + "properties": [ + { + "name": "cdx:pypi:latest_version", + "value": "2.1.0" + }, + { + "name": "cdx:pypi:resolved_from", + "value": "urllib3" + } + ] + }, + { + "author": "Ask Solem ", + "group": "", + "name": "vine", + "version": "5.1.0", + "description": "Python promises.", + "hashes": [ + { + "alg": "SHA-256", + "content": "40fdf3c48b2cfe1c38a49e9ae2da6fda88e4794c810050a728bd7413811fb1dc" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/vine@5.1.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/celery/vine" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/vine@5.1.0" + }, + { + "group": "", + "name": "virtualenv", + "version": "20.25.0", + "description": "Virtual Python Environment builder", + "hashes": [ + { + "alg": "SHA-256", + "content": "4238949c5ffe6876362d9c0180fc6c3a824a7b12b80604eeb8085f2ed7460de3" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/virtualenv@20.25.0", + "type": "library", + "bom-ref": "pkg:pypi/virtualenv@20.25.0" + }, + { + "author": "Jeff Quast ", + "group": "", + "name": "wcwidth", + "version": "0.2.12", + "description": "Measures the displayed width of unicode strings in a terminal", + "hashes": [ + { + "alg": "SHA-256", + "content": "f26ec43d96c8cbfed76a5075dac87680124fa84e0855195a6184da9c187f133c" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/wcwidth@0.2.12", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/jquast/wcwidth" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/wcwidth@0.2.12" + }, + { + "author": "liris ", + "group": "", + "name": "websocket-client", + "version": "1.7.0", + "description": "WebSocket client for Python with low level API options", + "hashes": [ + { + "alg": "SHA-256", + "content": "f4c3d22fec12a2461427a29957ff07d35098ee2d976d3ba244e688b8b4057588" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/websocket-client@1.7.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/websocket-client/websocket-client.git" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/websocket-client@1.7.0" + }, + { + "author": "Graham Dumpleton ", + "group": "", + "name": "wrapt", + "version": "1.16.0", + "description": "Module for decorators, wrappers and monkey patching.", + "hashes": [ + { + "alg": "SHA-256", + "content": "ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4" + } + ], + "licenses": [ + { + "license": { + "id": "0BSD", + "url": "https://opensource.org/licenses/0BSD" + } + } + ], + "purl": "pkg:pypi/wrapt@1.16.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/GrahamDumpleton/wrapt" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/wrapt@1.16.0" + }, + { + "author": "Bulat Gaifullin ", + "group": "", + "name": "xmlsec", + "version": "1.3.13", + "description": "Python bindings for the XML Security Library", + "hashes": [ + { + "alg": "SHA-256", + "content": "2174e8c88555383322d8b7d3927490a92ef72ad72a6ddaf4fa1b96a3f27c3e90" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/xmlsec@1.3.13", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/mehcode/python-xmlsec" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/xmlsec@1.3.13" + }, + { + "author": "Andrew Svetlov ", + "group": "", + "name": "yarl", + "version": "1.9.4", + "description": "Yet another URL library", + "hashes": [ + { + "alg": "SHA-256", + "content": "a8c1df72eb746f4136fe9a2e72b0c9dc1da1cbd23b5372f94b5820ff8ae30e0e" + } + ], + "licenses": [ + { + "license": { + "id": "Apache-2.0", + "url": "https://opensource.org/licenses/Apache-2.0" + } + } + ], + "purl": "pkg:pypi/yarl@1.9.4", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/aio-libs/yarl" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/yarl@1.9.4" + }, + { + "author": "Jason R. Coombs ", + "group": "", + "name": "zipp", + "version": "3.17.0", + "description": "Backport of pathlib-compatible object wrapper for zip files", + "hashes": [ + { + "alg": "SHA-256", + "content": "0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31" + } + ], + "licenses": [ + { + "license": { + "id": "MIT", + "url": "https://opensource.org/licenses/MIT" + } + } + ], + "purl": "pkg:pypi/zipp@3.17.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/jaraco/zipp" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/zipp@3.17.0" + }, + { + "author": "Zope Foundation and Contributors ", + "group": "", + "name": "zope.event", + "version": "5.0", + "description": "Very basic event publishing system", + "hashes": [ + { + "alg": "SHA-256", + "content": "2832e95014f4db26c47a13fdaef84cef2f4df37e66b59d8f1f4a8f319a632c26" + } + ], + "licenses": [ + { + "license": { + "name": "Zope Public License" + } + }, + { + "license": { + "id": "ZPL-2.1", + "url": "https://opensource.org/licenses/ZPL-2.1" + } + } + ], + "purl": "pkg:pypi/zope.event@5.0", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/zopefoundation/zope.event" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/zope.event@5.0" + }, + { + "author": "Zope Foundation and Contributors ", + "group": "", + "name": "zope.interface", + "version": "6.1", + "description": "Interfaces for Python", + "hashes": [ + { + "alg": "SHA-256", + "content": "43b576c34ef0c1f5a4981163b551a8781896f2a37f71b8655fd20b5af0386abb" + } + ], + "licenses": [ + { + "license": { + "name": "Zope Public License" + } + }, + { + "license": { + "name": "ZPL 2.1" + } + } + ], + "purl": "pkg:pypi/zope.interface@6.1", + "externalReferences": [ + { + "type": "vcs", + "url": "https://github.com/zopefoundation/zope.interface" + } + ], + "type": "library", + "bom-ref": "pkg:pypi/zope.interface@6.1" + } + ], + "services": [], + "dependencies": [ + { + "ref": "pkg:npm/@ampproject/remapping@2.1.1", + "dependsOn": [ + "pkg:npm/@jridgewell/trace-mapping@0.3.4" + ] + }, + { + "ref": "pkg:npm/@ampproject/remapping@2.2.0", + "dependsOn": [ + "pkg:npm/@jridgewell/gen-mapping@0.1.1", + "pkg:npm/@jridgewell/trace-mapping@0.3.14" + ] + }, + { + "ref": "pkg:npm/@babel/code-frame@7.14.5", + "dependsOn": [ + "pkg:npm/@babel/highlight@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/code-frame@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/highlight@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/code-frame@7.16.7", + "dependsOn": [ + "pkg:npm/@babel/highlight@7.16.10" + ] + }, + { + "ref": "pkg:npm/@babel/code-frame@7.22.13", + "dependsOn": [ + "pkg:npm/@babel/highlight@7.22.20", + "pkg:npm/chalk@2.4.2" + ] + }, + { + "ref": "pkg:npm/@babel/compat-data@7.16.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/compat-data@7.17.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/compat-data@7.18.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/core@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/code-frame@7.16.0", + "pkg:npm/@babel/generator@7.16.0", + "pkg:npm/@babel/helper-compilation-targets@7.16.0", + "pkg:npm/@babel/helper-module-transforms@7.16.0", + "pkg:npm/@babel/helpers@7.16.0", + "pkg:npm/@babel/parser@7.16.2", + "pkg:npm/@babel/template@7.16.0", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.16.0", + "pkg:npm/convert-source-map@1.7.0", + "pkg:npm/debug@4.3.4", + "pkg:npm/gensync@1.0.0-beta.2", + "pkg:npm/json5@2.2.1", + "pkg:npm/semver@6.3.1", + "pkg:npm/source-map@0.5.7" + ] + }, + { + "ref": "pkg:npm/@babel/core@7.18.5", + "dependsOn": [ + "pkg:npm/@ampproject/remapping@2.2.0", + "pkg:npm/@babel/code-frame@7.16.7", + "pkg:npm/@babel/generator@7.18.2", + "pkg:npm/@babel/helper-compilation-targets@7.18.2", + "pkg:npm/@babel/helper-module-transforms@7.18.0", + "pkg:npm/@babel/helpers@7.18.2", + "pkg:npm/@babel/parser@7.18.5", + "pkg:npm/@babel/template@7.16.7", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.18.4", + "pkg:npm/convert-source-map@1.7.0", + "pkg:npm/debug@4.3.4", + "pkg:npm/gensync@1.0.0-beta.2", + "pkg:npm/json5@2.2.1", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/@babel/core@7.17.2", + "dependsOn": [ + "pkg:npm/@ampproject/remapping@2.1.1", + "pkg:npm/@babel/code-frame@7.16.7", + "pkg:npm/@babel/generator@7.17.0", + "pkg:npm/@babel/helper-compilation-targets@7.16.7", + "pkg:npm/@babel/helper-module-transforms@7.16.7", + "pkg:npm/@babel/helpers@7.17.2", + "pkg:npm/@babel/parser@7.17.0", + "pkg:npm/@babel/template@7.16.7", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.17.0", + "pkg:npm/convert-source-map@1.7.0", + "pkg:npm/debug@4.3.4", + "pkg:npm/gensync@1.0.0-beta.2", + "pkg:npm/json5@2.2.1", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/@babel/eslint-parser@7.18.2", + "dependsOn": [ + "pkg:npm/eslint-scope@5.1.1", + "pkg:npm/eslint-visitor-keys@2.1.0", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/@babel/generator@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/types@7.16.0", + "pkg:npm/jsesc@2.5.2", + "pkg:npm/source-map@0.5.7" + ] + }, + { + "ref": "pkg:npm/@babel/generator@7.17.0", + "dependsOn": [ + "pkg:npm/@babel/types@7.17.0", + "pkg:npm/jsesc@2.5.2", + "pkg:npm/source-map@0.5.7" + ] + }, + { + "ref": "pkg:npm/@babel/generator@7.18.2", + "dependsOn": [ + "pkg:npm/@babel/types@7.18.4", + "pkg:npm/@jridgewell/gen-mapping@0.3.2", + "pkg:npm/jsesc@2.5.2" + ] + }, + { + "ref": "pkg:npm/@babel/generator@7.23.0", + "dependsOn": [ + "pkg:npm/@babel/types@7.23.0", + "pkg:npm/@jridgewell/gen-mapping@0.3.3", + "pkg:npm/@jridgewell/trace-mapping@0.3.19", + "pkg:npm/jsesc@2.5.2" + ] + }, + { + "ref": "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-annotate-as-pure@7.16.7", + "dependsOn": [ + "pkg:npm/@babel/types@7.17.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-builder-binary-assignment-operator-visitor@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-explode-assignable-expression@7.16.0", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-compilation-targets@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/compat-data@7.16.0", + "pkg:npm/@babel/helper-validator-option@7.14.5", + "pkg:npm/browserslist@4.20.4", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/@babel/helper-compilation-targets@7.16.7", + "dependsOn": [ + "pkg:npm/@babel/compat-data@7.17.0", + "pkg:npm/@babel/helper-validator-option@7.16.7", + "pkg:npm/browserslist@4.20.4", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/@babel/helper-compilation-targets@7.18.2", + "dependsOn": [ + "pkg:npm/@babel/compat-data@7.18.5", + "pkg:npm/@babel/helper-validator-option@7.16.7", + "pkg:npm/browserslist@4.20.4", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/@babel/helper-create-class-features-plugin@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "pkg:npm/@babel/helper-function-name@7.16.0", + "pkg:npm/@babel/helper-member-expression-to-functions@7.16.0", + "pkg:npm/@babel/helper-optimise-call-expression@7.16.0", + "pkg:npm/@babel/helper-replace-supers@7.16.0", + "pkg:npm/@babel/helper-split-export-declaration@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-create-class-features-plugin@7.18.0", + "dependsOn": [ + "pkg:npm/@babel/helper-annotate-as-pure@7.16.7", + "pkg:npm/@babel/helper-environment-visitor@7.16.7", + "pkg:npm/@babel/helper-function-name@7.17.9", + "pkg:npm/@babel/helper-member-expression-to-functions@7.17.7", + "pkg:npm/@babel/helper-optimise-call-expression@7.16.7", + "pkg:npm/@babel/helper-replace-supers@7.18.2", + "pkg:npm/@babel/helper-split-export-declaration@7.16.7" + ] + }, + { + "ref": "pkg:npm/@babel/helper-create-regexp-features-plugin@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "pkg:npm/regexpu-core@4.8.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-define-polyfill-provider@0.2.4", + "dependsOn": [ + "pkg:npm/@babel/helper-compilation-targets@7.16.0", + "pkg:npm/@babel/helper-module-imports@7.14.5", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/debug@4.3.4", + "pkg:npm/lodash.debounce@4.0.8", + "pkg:npm/resolve@1.20.0", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/@babel/helper-environment-visitor@7.16.7", + "dependsOn": [ + "pkg:npm/@babel/types@7.17.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-environment-visitor@7.18.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-environment-visitor@7.22.20", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-explode-assignable-expression@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-function-name@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-get-function-arity@7.16.0", + "pkg:npm/@babel/template@7.16.0", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-function-name@7.17.9", + "dependsOn": [ + "pkg:npm/@babel/template@7.16.7", + "pkg:npm/@babel/types@7.17.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-function-name@7.23.0", + "dependsOn": [ + "pkg:npm/@babel/template@7.22.15", + "pkg:npm/@babel/types@7.23.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-get-function-arity@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-hoist-variables@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-hoist-variables@7.22.5", + "dependsOn": [ + "pkg:npm/@babel/types@7.23.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-member-expression-to-functions@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-member-expression-to-functions@7.17.7", + "dependsOn": [ + "pkg:npm/@babel/types@7.17.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-module-imports@7.14.5", + "dependsOn": [ + "pkg:npm/@babel/types@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/helper-module-imports@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-module-imports@7.16.7", + "dependsOn": [ + "pkg:npm/@babel/types@7.17.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-module-transforms@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-module-imports@7.16.0", + "pkg:npm/@babel/helper-replace-supers@7.16.0", + "pkg:npm/@babel/helper-simple-access@7.16.0", + "pkg:npm/@babel/helper-split-export-declaration@7.16.0", + "pkg:npm/@babel/helper-validator-identifier@7.15.7", + "pkg:npm/@babel/template@7.16.0", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-module-transforms@7.16.7", + "dependsOn": [ + "pkg:npm/@babel/helper-environment-visitor@7.16.7", + "pkg:npm/@babel/helper-module-imports@7.16.7", + "pkg:npm/@babel/helper-simple-access@7.16.7", + "pkg:npm/@babel/helper-split-export-declaration@7.16.7", + "pkg:npm/@babel/helper-validator-identifier@7.16.7", + "pkg:npm/@babel/template@7.16.7", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.17.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-module-transforms@7.18.0", + "dependsOn": [ + "pkg:npm/@babel/helper-environment-visitor@7.16.7", + "pkg:npm/@babel/helper-module-imports@7.16.7", + "pkg:npm/@babel/helper-simple-access@7.18.2", + "pkg:npm/@babel/helper-split-export-declaration@7.16.7", + "pkg:npm/@babel/helper-validator-identifier@7.16.7", + "pkg:npm/@babel/template@7.16.7", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.18.4" + ] + }, + { + "ref": "pkg:npm/@babel/helper-optimise-call-expression@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-optimise-call-expression@7.16.7", + "dependsOn": [ + "pkg:npm/@babel/types@7.17.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-plugin-utils@7.17.12", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-remap-async-to-generator@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "pkg:npm/@babel/helper-wrap-function@7.16.0", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-replace-supers@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-member-expression-to-functions@7.16.0", + "pkg:npm/@babel/helper-optimise-call-expression@7.16.0", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-replace-supers@7.18.2", + "dependsOn": [ + "pkg:npm/@babel/helper-environment-visitor@7.18.2", + "pkg:npm/@babel/helper-member-expression-to-functions@7.17.7", + "pkg:npm/@babel/helper-optimise-call-expression@7.16.7", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.18.4" + ] + }, + { + "ref": "pkg:npm/@babel/helper-simple-access@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-simple-access@7.16.7", + "dependsOn": [ + "pkg:npm/@babel/types@7.17.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-simple-access@7.18.2", + "dependsOn": [ + "pkg:npm/@babel/types@7.18.4" + ] + }, + { + "ref": "pkg:npm/@babel/helper-skip-transparent-expression-wrappers@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-split-export-declaration@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-split-export-declaration@7.16.7", + "dependsOn": [ + "pkg:npm/@babel/types@7.17.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-split-export-declaration@7.22.6", + "dependsOn": [ + "pkg:npm/@babel/types@7.23.0" + ] + }, + { + "ref": "pkg:npm/@babel/helper-string-parser@7.22.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-validator-identifier@7.14.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-validator-identifier@7.15.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-validator-identifier@7.16.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-validator-identifier@7.22.20", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-validator-option@7.14.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-validator-option@7.16.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/helper-wrap-function@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-function-name@7.16.0", + "pkg:npm/@babel/template@7.16.0", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helpers@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/template@7.16.0", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/helpers@7.17.2", + "dependsOn": [ + "pkg:npm/@babel/template@7.16.7", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.17.0" + ] + }, + { + "ref": "pkg:npm/@babel/helpers@7.18.2", + "dependsOn": [ + "pkg:npm/@babel/template@7.16.7", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.18.4" + ] + }, + { + "ref": "pkg:npm/@babel/highlight@7.14.5", + "dependsOn": [ + "pkg:npm/@babel/helper-validator-identifier@7.14.5", + "pkg:npm/chalk@2.4.2", + "pkg:npm/js-tokens@4.0.0" + ] + }, + { + "ref": "pkg:npm/@babel/highlight@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-validator-identifier@7.15.7", + "pkg:npm/chalk@2.4.2", + "pkg:npm/js-tokens@4.0.0" + ] + }, + { + "ref": "pkg:npm/@babel/highlight@7.16.10", + "dependsOn": [ + "pkg:npm/@babel/helper-validator-identifier@7.16.7", + "pkg:npm/chalk@2.4.2", + "pkg:npm/js-tokens@4.0.0" + ] + }, + { + "ref": "pkg:npm/@babel/highlight@7.22.20", + "dependsOn": [ + "pkg:npm/@babel/helper-validator-identifier@7.22.20", + "pkg:npm/chalk@2.4.2", + "pkg:npm/js-tokens@4.0.0" + ] + }, + { + "ref": "pkg:npm/@babel/parser@7.16.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/parser@7.17.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/parser@7.18.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/parser@7.23.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.16.2", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-skip-transparent-expression-wrappers@7.16.0", + "pkg:npm/@babel/plugin-proposal-optional-chaining@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-async-generator-functions@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-remap-async-to-generator@7.16.0", + "pkg:npm/@babel/plugin-syntax-async-generators@7.8.4" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-class-properties@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-create-class-features-plugin@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-class-static-block@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-create-class-features-plugin@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-class-static-block@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-dynamic-import@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-dynamic-import@7.8.3" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-export-namespace-from@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-export-namespace-from@7.8.3" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-json-strings@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-json-strings@7.8.3" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-logical-assignment-operators@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-logical-assignment-operators@7.10.4" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-nullish-coalescing-operator@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-numeric-separator@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-numeric-separator@7.10.4" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-object-rest-spread@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/compat-data@7.16.0", + "pkg:npm/@babel/helper-compilation-targets@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-object-rest-spread@7.8.3", + "pkg:npm/@babel/plugin-transform-parameters@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-optional-catch-binding@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-optional-catch-binding@7.8.3" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-optional-chaining@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-skip-transparent-expression-wrappers@7.16.0", + "pkg:npm/@babel/plugin-syntax-optional-chaining@7.8.3" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-private-methods@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-create-class-features-plugin@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-private-property-in-object@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "pkg:npm/@babel/helper-create-class-features-plugin@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-private-property-in-object@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-proposal-unicode-property-regex@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-create-regexp-features-plugin@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-async-generators@7.8.4", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-bigint@7.8.3", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-class-properties@7.12.13", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-class-static-block@7.14.5", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-dynamic-import@7.8.3", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-export-namespace-from@7.8.3", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-import-meta@7.10.4", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-json-strings@7.8.3", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-jsx@7.14.5", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-jsx@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-logical-assignment-operators@7.10.4", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-numeric-separator@7.10.4", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-object-rest-spread@7.8.3", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-optional-catch-binding@7.8.3", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-optional-chaining@7.8.3", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-private-property-in-object@7.14.5", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-top-level-await@7.14.5", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-typescript@7.17.12", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.17.12" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-syntax-typescript@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-arrow-functions@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-async-to-generator@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-module-imports@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-remap-async-to-generator@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-block-scoped-functions@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-block-scoping@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-classes@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "pkg:npm/@babel/helper-function-name@7.16.0", + "pkg:npm/@babel/helper-optimise-call-expression@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-replace-supers@7.16.0", + "pkg:npm/@babel/helper-split-export-declaration@7.16.0", + "pkg:npm/globals@11.12.0" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-computed-properties@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-destructuring@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-dotall-regex@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-create-regexp-features-plugin@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-duplicate-keys@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-exponentiation-operator@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-builder-binary-assignment-operator-visitor@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-for-of@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-function-name@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-function-name@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-literals@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-member-expression-literals@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-modules-amd@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-module-transforms@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/babel-plugin-dynamic-import-node@2.3.3" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-modules-commonjs@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-module-transforms@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-simple-access@7.16.0", + "pkg:npm/babel-plugin-dynamic-import-node@2.3.3" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-modules-systemjs@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-hoist-variables@7.16.0", + "pkg:npm/@babel/helper-module-transforms@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-validator-identifier@7.15.7", + "pkg:npm/babel-plugin-dynamic-import-node@2.3.3" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-modules-umd@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-module-transforms@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-named-capturing-groups-regex@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-create-regexp-features-plugin@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-new-target@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-object-super@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-replace-supers@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-parameters@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-property-literals@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-react-display-name@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-react-jsx-development@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/plugin-transform-react-jsx@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-react-jsx@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "pkg:npm/@babel/helper-module-imports@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-syntax-jsx@7.16.0", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-react-pure-annotations@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-regenerator@7.16.0", + "dependsOn": [ + "pkg:npm/regenerator-transform@0.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-reserved-words@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-runtime@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-module-imports@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/babel-plugin-polyfill-corejs2@0.2.3", + "pkg:npm/babel-plugin-polyfill-corejs3@0.3.0", + "pkg:npm/babel-plugin-polyfill-regenerator@0.2.3", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-shorthand-properties@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-spread@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-skip-transparent-expression-wrappers@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-sticky-regex@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-template-literals@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-typeof-symbol@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-typescript@7.18.4", + "dependsOn": [ + "pkg:npm/@babel/helper-create-class-features-plugin@7.18.0", + "pkg:npm/@babel/helper-plugin-utils@7.17.12", + "pkg:npm/@babel/plugin-syntax-typescript@7.17.12" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-unicode-escapes@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/plugin-transform-unicode-regex@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-create-regexp-features-plugin@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5" + ] + }, + { + "ref": "pkg:npm/@babel/preset-env@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/compat-data@7.16.0", + "pkg:npm/@babel/helper-compilation-targets@7.16.0", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-validator-option@7.14.5", + "pkg:npm/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.16.2", + "pkg:npm/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.16.0", + "pkg:npm/@babel/plugin-proposal-async-generator-functions@7.16.0", + "pkg:npm/@babel/plugin-proposal-class-properties@7.16.0", + "pkg:npm/@babel/plugin-proposal-class-static-block@7.16.0", + "pkg:npm/@babel/plugin-proposal-dynamic-import@7.16.0", + "pkg:npm/@babel/plugin-proposal-export-namespace-from@7.16.0", + "pkg:npm/@babel/plugin-proposal-json-strings@7.16.0", + "pkg:npm/@babel/plugin-proposal-logical-assignment-operators@7.16.0", + "pkg:npm/@babel/plugin-proposal-nullish-coalescing-operator@7.16.0", + "pkg:npm/@babel/plugin-proposal-numeric-separator@7.16.0", + "pkg:npm/@babel/plugin-proposal-object-rest-spread@7.16.0", + "pkg:npm/@babel/plugin-proposal-optional-catch-binding@7.16.0", + "pkg:npm/@babel/plugin-proposal-optional-chaining@7.16.0", + "pkg:npm/@babel/plugin-proposal-private-methods@7.16.0", + "pkg:npm/@babel/plugin-proposal-private-property-in-object@7.16.0", + "pkg:npm/@babel/plugin-proposal-unicode-property-regex@7.16.0", + "pkg:npm/@babel/plugin-syntax-async-generators@7.8.4", + "pkg:npm/@babel/plugin-syntax-class-properties@7.12.13", + "pkg:npm/@babel/plugin-syntax-class-static-block@7.14.5", + "pkg:npm/@babel/plugin-syntax-dynamic-import@7.8.3", + "pkg:npm/@babel/plugin-syntax-export-namespace-from@7.8.3", + "pkg:npm/@babel/plugin-syntax-json-strings@7.8.3", + "pkg:npm/@babel/plugin-syntax-logical-assignment-operators@7.10.4", + "pkg:npm/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3", + "pkg:npm/@babel/plugin-syntax-numeric-separator@7.10.4", + "pkg:npm/@babel/plugin-syntax-object-rest-spread@7.8.3", + "pkg:npm/@babel/plugin-syntax-optional-catch-binding@7.8.3", + "pkg:npm/@babel/plugin-syntax-optional-chaining@7.8.3", + "pkg:npm/@babel/plugin-syntax-private-property-in-object@7.14.5", + "pkg:npm/@babel/plugin-syntax-top-level-await@7.14.5", + "pkg:npm/@babel/plugin-transform-arrow-functions@7.16.0", + "pkg:npm/@babel/plugin-transform-async-to-generator@7.16.0", + "pkg:npm/@babel/plugin-transform-block-scoped-functions@7.16.0", + "pkg:npm/@babel/plugin-transform-block-scoping@7.16.0", + "pkg:npm/@babel/plugin-transform-classes@7.16.0", + "pkg:npm/@babel/plugin-transform-computed-properties@7.16.0", + "pkg:npm/@babel/plugin-transform-destructuring@7.16.0", + "pkg:npm/@babel/plugin-transform-dotall-regex@7.16.0", + "pkg:npm/@babel/plugin-transform-duplicate-keys@7.16.0", + "pkg:npm/@babel/plugin-transform-exponentiation-operator@7.16.0", + "pkg:npm/@babel/plugin-transform-for-of@7.16.0", + "pkg:npm/@babel/plugin-transform-function-name@7.16.0", + "pkg:npm/@babel/plugin-transform-literals@7.16.0", + "pkg:npm/@babel/plugin-transform-member-expression-literals@7.16.0", + "pkg:npm/@babel/plugin-transform-modules-amd@7.16.0", + "pkg:npm/@babel/plugin-transform-modules-commonjs@7.16.0", + "pkg:npm/@babel/plugin-transform-modules-systemjs@7.16.0", + "pkg:npm/@babel/plugin-transform-modules-umd@7.16.0", + "pkg:npm/@babel/plugin-transform-named-capturing-groups-regex@7.16.0", + "pkg:npm/@babel/plugin-transform-new-target@7.16.0", + "pkg:npm/@babel/plugin-transform-object-super@7.16.0", + "pkg:npm/@babel/plugin-transform-parameters@7.16.0", + "pkg:npm/@babel/plugin-transform-property-literals@7.16.0", + "pkg:npm/@babel/plugin-transform-regenerator@7.16.0", + "pkg:npm/@babel/plugin-transform-reserved-words@7.16.0", + "pkg:npm/@babel/plugin-transform-shorthand-properties@7.16.0", + "pkg:npm/@babel/plugin-transform-spread@7.16.0", + "pkg:npm/@babel/plugin-transform-sticky-regex@7.16.0", + "pkg:npm/@babel/plugin-transform-template-literals@7.16.0", + "pkg:npm/@babel/plugin-transform-typeof-symbol@7.16.0", + "pkg:npm/@babel/plugin-transform-unicode-escapes@7.16.0", + "pkg:npm/@babel/plugin-transform-unicode-regex@7.16.0", + "pkg:npm/@babel/preset-modules@0.1.5", + "pkg:npm/@babel/types@7.16.0", + "pkg:npm/babel-plugin-polyfill-corejs2@0.2.3", + "pkg:npm/babel-plugin-polyfill-corejs3@0.3.0", + "pkg:npm/babel-plugin-polyfill-regenerator@0.2.3", + "pkg:npm/core-js-compat@3.19.1", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/@babel/preset-modules@0.1.5", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/plugin-proposal-unicode-property-regex@7.16.0", + "pkg:npm/@babel/plugin-transform-dotall-regex@7.16.0", + "pkg:npm/@babel/types@7.16.0", + "pkg:npm/esutils@2.0.3" + ] + }, + { + "ref": "pkg:npm/@babel/preset-react@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-validator-option@7.14.5", + "pkg:npm/@babel/plugin-transform-react-display-name@7.16.0", + "pkg:npm/@babel/plugin-transform-react-jsx-development@7.16.0", + "pkg:npm/@babel/plugin-transform-react-jsx@7.16.0", + "pkg:npm/@babel/plugin-transform-react-pure-annotations@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/preset-typescript@7.17.12", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.17.12", + "pkg:npm/@babel/helper-validator-option@7.16.7", + "pkg:npm/@babel/plugin-transform-typescript@7.18.4" + ] + }, + { + "ref": "pkg:npm/@babel/runtime-corejs3@7.15.4", + "dependsOn": [ + "pkg:npm/core-js-pure@3.18.0", + "pkg:npm/regenerator-runtime@0.13.9" + ] + }, + { + "ref": "pkg:npm/@babel/runtime@7.17.2", + "dependsOn": [ + "pkg:npm/regenerator-runtime@0.13.9" + ] + }, + { + "ref": "pkg:npm/@babel/runtime@7.15.4", + "dependsOn": [ + "pkg:npm/regenerator-runtime@0.13.9" + ] + }, + { + "ref": "pkg:npm/@babel/runtime@7.18.3", + "dependsOn": [ + "pkg:npm/regenerator-runtime@0.13.9" + ] + }, + { + "ref": "pkg:npm/@babel/runtime@7.16.0", + "dependsOn": [ + "pkg:npm/regenerator-runtime@0.13.9" + ] + }, + { + "ref": "pkg:npm/@babel/runtime@7.15.3", + "dependsOn": [ + "pkg:npm/regenerator-runtime@0.13.9" + ] + }, + { + "ref": "pkg:npm/@babel/runtime@7.14.6", + "dependsOn": [ + "pkg:npm/regenerator-runtime@0.13.9" + ] + }, + { + "ref": "pkg:npm/@babel/runtime@7.21.5", + "dependsOn": [ + "pkg:npm/regenerator-runtime@0.13.11" + ] + }, + { + "ref": "pkg:npm/@babel/runtime@7.17.9", + "dependsOn": [ + "pkg:npm/regenerator-runtime@0.13.9" + ] + }, + { + "ref": "pkg:npm/@babel/template@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/code-frame@7.16.0", + "pkg:npm/@babel/parser@7.16.2", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@babel/template@7.16.7", + "dependsOn": [ + "pkg:npm/@babel/code-frame@7.16.7", + "pkg:npm/@babel/parser@7.17.0", + "pkg:npm/@babel/types@7.17.0" + ] + }, + { + "ref": "pkg:npm/@babel/template@7.22.15", + "dependsOn": [ + "pkg:npm/@babel/code-frame@7.22.13", + "pkg:npm/@babel/parser@7.23.0", + "pkg:npm/@babel/types@7.23.0" + ] + }, + { + "ref": "pkg:npm/@babel/traverse@7.23.2", + "dependsOn": [ + "pkg:npm/@babel/code-frame@7.22.13", + "pkg:npm/@babel/generator@7.23.0", + "pkg:npm/@babel/helper-environment-visitor@7.22.20", + "pkg:npm/@babel/helper-function-name@7.23.0", + "pkg:npm/@babel/helper-hoist-variables@7.22.5", + "pkg:npm/@babel/helper-split-export-declaration@7.22.6", + "pkg:npm/@babel/parser@7.23.0", + "pkg:npm/@babel/types@7.23.0", + "pkg:npm/debug@4.3.4", + "pkg:npm/globals@11.12.0" + ] + }, + { + "ref": "pkg:npm/@babel/types@7.16.0", + "dependsOn": [ + "pkg:npm/@babel/helper-validator-identifier@7.15.7", + "pkg:npm/to-fast-properties@2.0.0" + ] + }, + { + "ref": "pkg:npm/@babel/types@7.14.5", + "dependsOn": [ + "pkg:npm/@babel/helper-validator-identifier@7.14.5", + "pkg:npm/to-fast-properties@2.0.0" + ] + }, + { + "ref": "pkg:npm/@babel/types@7.17.0", + "dependsOn": [ + "pkg:npm/@babel/helper-validator-identifier@7.16.7", + "pkg:npm/to-fast-properties@2.0.0" + ] + }, + { + "ref": "pkg:npm/@babel/types@7.18.4", + "dependsOn": [ + "pkg:npm/@babel/helper-validator-identifier@7.16.7", + "pkg:npm/to-fast-properties@2.0.0" + ] + }, + { + "ref": "pkg:npm/@babel/types@7.23.0", + "dependsOn": [ + "pkg:npm/@babel/helper-string-parser@7.22.5", + "pkg:npm/@babel/helper-validator-identifier@7.22.20", + "pkg:npm/to-fast-properties@2.0.0" + ] + }, + { + "ref": "pkg:npm/@bcoe/v8-coverage@0.2.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/accordion@2.1.4", + "dependsOn": [ + "pkg:npm/@chakra-ui/descendant@3.0.11", + "pkg:npm/@chakra-ui/icon@3.0.13", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/transition@2.0.12" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/alert@2.0.13", + "dependsOn": [ + "pkg:npm/@chakra-ui/icon@3.0.13", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/spinner@2.0.11" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/anatomy@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/avatar@2.2.1", + "dependsOn": [ + "pkg:npm/@chakra-ui/image@2.0.12", + "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "pkg:npm/@chakra-ui/react-context@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/breadcrumb@2.1.1", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "pkg:npm/@chakra-ui/react-context@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/breakpoint-utils@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/button@2.0.13", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/spinner@2.0.11" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/card@2.1.1", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-context@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/checkbox@2.2.5", + "dependsOn": [ + "pkg:npm/@chakra-ui/form-control@2.0.13", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5", + "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3", + "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5", + "pkg:npm/@chakra-ui/visually-hidden@2.0.13", + "pkg:npm/@zag-js/focus-visible@0.1.0" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/clickable@2.0.11", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/close-button@2.0.13", + "dependsOn": [ + "pkg:npm/@chakra-ui/icon@3.0.13" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/color-mode@2.1.10", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/control-box@2.0.11", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/counter@2.0.11", + "dependsOn": [ + "pkg:npm/@chakra-ui/number-utils@2.0.5", + "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/css-reset@2.0.10", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/descendant@3.0.11", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/dom-utils@2.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/editable@2.0.16", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5", + "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-focus-on-pointer-down@2.0.4", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3", + "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5", + "pkg:npm/@chakra-ui/shared-utils@2.0.3" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/event-utils@2.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/focus-lock@2.0.13", + "dependsOn": [ + "pkg:npm/@chakra-ui/dom-utils@2.0.4", + "pkg:npm/react-focus-lock@2.9.4" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/form-control@2.0.13", + "dependsOn": [ + "pkg:npm/@chakra-ui/icon@3.0.13", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/hooks@2.1.2", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-utils@2.0.9", + "pkg:npm/@chakra-ui/utils@2.0.12", + "pkg:npm/compute-scroll-into-view@1.0.14", + "pkg:npm/copy-to-clipboard@3.3.1" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/icon@3.0.13", + "dependsOn": [ + "pkg:npm/@chakra-ui/shared-utils@2.0.3" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/image@2.0.12", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/input@2.0.14", + "dependsOn": [ + "pkg:npm/@chakra-ui/form-control@2.0.13", + "pkg:npm/@chakra-ui/object-utils@2.0.5", + "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/shared-utils@2.0.3" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/layout@2.1.11", + "dependsOn": [ + "pkg:npm/@chakra-ui/breakpoint-utils@2.0.5", + "pkg:npm/@chakra-ui/icon@3.0.13", + "pkg:npm/@chakra-ui/object-utils@2.0.5", + "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/shared-utils@2.0.3" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/lazy-utils@2.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/live-region@2.0.11", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/media-query@3.2.8", + "dependsOn": [ + "pkg:npm/@chakra-ui/breakpoint-utils@2.0.5", + "pkg:npm/@chakra-ui/react-env@2.0.11" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/menu@2.1.5", + "dependsOn": [ + "pkg:npm/@chakra-ui/clickable@2.0.11", + "pkg:npm/@chakra-ui/descendant@3.0.11", + "pkg:npm/@chakra-ui/lazy-utils@2.0.3", + "pkg:npm/@chakra-ui/popper@3.0.10", + "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-use-animation-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-disclosure@2.0.6", + "pkg:npm/@chakra-ui/react-use-focus-effect@2.0.7", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/react-use-outside-click@2.0.5", + "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5", + "pkg:npm/@chakra-ui/transition@2.0.12" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/modal@2.2.4", + "dependsOn": [ + "pkg:npm/@chakra-ui/close-button@2.0.13", + "pkg:npm/@chakra-ui/focus-lock@2.0.13", + "pkg:npm/@chakra-ui/portal@2.0.11", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/transition@2.0.12", + "pkg:npm/aria-hidden@1.2.3", + "pkg:npm/react-remove-scroll@2.5.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/number-input@2.0.14", + "dependsOn": [ + "pkg:npm/@chakra-ui/counter@2.0.11", + "pkg:npm/@chakra-ui/form-control@2.0.13", + "pkg:npm/@chakra-ui/icon@3.0.13", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5", + "pkg:npm/@chakra-ui/react-use-event-listener@2.0.5", + "pkg:npm/@chakra-ui/react-use-interval@2.0.3", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3", + "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/number-utils@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/object-utils@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/pin-input@2.0.16", + "dependsOn": [ + "pkg:npm/@chakra-ui/descendant@3.0.11", + "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/popover@2.1.4", + "dependsOn": [ + "pkg:npm/@chakra-ui/close-button@2.0.13", + "pkg:npm/@chakra-ui/lazy-utils@2.0.3", + "pkg:npm/@chakra-ui/popper@3.0.10", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-animation-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-disclosure@2.0.6", + "pkg:npm/@chakra-ui/react-use-focus-effect@2.0.7", + "pkg:npm/@chakra-ui/react-use-focus-on-pointer-down@2.0.4", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/popper@3.0.10", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@popperjs/core@2.11.2" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/portal@2.0.11", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/progress@2.1.1", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-context@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/provider@2.0.24", + "dependsOn": [ + "pkg:npm/@chakra-ui/css-reset@2.0.10", + "pkg:npm/@chakra-ui/portal@2.0.11", + "pkg:npm/@chakra-ui/react-env@2.0.11", + "pkg:npm/@chakra-ui/system@2.3.4", + "pkg:npm/@chakra-ui/utils@2.0.12" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/radio@2.0.14", + "dependsOn": [ + "pkg:npm/@chakra-ui/form-control@2.0.13", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@zag-js/focus-visible@0.1.0" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-context@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-env@2.0.11", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-types@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-animation-state@2.0.6", + "dependsOn": [ + "pkg:npm/@chakra-ui/dom-utils@2.0.4", + "pkg:npm/@chakra-ui/react-use-event-listener@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-disclosure@2.0.6", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-event-listener@2.0.5", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-focus-effect@2.0.7", + "dependsOn": [ + "pkg:npm/@chakra-ui/dom-utils@2.0.4", + "pkg:npm/@chakra-ui/react-use-event-listener@2.0.5", + "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3", + "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-focus-on-pointer-down@2.0.4", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-use-event-listener@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-interval@2.0.3", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-latest-ref@2.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-outside-click@2.0.5", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-pan-event@2.0.6", + "dependsOn": [ + "pkg:npm/@chakra-ui/event-utils@2.0.6", + "pkg:npm/@chakra-ui/react-use-latest-ref@2.0.3", + "pkg:npm/framesync@5.3.0" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-previous@2.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-size@2.0.5", + "dependsOn": [ + "pkg:npm/@zag-js/element-size@0.1.0" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-timeout@2.0.3", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/react-utils@2.0.9", + "dependsOn": [ + "pkg:npm/@chakra-ui/utils@2.0.12" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/react@2.4.2", + "dependsOn": [ + "pkg:npm/@chakra-ui/accordion@2.1.4", + "pkg:npm/@chakra-ui/alert@2.0.13", + "pkg:npm/@chakra-ui/avatar@2.2.1", + "pkg:npm/@chakra-ui/breadcrumb@2.1.1", + "pkg:npm/@chakra-ui/button@2.0.13", + "pkg:npm/@chakra-ui/card@2.1.1", + "pkg:npm/@chakra-ui/checkbox@2.2.5", + "pkg:npm/@chakra-ui/close-button@2.0.13", + "pkg:npm/@chakra-ui/control-box@2.0.11", + "pkg:npm/@chakra-ui/counter@2.0.11", + "pkg:npm/@chakra-ui/css-reset@2.0.10", + "pkg:npm/@chakra-ui/editable@2.0.16", + "pkg:npm/@chakra-ui/form-control@2.0.13", + "pkg:npm/@chakra-ui/hooks@2.1.2", + "pkg:npm/@chakra-ui/icon@3.0.13", + "pkg:npm/@chakra-ui/image@2.0.12", + "pkg:npm/@chakra-ui/input@2.0.14", + "pkg:npm/@chakra-ui/layout@2.1.11", + "pkg:npm/@chakra-ui/live-region@2.0.11", + "pkg:npm/@chakra-ui/media-query@3.2.8", + "pkg:npm/@chakra-ui/menu@2.1.5", + "pkg:npm/@chakra-ui/modal@2.2.4", + "pkg:npm/@chakra-ui/number-input@2.0.14", + "pkg:npm/@chakra-ui/pin-input@2.0.16", + "pkg:npm/@chakra-ui/popover@2.1.4", + "pkg:npm/@chakra-ui/popper@3.0.10", + "pkg:npm/@chakra-ui/portal@2.0.11", + "pkg:npm/@chakra-ui/progress@2.1.1", + "pkg:npm/@chakra-ui/provider@2.0.24", + "pkg:npm/@chakra-ui/radio@2.0.14", + "pkg:npm/@chakra-ui/react-env@2.0.11", + "pkg:npm/@chakra-ui/select@2.0.14", + "pkg:npm/@chakra-ui/skeleton@2.0.18", + "pkg:npm/@chakra-ui/slider@2.0.14", + "pkg:npm/@chakra-ui/spinner@2.0.11", + "pkg:npm/@chakra-ui/stat@2.0.13", + "pkg:npm/@chakra-ui/styled-system@2.4.0", + "pkg:npm/@chakra-ui/switch@2.0.17", + "pkg:npm/@chakra-ui/system@2.3.4", + "pkg:npm/@chakra-ui/table@2.0.12", + "pkg:npm/@chakra-ui/tabs@2.1.5", + "pkg:npm/@chakra-ui/tag@2.0.13", + "pkg:npm/@chakra-ui/textarea@2.0.14", + "pkg:npm/@chakra-ui/theme-utils@2.0.5", + "pkg:npm/@chakra-ui/theme@2.2.2", + "pkg:npm/@chakra-ui/toast@4.0.4", + "pkg:npm/@chakra-ui/tooltip@2.2.2", + "pkg:npm/@chakra-ui/transition@2.0.12", + "pkg:npm/@chakra-ui/utils@2.0.12", + "pkg:npm/@chakra-ui/visually-hidden@2.0.13" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/select@2.0.14", + "dependsOn": [ + "pkg:npm/@chakra-ui/form-control@2.0.13" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/shared-utils@2.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/skeleton@2.0.18", + "dependsOn": [ + "pkg:npm/@chakra-ui/media-query@3.2.8", + "pkg:npm/@chakra-ui/react-use-previous@2.0.3" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/slider@2.0.14", + "dependsOn": [ + "pkg:npm/@chakra-ui/number-utils@2.0.5", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5", + "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-latest-ref@2.0.3", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/react-use-pan-event@2.0.6", + "pkg:npm/@chakra-ui/react-use-size@2.0.5", + "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/spinner@2.0.11", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/stat@2.0.13", + "dependsOn": [ + "pkg:npm/@chakra-ui/icon@3.0.13", + "pkg:npm/@chakra-ui/react-context@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/styled-system@2.4.0", + "dependsOn": [ + "pkg:npm/csstype@3.1.0", + "pkg:npm/lodash.mergewith@4.6.2" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/switch@2.0.17", + "dependsOn": [ + "pkg:npm/@chakra-ui/checkbox@2.2.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/system@2.3.4", + "dependsOn": [ + "pkg:npm/@chakra-ui/color-mode@2.1.10", + "pkg:npm/@chakra-ui/react-utils@2.0.9", + "pkg:npm/@chakra-ui/styled-system@2.4.0", + "pkg:npm/@chakra-ui/theme-utils@2.0.5", + "pkg:npm/@chakra-ui/utils@2.0.12", + "pkg:npm/react-fast-compare@3.2.0" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/table@2.0.12", + "dependsOn": [ + "pkg:npm/@chakra-ui/react-context@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/tabs@2.1.5", + "dependsOn": [ + "pkg:npm/@chakra-ui/clickable@2.0.11", + "pkg:npm/@chakra-ui/descendant@3.0.11", + "pkg:npm/@chakra-ui/lazy-utils@2.0.3", + "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/tag@2.0.13", + "dependsOn": [ + "pkg:npm/@chakra-ui/icon@3.0.13", + "pkg:npm/@chakra-ui/react-context@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/textarea@2.0.14", + "dependsOn": [ + "pkg:npm/@chakra-ui/form-control@2.0.13" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/theme-tools@2.0.14", + "dependsOn": [ + "pkg:npm/@chakra-ui/anatomy@2.1.0", + "pkg:npm/color2k@2.0.2" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/theme-utils@2.0.5", + "dependsOn": [ + "pkg:npm/@chakra-ui/styled-system@2.4.0", + "pkg:npm/@chakra-ui/theme@2.2.2", + "pkg:npm/lodash.mergewith@4.6.2" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/theme@2.2.2", + "dependsOn": [ + "pkg:npm/@chakra-ui/anatomy@2.1.0", + "pkg:npm/@chakra-ui/theme-tools@2.0.14" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/toast@4.0.4", + "dependsOn": [ + "pkg:npm/@chakra-ui/alert@2.0.13", + "pkg:npm/@chakra-ui/close-button@2.0.13", + "pkg:npm/@chakra-ui/portal@2.0.11", + "pkg:npm/@chakra-ui/react-use-timeout@2.0.3", + "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5", + "pkg:npm/@chakra-ui/styled-system@2.4.0", + "pkg:npm/@chakra-ui/theme@2.2.2" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/tooltip@2.2.2", + "dependsOn": [ + "pkg:npm/@chakra-ui/popper@3.0.10", + "pkg:npm/@chakra-ui/portal@2.0.11", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-disclosure@2.0.6", + "pkg:npm/@chakra-ui/react-use-event-listener@2.0.5", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/transition@2.0.12", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@chakra-ui/utils@2.0.12", + "dependsOn": [ + "pkg:npm/@types/lodash.mergewith@4.6.6", + "pkg:npm/css-box-model@1.2.1", + "pkg:npm/framesync@5.3.0", + "pkg:npm/lodash.mergewith@4.6.2" + ] + }, + { + "ref": "pkg:npm/@chakra-ui/visually-hidden@2.0.13", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@csstools/css-parser-algorithms@2.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@csstools/css-tokenizer@2.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@csstools/media-query-list-parser@2.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@csstools/selector-specificity@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@discoveryjs/json-ext@0.5.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@emotion/babel-plugin@11.3.0", + "dependsOn": [ + "pkg:npm/@babel/helper-module-imports@7.14.5", + "pkg:npm/@babel/plugin-syntax-jsx@7.14.5", + "pkg:npm/@babel/runtime@7.15.3", + "pkg:npm/@emotion/hash@0.8.0", + "pkg:npm/@emotion/memoize@0.7.5", + "pkg:npm/@emotion/serialize@1.0.2", + "pkg:npm/babel-plugin-macros@2.8.0", + "pkg:npm/convert-source-map@1.8.0", + "pkg:npm/escape-string-regexp@4.0.0", + "pkg:npm/find-root@1.1.0", + "pkg:npm/source-map@0.5.7", + "pkg:npm/stylis@4.0.10" + ] + }, + { + "ref": "pkg:npm/@emotion/babel-plugin@11.9.2", + "dependsOn": [ + "pkg:npm/@babel/helper-module-imports@7.14.5", + "pkg:npm/@babel/plugin-syntax-jsx@7.14.5", + "pkg:npm/@babel/runtime@7.15.3", + "pkg:npm/@emotion/hash@0.8.0", + "pkg:npm/@emotion/memoize@0.7.5", + "pkg:npm/@emotion/serialize@1.0.2", + "pkg:npm/babel-plugin-macros@2.8.0", + "pkg:npm/convert-source-map@1.8.0", + "pkg:npm/escape-string-regexp@4.0.0", + "pkg:npm/find-root@1.1.0", + "pkg:npm/source-map@0.5.7", + "pkg:npm/stylis@4.0.13" + ] + }, + { + "ref": "pkg:npm/@emotion/cache@11.9.3", + "dependsOn": [ + "pkg:npm/@emotion/memoize@0.7.5", + "pkg:npm/@emotion/sheet@1.1.1", + "pkg:npm/@emotion/utils@1.1.0", + "pkg:npm/@emotion/weak-memoize@0.2.5", + "pkg:npm/stylis@4.0.13" + ] + }, + { + "ref": "pkg:npm/@emotion/hash@0.8.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@emotion/is-prop-valid@0.8.8", + "dependsOn": [ + "pkg:npm/@emotion/memoize@0.7.4" + ] + }, + { + "ref": "pkg:npm/@emotion/is-prop-valid@1.1.0", + "dependsOn": [ + "pkg:npm/@emotion/memoize@0.7.5" + ] + }, + { + "ref": "pkg:npm/@emotion/memoize@0.7.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@emotion/memoize@0.7.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@emotion/react@11.9.3", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.15.3", + "pkg:npm/@emotion/babel-plugin@11.9.2", + "pkg:npm/@emotion/cache@11.9.3", + "pkg:npm/@emotion/serialize@1.0.4", + "pkg:npm/@emotion/utils@1.1.0", + "pkg:npm/@emotion/weak-memoize@0.2.5", + "pkg:npm/hoist-non-react-statics@3.3.2" + ] + }, + { + "ref": "pkg:npm/@emotion/serialize@1.0.2", + "dependsOn": [ + "pkg:npm/@emotion/hash@0.8.0", + "pkg:npm/@emotion/memoize@0.7.5", + "pkg:npm/@emotion/unitless@0.7.5", + "pkg:npm/@emotion/utils@1.1.0", + "pkg:npm/csstype@3.0.8" + ] + }, + { + "ref": "pkg:npm/@emotion/serialize@1.0.4", + "dependsOn": [ + "pkg:npm/@emotion/hash@0.8.0", + "pkg:npm/@emotion/memoize@0.7.5", + "pkg:npm/@emotion/unitless@0.7.5", + "pkg:npm/@emotion/utils@1.1.0", + "pkg:npm/csstype@3.0.8" + ] + }, + { + "ref": "pkg:npm/@emotion/sheet@1.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@emotion/styled@11.3.0", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.15.3", + "pkg:npm/@emotion/babel-plugin@11.3.0", + "pkg:npm/@emotion/is-prop-valid@1.1.0", + "pkg:npm/@emotion/serialize@1.0.2", + "pkg:npm/@emotion/utils@1.1.0" + ] + }, + { + "ref": "pkg:npm/@emotion/unitless@0.7.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@emotion/utils@1.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@emotion/weak-memoize@0.2.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@eslint/eslintrc@1.3.0", + "dependsOn": [ + "pkg:npm/ajv@6.12.6", + "pkg:npm/debug@4.3.4", + "pkg:npm/espree@9.3.2", + "pkg:npm/globals@13.15.0", + "pkg:npm/ignore@5.2.4", + "pkg:npm/import-fresh@3.3.0", + "pkg:npm/js-yaml@4.1.0", + "pkg:npm/minimatch@3.1.2", + "pkg:npm/strip-json-comments@3.1.1" + ] + }, + { + "ref": "pkg:npm/@exodus/schemasafe@1.0.0-rc.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@fastify/busboy@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@humanwhocodes/config-array@0.9.5", + "dependsOn": [ + "pkg:npm/@humanwhocodes/object-schema@1.2.1", + "pkg:npm/debug@4.3.4", + "pkg:npm/minimatch@3.1.2" + ] + }, + { + "ref": "pkg:npm/@humanwhocodes/object-schema@1.2.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@istanbuljs/load-nyc-config@1.1.0", + "dependsOn": [ + "pkg:npm/camelcase@5.3.1", + "pkg:npm/find-up@4.1.0", + "pkg:npm/get-package-type@0.1.0", + "pkg:npm/js-yaml@3.14.1", + "pkg:npm/resolve-from@5.0.0" + ] + }, + { + "ref": "pkg:npm/@istanbuljs/schema@0.1.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@jest/console@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/chalk@4.1.1", + "pkg:npm/jest-message-util@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/slash@3.0.0" + ] + }, + { + "ref": "pkg:npm/@jest/core@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/console@27.5.1", + "pkg:npm/@jest/reporters@27.5.1", + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/@jest/transform@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/ansi-escapes@4.3.2", + "pkg:npm/chalk@4.1.1", + "pkg:npm/emittery@0.8.1", + "pkg:npm/exit@0.1.2", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-changed-files@27.5.1", + "pkg:npm/jest-config@27.5.1", + "pkg:npm/jest-haste-map@27.5.1", + "pkg:npm/jest-message-util@27.5.1", + "pkg:npm/jest-regex-util@27.5.1", + "pkg:npm/jest-resolve-dependencies@27.5.1", + "pkg:npm/jest-resolve@27.5.1", + "pkg:npm/jest-runner@27.5.1", + "pkg:npm/jest-runtime@27.5.1", + "pkg:npm/jest-snapshot@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/jest-validate@27.5.1", + "pkg:npm/jest-watcher@27.5.1", + "pkg:npm/micromatch@4.0.5", + "pkg:npm/rimraf@3.0.2", + "pkg:npm/slash@3.0.0", + "pkg:npm/strip-ansi@6.0.1" + ] + }, + { + "ref": "pkg:npm/@jest/environment@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/fake-timers@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/jest-mock@27.5.1" + ] + }, + { + "ref": "pkg:npm/@jest/fake-timers@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@sinonjs/fake-timers@8.1.0", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/jest-message-util@27.5.1", + "pkg:npm/jest-mock@27.5.1", + "pkg:npm/jest-util@27.5.1" + ] + }, + { + "ref": "pkg:npm/@jest/globals@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/environment@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/expect@27.5.1" + ] + }, + { + "ref": "pkg:npm/@jest/reporters@27.5.1", + "dependsOn": [ + "pkg:npm/@bcoe/v8-coverage@0.2.3", + "pkg:npm/@jest/console@27.5.1", + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/@jest/transform@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/chalk@4.1.1", + "pkg:npm/collect-v8-coverage@1.0.1", + "pkg:npm/exit@0.1.2", + "pkg:npm/glob@7.2.0", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/istanbul-lib-coverage@3.2.0", + "pkg:npm/istanbul-lib-instrument@5.1.0", + "pkg:npm/istanbul-lib-report@3.0.0", + "pkg:npm/istanbul-lib-source-maps@4.0.1", + "pkg:npm/istanbul-reports@3.1.4", + "pkg:npm/jest-haste-map@27.5.1", + "pkg:npm/jest-resolve@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/jest-worker@27.5.1", + "pkg:npm/slash@3.0.0", + "pkg:npm/source-map@0.6.1", + "pkg:npm/string-length@4.0.2", + "pkg:npm/terminal-link@2.1.1", + "pkg:npm/v8-to-istanbul@8.1.0" + ] + }, + { + "ref": "pkg:npm/@jest/source-map@27.5.1", + "dependsOn": [ + "pkg:npm/callsites@3.1.0", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/source-map@0.6.1" + ] + }, + { + "ref": "pkg:npm/@jest/test-result@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/console@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/istanbul-lib-coverage@2.0.3", + "pkg:npm/collect-v8-coverage@1.0.1" + ] + }, + { + "ref": "pkg:npm/@jest/test-sequencer@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-haste-map@27.5.1", + "pkg:npm/jest-runtime@27.5.1" + ] + }, + { + "ref": "pkg:npm/@jest/transform@27.3.1", + "dependsOn": [ + "pkg:npm/@babel/core@7.16.0", + "pkg:npm/@jest/types@27.2.5", + "pkg:npm/babel-plugin-istanbul@6.1.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/convert-source-map@1.8.0", + "pkg:npm/fast-json-stable-stringify@2.1.0", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-haste-map@27.3.1", + "pkg:npm/jest-regex-util@27.0.6", + "pkg:npm/jest-util@27.3.1", + "pkg:npm/micromatch@4.0.5", + "pkg:npm/pirates@4.0.1", + "pkg:npm/slash@3.0.0", + "pkg:npm/source-map@0.6.1", + "pkg:npm/write-file-atomic@3.0.3" + ] + }, + { + "ref": "pkg:npm/@jest/transform@27.5.1", + "dependsOn": [ + "pkg:npm/@babel/core@7.16.0", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/babel-plugin-istanbul@6.1.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/convert-source-map@1.8.0", + "pkg:npm/fast-json-stable-stringify@2.1.0", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-haste-map@27.5.1", + "pkg:npm/jest-regex-util@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/micromatch@4.0.5", + "pkg:npm/pirates@4.0.5", + "pkg:npm/slash@3.0.0", + "pkg:npm/source-map@0.6.1", + "pkg:npm/write-file-atomic@3.0.3" + ] + }, + { + "ref": "pkg:npm/@jest/types@27.2.5", + "dependsOn": [ + "pkg:npm/@types/istanbul-lib-coverage@2.0.3", + "pkg:npm/@types/istanbul-reports@3.0.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/@types/yargs@16.0.4", + "pkg:npm/chalk@4.1.1" + ] + }, + { + "ref": "pkg:npm/@jest/types@27.5.1", + "dependsOn": [ + "pkg:npm/@types/istanbul-lib-coverage@2.0.3", + "pkg:npm/@types/istanbul-reports@3.0.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/@types/yargs@16.0.4", + "pkg:npm/chalk@4.1.1" + ] + }, + { + "ref": "pkg:npm/@jridgewell/gen-mapping@0.1.1", + "dependsOn": [ + "pkg:npm/@jridgewell/set-array@1.1.1", + "pkg:npm/@jridgewell/sourcemap-codec@1.4.14" + ] + }, + { + "ref": "pkg:npm/@jridgewell/gen-mapping@0.3.2", + "dependsOn": [ + "pkg:npm/@jridgewell/set-array@1.1.2", + "pkg:npm/@jridgewell/sourcemap-codec@1.4.14", + "pkg:npm/@jridgewell/trace-mapping@0.3.14" + ] + }, + { + "ref": "pkg:npm/@jridgewell/gen-mapping@0.3.3", + "dependsOn": [ + "pkg:npm/@jridgewell/set-array@1.1.2", + "pkg:npm/@jridgewell/sourcemap-codec@1.4.14", + "pkg:npm/@jridgewell/trace-mapping@0.3.14" + ] + }, + { + "ref": "pkg:npm/@jridgewell/resolve-uri@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@jridgewell/resolve-uri@3.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@jridgewell/set-array@1.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@jridgewell/set-array@1.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@jridgewell/source-map@0.3.2", + "dependsOn": [ + "pkg:npm/@jridgewell/gen-mapping@0.3.2", + "pkg:npm/@jridgewell/trace-mapping@0.3.14" + ] + }, + { + "ref": "pkg:npm/@jridgewell/sourcemap-codec@1.4.14", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@jridgewell/sourcemap-codec@1.4.15", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@jridgewell/trace-mapping@0.3.4", + "dependsOn": [ + "pkg:npm/@jridgewell/resolve-uri@3.1.0", + "pkg:npm/@jridgewell/sourcemap-codec@1.4.14" + ] + }, + { + "ref": "pkg:npm/@jridgewell/trace-mapping@0.3.19", + "dependsOn": [ + "pkg:npm/@jridgewell/resolve-uri@3.1.1", + "pkg:npm/@jridgewell/sourcemap-codec@1.4.15" + ] + }, + { + "ref": "pkg:npm/@jridgewell/trace-mapping@0.3.13", + "dependsOn": [ + "pkg:npm/@jridgewell/resolve-uri@3.1.0", + "pkg:npm/@jridgewell/sourcemap-codec@1.4.14" + ] + }, + { + "ref": "pkg:npm/@jridgewell/trace-mapping@0.3.14", + "dependsOn": [ + "pkg:npm/@jridgewell/resolve-uri@3.1.0", + "pkg:npm/@jridgewell/sourcemap-codec@1.4.14" + ] + }, + { + "ref": "pkg:npm/@nodelib/fs.scandir@2.1.5", + "dependsOn": [ + "pkg:npm/@nodelib/fs.stat@2.0.5", + "pkg:npm/run-parallel@1.2.0" + ] + }, + { + "ref": "pkg:npm/@nodelib/fs.stat@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@nodelib/fs.walk@1.2.7", + "dependsOn": [ + "pkg:npm/@nodelib/fs.scandir@2.1.5", + "pkg:npm/fastq@1.11.0" + ] + }, + { + "ref": "pkg:npm/@npmcli/move-file@1.1.2", + "dependsOn": [ + "pkg:npm/mkdirp@1.0.4", + "pkg:npm/rimraf@3.0.2" + ] + }, + { + "ref": "pkg:npm/@popperjs/core@2.11.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@reactflow/background@11.2.4", + "dependsOn": [ + "pkg:npm/@reactflow/core@11.7.4", + "pkg:npm/classcat@5.0.4", + "pkg:npm/zustand@4.3.9" + ] + }, + { + "ref": "pkg:npm/@reactflow/controls@11.1.15", + "dependsOn": [ + "pkg:npm/@reactflow/core@11.7.4", + "pkg:npm/classcat@5.0.4", + "pkg:npm/zustand@4.3.9" + ] + }, + { + "ref": "pkg:npm/@reactflow/core@11.7.4", + "dependsOn": [ + "pkg:npm/@types/d3-drag@3.0.1", + "pkg:npm/@types/d3-selection@3.0.3", + "pkg:npm/@types/d3-zoom@3.0.1", + "pkg:npm/@types/d3@7.4.0", + "pkg:npm/classcat@5.0.4", + "pkg:npm/d3-drag@3.0.0", + "pkg:npm/d3-selection@3.0.0", + "pkg:npm/d3-zoom@3.0.0", + "pkg:npm/zustand@4.3.9" + ] + }, + { + "ref": "pkg:npm/@reactflow/minimap@11.5.4", + "dependsOn": [ + "pkg:npm/@reactflow/core@11.7.4", + "pkg:npm/@types/d3-selection@3.0.3", + "pkg:npm/@types/d3-zoom@3.0.1", + "pkg:npm/classcat@5.0.4", + "pkg:npm/d3-selection@3.0.0", + "pkg:npm/d3-zoom@3.0.0", + "pkg:npm/zustand@4.3.9" + ] + }, + { + "ref": "pkg:npm/@reactflow/node-resizer@2.1.1", + "dependsOn": [ + "pkg:npm/@reactflow/core@11.7.4", + "pkg:npm/classcat@5.0.4", + "pkg:npm/d3-drag@3.0.0", + "pkg:npm/d3-selection@3.0.0", + "pkg:npm/zustand@4.3.9" + ] + }, + { + "ref": "pkg:npm/@reactflow/node-toolbar@1.2.3", + "dependsOn": [ + "pkg:npm/@reactflow/core@11.7.4", + "pkg:npm/classcat@5.0.4", + "pkg:npm/zustand@4.3.9" + ] + }, + { + "ref": "pkg:npm/@redocly/ajv@8.6.4", + "dependsOn": [ + "pkg:npm/fast-deep-equal@3.1.3", + "pkg:npm/json-schema-traverse@1.0.0", + "pkg:npm/require-from-string@2.0.2", + "pkg:npm/uri-js@4.4.1" + ] + }, + { + "ref": "pkg:npm/@redocly/openapi-core@1.0.0-beta.102", + "dependsOn": [ + "pkg:npm/@redocly/ajv@8.6.4", + "pkg:npm/@types/node@14.17.3", + "pkg:npm/colorette@1.2.2", + "pkg:npm/js-levenshtein@1.1.6", + "pkg:npm/js-yaml@4.1.0", + "pkg:npm/lodash.isequal@4.5.0", + "pkg:npm/minimatch@5.1.0", + "pkg:npm/node-fetch@2.6.7", + "pkg:npm/pluralize@8.0.0", + "pkg:npm/yaml-ast-parser@0.0.43" + ] + }, + { + "ref": "pkg:npm/@sinonjs/commons@1.8.3", + "dependsOn": [ + "pkg:npm/type-detect@4.0.8" + ] + }, + { + "ref": "pkg:npm/@sinonjs/fake-timers@8.1.0", + "dependsOn": [ + "pkg:npm/@sinonjs/commons@1.8.3" + ] + }, + { + "ref": "pkg:npm/@testing-library/dom@8.13.0", + "dependsOn": [ + "pkg:npm/@babel/code-frame@7.16.0", + "pkg:npm/@babel/runtime@7.16.0", + "pkg:npm/@types/aria-query@4.2.2", + "pkg:npm/aria-query@5.0.0", + "pkg:npm/chalk@4.1.1", + "pkg:npm/dom-accessibility-api@0.5.10", + "pkg:npm/lz-string@1.4.4", + "pkg:npm/pretty-format@27.3.1" + ] + }, + { + "ref": "pkg:npm/@testing-library/jest-dom@5.16.4", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.16.0", + "pkg:npm/@types/testing-library__jest-dom@5.14.1", + "pkg:npm/aria-query@5.0.0", + "pkg:npm/chalk@3.0.0", + "pkg:npm/css.escape@1.5.1", + "pkg:npm/css@3.0.0", + "pkg:npm/dom-accessibility-api@0.5.10", + "pkg:npm/lodash@4.17.21", + "pkg:npm/redent@3.0.0" + ] + }, + { + "ref": "pkg:npm/@testing-library/react@13.3.0", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.16.0", + "pkg:npm/@testing-library/dom@8.13.0", + "pkg:npm/@types/react-dom@18.0.5" + ] + }, + { + "ref": "pkg:npm/@tootallnate/once@1.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@trysound/sax@0.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/aria-query@4.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/babel__core@7.1.16", + "dependsOn": [ + "pkg:npm/@babel/parser@7.16.2", + "pkg:npm/@babel/types@7.16.0", + "pkg:npm/@types/babel__generator@7.6.3", + "pkg:npm/@types/babel__template@7.4.1", + "pkg:npm/@types/babel__traverse@7.14.2" + ] + }, + { + "ref": "pkg:npm/@types/babel__generator@7.6.3", + "dependsOn": [ + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@types/babel__template@7.4.1", + "dependsOn": [ + "pkg:npm/@babel/parser@7.16.2", + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@types/babel__traverse@7.14.2", + "dependsOn": [ + "pkg:npm/@babel/types@7.16.0" + ] + }, + { + "ref": "pkg:npm/@types/color-convert@2.0.0", + "dependsOn": [ + "pkg:npm/@types/color-name@1.1.1" + ] + }, + { + "ref": "pkg:npm/@types/color-name@1.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/color@3.0.3", + "dependsOn": [ + "pkg:npm/@types/color-convert@2.0.0" + ] + }, + { + "ref": "pkg:npm/@types/d3-array@3.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-axis@3.0.1", + "dependsOn": [ + "pkg:npm/@types/d3-selection@3.0.3" + ] + }, + { + "ref": "pkg:npm/@types/d3-brush@3.0.1", + "dependsOn": [ + "pkg:npm/@types/d3-selection@3.0.3" + ] + }, + { + "ref": "pkg:npm/@types/d3-chord@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-color@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-color@1.4.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-contour@3.0.1", + "dependsOn": [ + "pkg:npm/@types/d3-array@3.0.3", + "pkg:npm/@types/geojson@7946.0.10" + ] + }, + { + "ref": "pkg:npm/@types/d3-delaunay@6.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-dispatch@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-drag@3.0.1", + "dependsOn": [ + "pkg:npm/@types/d3-selection@3.0.3" + ] + }, + { + "ref": "pkg:npm/@types/d3-dsv@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-ease@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-fetch@3.0.1", + "dependsOn": [ + "pkg:npm/@types/d3-dsv@3.0.0" + ] + }, + { + "ref": "pkg:npm/@types/d3-force@3.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-format@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-geo@3.0.2", + "dependsOn": [ + "pkg:npm/@types/geojson@7946.0.10" + ] + }, + { + "ref": "pkg:npm/@types/d3-hierarchy@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-interpolate@3.0.1", + "dependsOn": [ + "pkg:npm/@types/d3-color@3.1.0" + ] + }, + { + "ref": "pkg:npm/@types/d3-interpolate@1.4.2", + "dependsOn": [ + "pkg:npm/@types/d3-color@1.4.2" + ] + }, + { + "ref": "pkg:npm/@types/d3-path@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-path@1.0.9", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-polygon@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-quadtree@3.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-random@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-scale-chromatic@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-scale@4.0.2", + "dependsOn": [ + "pkg:npm/@types/d3-time@3.0.0" + ] + }, + { + "ref": "pkg:npm/@types/d3-scale@3.3.2", + "dependsOn": [ + "pkg:npm/@types/d3-time@2.1.1" + ] + }, + { + "ref": "pkg:npm/@types/d3-selection@3.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-shape@3.1.0", + "dependsOn": [ + "pkg:npm/@types/d3-path@3.0.0" + ] + }, + { + "ref": "pkg:npm/@types/d3-shape@1.3.8", + "dependsOn": [ + "pkg:npm/@types/d3-path@1.0.9" + ] + }, + { + "ref": "pkg:npm/@types/d3-time-format@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-time@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-time@2.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-timer@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/d3-transition@3.0.2", + "dependsOn": [ + "pkg:npm/@types/d3-selection@3.0.3" + ] + }, + { + "ref": "pkg:npm/@types/d3-zoom@3.0.1", + "dependsOn": [ + "pkg:npm/@types/d3-interpolate@3.0.1", + "pkg:npm/@types/d3-selection@3.0.3" + ] + }, + { + "ref": "pkg:npm/@types/d3@7.4.0", + "dependsOn": [ + "pkg:npm/@types/d3-array@3.0.3", + "pkg:npm/@types/d3-axis@3.0.1", + "pkg:npm/@types/d3-brush@3.0.1", + "pkg:npm/@types/d3-chord@3.0.1", + "pkg:npm/@types/d3-color@3.1.0", + "pkg:npm/@types/d3-contour@3.0.1", + "pkg:npm/@types/d3-delaunay@6.0.1", + "pkg:npm/@types/d3-dispatch@3.0.1", + "pkg:npm/@types/d3-drag@3.0.1", + "pkg:npm/@types/d3-dsv@3.0.0", + "pkg:npm/@types/d3-ease@3.0.0", + "pkg:npm/@types/d3-fetch@3.0.1", + "pkg:npm/@types/d3-force@3.0.3", + "pkg:npm/@types/d3-format@3.0.1", + "pkg:npm/@types/d3-geo@3.0.2", + "pkg:npm/@types/d3-hierarchy@3.1.0", + "pkg:npm/@types/d3-interpolate@3.0.1", + "pkg:npm/@types/d3-path@3.0.0", + "pkg:npm/@types/d3-polygon@3.0.0", + "pkg:npm/@types/d3-quadtree@3.0.2", + "pkg:npm/@types/d3-random@3.0.1", + "pkg:npm/@types/d3-scale-chromatic@3.0.0", + "pkg:npm/@types/d3-scale@4.0.2", + "pkg:npm/@types/d3-selection@3.0.3", + "pkg:npm/@types/d3-shape@3.1.0", + "pkg:npm/@types/d3-time-format@4.0.0", + "pkg:npm/@types/d3-time@3.0.0", + "pkg:npm/@types/d3-timer@3.0.0", + "pkg:npm/@types/d3-transition@3.0.2", + "pkg:npm/@types/d3-zoom@3.0.1" + ] + }, + { + "ref": "pkg:npm/@types/debug@4.1.7", + "dependsOn": [ + "pkg:npm/@types/ms@0.7.31" + ] + }, + { + "ref": "pkg:npm/@types/eslint-scope@3.7.3", + "dependsOn": [ + "pkg:npm/@types/eslint@8.4.3", + "pkg:npm/@types/estree@0.0.51" + ] + }, + { + "ref": "pkg:npm/@types/eslint@8.4.3", + "dependsOn": [ + "pkg:npm/@types/estree@0.0.51", + "pkg:npm/@types/json-schema@7.0.11" + ] + }, + { + "ref": "pkg:npm/@types/estree@0.0.51", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/geojson@7946.0.10", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/glob@7.1.3", + "dependsOn": [ + "pkg:npm/@types/minimatch@3.0.4", + "pkg:npm/@types/node@15.12.2" + ] + }, + { + "ref": "pkg:npm/@types/graceful-fs@4.1.5", + "dependsOn": [ + "pkg:npm/@types/node@15.12.2" + ] + }, + { + "ref": "pkg:npm/@types/hast@2.3.4", + "dependsOn": [ + "pkg:npm/@types/unist@2.0.6" + ] + }, + { + "ref": "pkg:npm/@types/istanbul-lib-coverage@2.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/istanbul-lib-report@3.0.0", + "dependsOn": [ + "pkg:npm/@types/istanbul-lib-coverage@2.0.3" + ] + }, + { + "ref": "pkg:npm/@types/istanbul-reports@3.0.1", + "dependsOn": [ + "pkg:npm/@types/istanbul-lib-report@3.0.0" + ] + }, + { + "ref": "pkg:npm/@types/jest@27.0.2", + "dependsOn": [ + "pkg:npm/jest-diff@27.3.1", + "pkg:npm/pretty-format@27.3.1" + ] + }, + { + "ref": "pkg:npm/@types/json-schema@7.0.11", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/json-schema@7.0.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/json5@0.0.29", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/lodash.mergewith@4.6.6", + "dependsOn": [ + "pkg:npm/@types/lodash@4.14.178" + ] + }, + { + "ref": "pkg:npm/@types/lodash@4.14.178", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/lodash@4.14.182", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/mdast@3.0.10", + "dependsOn": [ + "pkg:npm/@types/unist@2.0.6" + ] + }, + { + "ref": "pkg:npm/@types/minimatch@3.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/minimist@1.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/ms@0.7.31", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/node@15.12.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/node@14.17.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/normalize-package-data@2.4.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/parse-json@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/prettier@2.4.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/prop-types@15.7.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/prop-types@15.7.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/react-dom@18.0.5", + "dependsOn": [ + "pkg:npm/@types/react@18.0.15" + ] + }, + { + "ref": "pkg:npm/@types/react-syntax-highlighter@15.5.6", + "dependsOn": [ + "pkg:npm/@types/react@18.0.15" + ] + }, + { + "ref": "pkg:npm/@types/react-table@7.7.12", + "dependsOn": [ + "pkg:npm/@types/react@18.0.15" + ] + }, + { + "ref": "pkg:npm/@types/react-transition-group@4.4.5", + "dependsOn": [ + "pkg:npm/@types/react@18.0.15" + ] + }, + { + "ref": "pkg:npm/@types/react@18.0.15", + "dependsOn": [ + "pkg:npm/@types/prop-types@15.7.4", + "pkg:npm/@types/scheduler@0.16.2", + "pkg:npm/csstype@3.0.8" + ] + }, + { + "ref": "pkg:npm/@types/react@18.0.12", + "dependsOn": [ + "pkg:npm/@types/prop-types@15.7.4", + "pkg:npm/@types/scheduler@0.16.2", + "pkg:npm/csstype@3.0.8" + ] + }, + { + "ref": "pkg:npm/@types/scheduler@0.16.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/source-list-map@0.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/stack-utils@2.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/tapable@1.0.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/testing-library__jest-dom@5.14.1", + "dependsOn": [ + "pkg:npm/@types/jest@27.0.2" + ] + }, + { + "ref": "pkg:npm/@types/uglify-js@3.13.0", + "dependsOn": [ + "pkg:npm/source-map@0.6.1" + ] + }, + { + "ref": "pkg:npm/@types/unist@2.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/webpack-sources@2.1.0", + "dependsOn": [ + "pkg:npm/@types/node@15.12.2", + "pkg:npm/@types/source-list-map@0.1.2", + "pkg:npm/source-map@0.7.3" + ] + }, + { + "ref": "pkg:npm/@types/webpack@4.41.29", + "dependsOn": [ + "pkg:npm/@types/node@15.12.2", + "pkg:npm/@types/tapable@1.0.7", + "pkg:npm/@types/uglify-js@3.13.0", + "pkg:npm/@types/webpack-sources@2.1.0", + "pkg:npm/anymatch@3.1.2", + "pkg:npm/source-map@0.6.1" + ] + }, + { + "ref": "pkg:npm/@types/yargs-parser@20.2.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@types/yargs@16.0.4", + "dependsOn": [ + "pkg:npm/@types/yargs-parser@20.2.1" + ] + }, + { + "ref": "pkg:npm/@typescript-eslint/eslint-plugin@5.27.1", + "dependsOn": [ + "pkg:npm/@typescript-eslint/scope-manager@5.27.1", + "pkg:npm/@typescript-eslint/type-utils@5.27.1", + "pkg:npm/@typescript-eslint/utils@5.27.1", + "pkg:npm/debug@4.3.4", + "pkg:npm/functional-red-black-tree@1.0.1", + "pkg:npm/ignore@5.2.4", + "pkg:npm/regexpp@3.2.0", + "pkg:npm/semver@7.5.4", + "pkg:npm/tsutils@3.21.0" + ] + }, + { + "ref": "pkg:npm/@typescript-eslint/parser@5.27.1", + "dependsOn": [ + "pkg:npm/@typescript-eslint/scope-manager@5.27.1", + "pkg:npm/@typescript-eslint/types@5.27.1", + "pkg:npm/@typescript-eslint/typescript-estree@5.27.1", + "pkg:npm/debug@4.3.4" + ] + }, + { + "ref": "pkg:npm/@typescript-eslint/scope-manager@5.27.1", + "dependsOn": [ + "pkg:npm/@typescript-eslint/types@5.27.1", + "pkg:npm/@typescript-eslint/visitor-keys@5.27.1" + ] + }, + { + "ref": "pkg:npm/@typescript-eslint/type-utils@5.27.1", + "dependsOn": [ + "pkg:npm/@typescript-eslint/utils@5.27.1", + "pkg:npm/debug@4.3.4", + "pkg:npm/tsutils@3.21.0" + ] + }, + { + "ref": "pkg:npm/@typescript-eslint/types@5.27.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@typescript-eslint/typescript-estree@5.27.1", + "dependsOn": [ + "pkg:npm/@typescript-eslint/types@5.27.1", + "pkg:npm/@typescript-eslint/visitor-keys@5.27.1", + "pkg:npm/debug@4.3.4", + "pkg:npm/globby@11.1.0", + "pkg:npm/is-glob@4.0.3", + "pkg:npm/semver@7.5.4", + "pkg:npm/tsutils@3.21.0" + ] + }, + { + "ref": "pkg:npm/@typescript-eslint/utils@5.27.1", + "dependsOn": [ + "pkg:npm/@types/json-schema@7.0.11", + "pkg:npm/@typescript-eslint/scope-manager@5.27.1", + "pkg:npm/@typescript-eslint/types@5.27.1", + "pkg:npm/@typescript-eslint/typescript-estree@5.27.1", + "pkg:npm/eslint-scope@5.1.1", + "pkg:npm/eslint-utils@3.0.0" + ] + }, + { + "ref": "pkg:npm/@typescript-eslint/visitor-keys@5.27.1", + "dependsOn": [ + "pkg:npm/@typescript-eslint/types@5.27.1", + "pkg:npm/eslint-visitor-keys@3.3.0" + ] + }, + { + "ref": "pkg:npm/@visx/curve@2.1.0", + "dependsOn": [ + "pkg:npm/@types/d3-shape@1.3.8", + "pkg:npm/d3-shape@1.3.7" + ] + }, + { + "ref": "pkg:npm/@visx/group@2.10.0", + "dependsOn": [ + "pkg:npm/@types/react@18.0.15", + "pkg:npm/classnames@2.3.1", + "pkg:npm/prop-types@15.8.1" + ] + }, + { + "ref": "pkg:npm/@visx/scale@2.2.2", + "dependsOn": [ + "pkg:npm/@types/d3-interpolate@1.4.2", + "pkg:npm/@types/d3-scale@3.3.2", + "pkg:npm/@types/d3-time@2.1.1", + "pkg:npm/d3-interpolate@1.4.0", + "pkg:npm/d3-scale@3.3.0", + "pkg:npm/d3-time@2.1.1" + ] + }, + { + "ref": "pkg:npm/@visx/shape@2.12.2", + "dependsOn": [ + "pkg:npm/@types/d3-path@1.0.9", + "pkg:npm/@types/d3-shape@1.3.8", + "pkg:npm/@types/lodash@4.14.182", + "pkg:npm/@types/react@18.0.15", + "pkg:npm/@visx/curve@2.1.0", + "pkg:npm/@visx/group@2.10.0", + "pkg:npm/@visx/scale@2.2.2", + "pkg:npm/classnames@2.3.1", + "pkg:npm/d3-path@1.0.9", + "pkg:npm/d3-shape@1.3.7", + "pkg:npm/lodash@4.17.21", + "pkg:npm/prop-types@15.8.1" + ] + }, + { + "ref": "pkg:npm/@webassemblyjs/ast@1.11.1", + "dependsOn": [ + "pkg:npm/@webassemblyjs/helper-numbers@1.11.1", + "pkg:npm/@webassemblyjs/helper-wasm-bytecode@1.11.1" + ] + }, + { + "ref": "pkg:npm/@webassemblyjs/floating-point-hex-parser@1.11.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@webassemblyjs/helper-api-error@1.11.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@webassemblyjs/helper-buffer@1.11.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@webassemblyjs/helper-numbers@1.11.1", + "dependsOn": [ + "pkg:npm/@webassemblyjs/floating-point-hex-parser@1.11.1", + "pkg:npm/@webassemblyjs/helper-api-error@1.11.1", + "pkg:npm/@xtuc/long@4.2.2" + ] + }, + { + "ref": "pkg:npm/@webassemblyjs/helper-wasm-bytecode@1.11.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@webassemblyjs/helper-wasm-section@1.11.1", + "dependsOn": [ + "pkg:npm/@webassemblyjs/ast@1.11.1", + "pkg:npm/@webassemblyjs/helper-buffer@1.11.1", + "pkg:npm/@webassemblyjs/helper-wasm-bytecode@1.11.1", + "pkg:npm/@webassemblyjs/wasm-gen@1.11.1" + ] + }, + { + "ref": "pkg:npm/@webassemblyjs/ieee754@1.11.1", + "dependsOn": [ + "pkg:npm/@xtuc/ieee754@1.2.0" + ] + }, + { + "ref": "pkg:npm/@webassemblyjs/leb128@1.11.1", + "dependsOn": [ + "pkg:npm/@xtuc/long@4.2.2" + ] + }, + { + "ref": "pkg:npm/@webassemblyjs/utf8@1.11.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@webassemblyjs/wasm-edit@1.11.1", + "dependsOn": [ + "pkg:npm/@webassemblyjs/ast@1.11.1", + "pkg:npm/@webassemblyjs/helper-buffer@1.11.1", + "pkg:npm/@webassemblyjs/helper-wasm-bytecode@1.11.1", + "pkg:npm/@webassemblyjs/helper-wasm-section@1.11.1", + "pkg:npm/@webassemblyjs/wasm-gen@1.11.1", + "pkg:npm/@webassemblyjs/wasm-opt@1.11.1", + "pkg:npm/@webassemblyjs/wasm-parser@1.11.1", + "pkg:npm/@webassemblyjs/wast-printer@1.11.1" + ] + }, + { + "ref": "pkg:npm/@webassemblyjs/wasm-gen@1.11.1", + "dependsOn": [ + "pkg:npm/@webassemblyjs/ast@1.11.1", + "pkg:npm/@webassemblyjs/helper-wasm-bytecode@1.11.1", + "pkg:npm/@webassemblyjs/ieee754@1.11.1", + "pkg:npm/@webassemblyjs/leb128@1.11.1", + "pkg:npm/@webassemblyjs/utf8@1.11.1" + ] + }, + { + "ref": "pkg:npm/@webassemblyjs/wasm-opt@1.11.1", + "dependsOn": [ + "pkg:npm/@webassemblyjs/ast@1.11.1", + "pkg:npm/@webassemblyjs/helper-buffer@1.11.1", + "pkg:npm/@webassemblyjs/wasm-gen@1.11.1", + "pkg:npm/@webassemblyjs/wasm-parser@1.11.1" + ] + }, + { + "ref": "pkg:npm/@webassemblyjs/wasm-parser@1.11.1", + "dependsOn": [ + "pkg:npm/@webassemblyjs/ast@1.11.1", + "pkg:npm/@webassemblyjs/helper-api-error@1.11.1", + "pkg:npm/@webassemblyjs/helper-wasm-bytecode@1.11.1", + "pkg:npm/@webassemblyjs/ieee754@1.11.1", + "pkg:npm/@webassemblyjs/leb128@1.11.1", + "pkg:npm/@webassemblyjs/utf8@1.11.1" + ] + }, + { + "ref": "pkg:npm/@webassemblyjs/wast-printer@1.11.1", + "dependsOn": [ + "pkg:npm/@webassemblyjs/ast@1.11.1", + "pkg:npm/@xtuc/long@4.2.2" + ] + }, + { + "ref": "pkg:npm/@webpack-cli/configtest@1.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@webpack-cli/info@1.5.0", + "dependsOn": [ + "pkg:npm/envinfo@7.8.1" + ] + }, + { + "ref": "pkg:npm/@webpack-cli/serve@1.7.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@xtuc/ieee754@1.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@xtuc/long@4.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@zag-js/element-size@0.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/@zag-js/focus-visible@0.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/abab@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/acorn-globals@6.0.0", + "dependsOn": [ + "pkg:npm/acorn-walk@7.2.0", + "pkg:npm/acorn@7.4.1" + ] + }, + { + "ref": "pkg:npm/acorn-import-assertions@1.8.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/acorn-jsx@5.3.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/acorn-walk@7.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/acorn@7.4.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/acorn@8.7.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/agent-base@6.0.2", + "dependsOn": [ + "pkg:npm/debug@4.3.4" + ] + }, + { + "ref": "pkg:npm/aggregate-error@3.1.0", + "dependsOn": [ + "pkg:npm/clean-stack@2.2.0", + "pkg:npm/indent-string@4.0.0" + ] + }, + { + "ref": "pkg:npm/ajv-formats@2.1.1", + "dependsOn": [ + "pkg:npm/ajv@8.11.0" + ] + }, + { + "ref": "pkg:npm/ajv-keywords@3.5.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ajv-keywords@5.1.0", + "dependsOn": [ + "pkg:npm/fast-deep-equal@3.1.3" + ] + }, + { + "ref": "pkg:npm/ajv@6.12.6", + "dependsOn": [ + "pkg:npm/fast-deep-equal@3.1.3", + "pkg:npm/fast-json-stable-stringify@2.1.0", + "pkg:npm/json-schema-traverse@0.4.1", + "pkg:npm/uri-js@4.4.1" + ] + }, + { + "ref": "pkg:npm/ajv@8.11.0", + "dependsOn": [ + "pkg:npm/fast-deep-equal@3.1.3", + "pkg:npm/json-schema-traverse@1.0.0", + "pkg:npm/require-from-string@2.0.2", + "pkg:npm/uri-js@4.4.1" + ] + }, + { + "ref": "pkg:npm/ajv@8.6.0", + "dependsOn": [ + "pkg:npm/fast-deep-equal@3.1.3", + "pkg:npm/json-schema-traverse@1.0.0", + "pkg:npm/require-from-string@2.0.2", + "pkg:npm/uri-js@4.4.1" + ] + }, + { + "ref": "pkg:npm/ansi-escapes@4.3.2", + "dependsOn": [ + "pkg:npm/type-fest@0.21.3" + ] + }, + { + "ref": "pkg:npm/ansi-regex@5.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ansi-styles@3.2.1", + "dependsOn": [ + "pkg:npm/color-convert@1.9.3" + ] + }, + { + "ref": "pkg:npm/ansi-styles@4.3.0", + "dependsOn": [ + "pkg:npm/color-convert@2.0.1" + ] + }, + { + "ref": "pkg:npm/ansi-styles@5.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/anymatch@3.1.2", + "dependsOn": [ + "pkg:npm/normalize-path@3.0.0", + "pkg:npm/picomatch@2.3.0" + ] + }, + { + "ref": "pkg:npm/argparse@1.0.10", + "dependsOn": [ + "pkg:npm/sprintf-js@1.0.3" + ] + }, + { + "ref": "pkg:npm/argparse@2.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/aria-hidden@1.2.3", + "dependsOn": [ + "pkg:npm/tslib@2.4.0" + ] + }, + { + "ref": "pkg:npm/aria-query@4.2.2", + "dependsOn": [ + "pkg:npm/@babel/runtime-corejs3@7.15.4", + "pkg:npm/@babel/runtime@7.15.4" + ] + }, + { + "ref": "pkg:npm/aria-query@5.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/array-buffer-byte-length@1.0.0", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/is-array-buffer@3.0.2" + ] + }, + { + "ref": "pkg:npm/array-includes@3.1.3", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/es-abstract@1.18.3", + "pkg:npm/get-intrinsic@1.1.1", + "pkg:npm/is-string@1.0.6" + ] + }, + { + "ref": "pkg:npm/array-includes@3.1.5", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.20.1", + "pkg:npm/get-intrinsic@1.1.1", + "pkg:npm/is-string@1.0.7" + ] + }, + { + "ref": "pkg:npm/array-includes@3.1.6", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.21.2", + "pkg:npm/get-intrinsic@1.2.0", + "pkg:npm/is-string@1.0.7" + ] + }, + { + "ref": "pkg:npm/array-union@1.0.2", + "dependsOn": [ + "pkg:npm/array-uniq@1.0.3" + ] + }, + { + "ref": "pkg:npm/array-union@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/array-uniq@1.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/array.prototype.flat@1.3.1", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.21.2", + "pkg:npm/es-shim-unscopables@1.0.0" + ] + }, + { + "ref": "pkg:npm/array.prototype.flatmap@1.3.0", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/es-abstract@1.20.1", + "pkg:npm/es-shim-unscopables@1.0.0" + ] + }, + { + "ref": "pkg:npm/array.prototype.flatmap@1.3.1", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.21.2", + "pkg:npm/es-shim-unscopables@1.0.0" + ] + }, + { + "ref": "pkg:npm/arrify@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/asap@2.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ast-types-flow@0.0.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/astral-regex@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/asynckit@0.4.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/atob@2.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/available-typed-arrays@1.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/axe-core@4.4.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/axios@1.6.1", + "dependsOn": [ + "pkg:npm/follow-redirects@1.15.3", + "pkg:npm/form-data@4.0.0", + "pkg:npm/proxy-from-env@1.1.0" + ] + }, + { + "ref": "pkg:npm/axobject-query@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/babel-jest@27.3.1", + "dependsOn": [ + "pkg:npm/@jest/transform@27.3.1", + "pkg:npm/@jest/types@27.2.5", + "pkg:npm/@types/babel__core@7.1.16", + "pkg:npm/babel-plugin-istanbul@6.1.1", + "pkg:npm/babel-preset-jest@27.2.0", + "pkg:npm/chalk@4.1.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/slash@3.0.0" + ] + }, + { + "ref": "pkg:npm/babel-jest@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/transform@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/babel__core@7.1.16", + "pkg:npm/babel-plugin-istanbul@6.1.1", + "pkg:npm/babel-preset-jest@27.5.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/slash@3.0.0" + ] + }, + { + "ref": "pkg:npm/babel-loader@9.1.2", + "dependsOn": [ + "pkg:npm/find-cache-dir@3.3.2", + "pkg:npm/schema-utils@4.0.0" + ] + }, + { + "ref": "pkg:npm/babel-plugin-dynamic-import-node@2.3.3", + "dependsOn": [ + "pkg:npm/object.assign@4.1.2" + ] + }, + { + "ref": "pkg:npm/babel-plugin-istanbul@6.1.1", + "dependsOn": [ + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@istanbuljs/load-nyc-config@1.1.0", + "pkg:npm/@istanbuljs/schema@0.1.3", + "pkg:npm/istanbul-lib-instrument@5.1.0", + "pkg:npm/test-exclude@6.0.0" + ] + }, + { + "ref": "pkg:npm/babel-plugin-jest-hoist@27.2.0", + "dependsOn": [ + "pkg:npm/@babel/template@7.16.0", + "pkg:npm/@babel/types@7.16.0", + "pkg:npm/@types/babel__core@7.1.16", + "pkg:npm/@types/babel__traverse@7.14.2" + ] + }, + { + "ref": "pkg:npm/babel-plugin-jest-hoist@27.5.1", + "dependsOn": [ + "pkg:npm/@babel/template@7.16.0", + "pkg:npm/@babel/types@7.16.0", + "pkg:npm/@types/babel__core@7.1.16", + "pkg:npm/@types/babel__traverse@7.14.2" + ] + }, + { + "ref": "pkg:npm/babel-plugin-macros@2.8.0", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.15.3", + "pkg:npm/cosmiconfig@6.0.0", + "pkg:npm/resolve@1.20.0" + ] + }, + { + "ref": "pkg:npm/babel-plugin-polyfill-corejs2@0.2.3", + "dependsOn": [ + "pkg:npm/@babel/compat-data@7.16.0", + "pkg:npm/@babel/helper-define-polyfill-provider@0.2.4", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/babel-plugin-polyfill-corejs3@0.3.0", + "dependsOn": [ + "pkg:npm/@babel/helper-define-polyfill-provider@0.2.4", + "pkg:npm/core-js-compat@3.19.1" + ] + }, + { + "ref": "pkg:npm/babel-plugin-polyfill-regenerator@0.2.3", + "dependsOn": [ + "pkg:npm/@babel/helper-define-polyfill-provider@0.2.4" + ] + }, + { + "ref": "pkg:npm/babel-preset-current-node-syntax@1.0.1", + "dependsOn": [ + "pkg:npm/@babel/plugin-syntax-async-generators@7.8.4", + "pkg:npm/@babel/plugin-syntax-bigint@7.8.3", + "pkg:npm/@babel/plugin-syntax-class-properties@7.12.13", + "pkg:npm/@babel/plugin-syntax-import-meta@7.10.4", + "pkg:npm/@babel/plugin-syntax-json-strings@7.8.3", + "pkg:npm/@babel/plugin-syntax-logical-assignment-operators@7.10.4", + "pkg:npm/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3", + "pkg:npm/@babel/plugin-syntax-numeric-separator@7.10.4", + "pkg:npm/@babel/plugin-syntax-object-rest-spread@7.8.3", + "pkg:npm/@babel/plugin-syntax-optional-catch-binding@7.8.3", + "pkg:npm/@babel/plugin-syntax-optional-chaining@7.8.3", + "pkg:npm/@babel/plugin-syntax-top-level-await@7.14.5" + ] + }, + { + "ref": "pkg:npm/babel-preset-jest@27.2.0", + "dependsOn": [ + "pkg:npm/babel-plugin-jest-hoist@27.2.0", + "pkg:npm/babel-preset-current-node-syntax@1.0.1" + ] + }, + { + "ref": "pkg:npm/babel-preset-jest@27.5.1", + "dependsOn": [ + "pkg:npm/babel-plugin-jest-hoist@27.5.1", + "pkg:npm/babel-preset-current-node-syntax@1.0.1" + ] + }, + { + "ref": "pkg:npm/bail@2.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/balanced-match@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/balanced-match@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/base16@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/big-integer@1.6.51", + "dependsOn": [] + }, + { + "ref": "pkg:npm/big.js@5.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/boolbase@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/bootstrap-3-typeahead@4.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/bootstrap@3.4.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/brace-expansion@1.1.11", + "dependsOn": [ + "pkg:npm/balanced-match@1.0.2", + "pkg:npm/concat-map@0.0.1" + ] + }, + { + "ref": "pkg:npm/brace-expansion@2.0.1", + "dependsOn": [ + "pkg:npm/balanced-match@1.0.2" + ] + }, + { + "ref": "pkg:npm/braces@3.0.2", + "dependsOn": [ + "pkg:npm/fill-range@7.0.1" + ] + }, + { + "ref": "pkg:npm/broadcast-channel@3.7.0", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.15.3", + "pkg:npm/detect-node@2.1.0", + "pkg:npm/js-sha3@0.8.0", + "pkg:npm/microseconds@0.2.0", + "pkg:npm/nano-time@1.0.0", + "pkg:npm/oblivious-set@1.0.0", + "pkg:npm/rimraf@3.0.2", + "pkg:npm/unload@2.2.0" + ] + }, + { + "ref": "pkg:npm/browser-process-hrtime@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/browserslist@4.20.4", + "dependsOn": [ + "pkg:npm/caniuse-lite@1.0.30001516", + "pkg:npm/electron-to-chromium@1.4.156", + "pkg:npm/escalade@3.1.1", + "pkg:npm/node-releases@2.0.5", + "pkg:npm/picocolors@1.0.0" + ] + }, + { + "ref": "pkg:npm/bser@2.1.1", + "dependsOn": [ + "pkg:npm/node-int64@0.4.0" + ] + }, + { + "ref": "pkg:npm/buffer-from@1.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/cacache@15.2.0", + "dependsOn": [ + "pkg:npm/@npmcli/move-file@1.1.2", + "pkg:npm/chownr@2.0.0", + "pkg:npm/fs-minipass@2.1.0", + "pkg:npm/glob@7.1.7", + "pkg:npm/infer-owner@1.0.4", + "pkg:npm/lru-cache@6.0.0", + "pkg:npm/minipass-collect@1.0.2", + "pkg:npm/minipass-flush@1.0.5", + "pkg:npm/minipass-pipeline@1.2.4", + "pkg:npm/minipass@3.1.3", + "pkg:npm/mkdirp@1.0.4", + "pkg:npm/p-map@4.0.0", + "pkg:npm/promise-inflight@1.0.1", + "pkg:npm/rimraf@3.0.2", + "pkg:npm/ssri@8.0.1", + "pkg:npm/tar@6.1.11", + "pkg:npm/unique-filename@1.1.1" + ] + }, + { + "ref": "pkg:npm/call-bind@1.0.2", + "dependsOn": [ + "pkg:npm/function-bind@1.1.1", + "pkg:npm/get-intrinsic@1.1.1" + ] + }, + { + "ref": "pkg:npm/call-me-maybe@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/callsites@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/camelcase-keys@7.0.0", + "dependsOn": [ + "pkg:npm/camelcase@6.2.0", + "pkg:npm/map-obj@4.3.0", + "pkg:npm/quick-lru@5.1.1", + "pkg:npm/type-fest@1.4.0" + ] + }, + { + "ref": "pkg:npm/camelcase@5.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/camelcase@6.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/caniuse-api@3.0.0", + "dependsOn": [ + "pkg:npm/browserslist@4.20.4", + "pkg:npm/caniuse-lite@1.0.30001516", + "pkg:npm/lodash.memoize@4.1.2", + "pkg:npm/lodash.uniq@4.5.0" + ] + }, + { + "ref": "pkg:npm/caniuse-lite@1.0.30001516", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ccount@2.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/chakra-react-select@4.0.3", + "dependsOn": [ + "pkg:npm/react-select@5.3.2" + ] + }, + { + "ref": "pkg:npm/chalk@2.4.2", + "dependsOn": [ + "pkg:npm/ansi-styles@3.2.1", + "pkg:npm/escape-string-regexp@1.0.5", + "pkg:npm/supports-color@5.5.0" + ] + }, + { + "ref": "pkg:npm/chalk@3.0.0", + "dependsOn": [ + "pkg:npm/ansi-styles@4.3.0", + "pkg:npm/supports-color@7.2.0" + ] + }, + { + "ref": "pkg:npm/chalk@4.1.1", + "dependsOn": [ + "pkg:npm/ansi-styles@4.3.0", + "pkg:npm/supports-color@7.2.0" + ] + }, + { + "ref": "pkg:npm/chalk@5.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/char-regex@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/character-entities-legacy@1.1.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/character-entities@1.2.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/character-entities@2.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/character-reference-invalid@1.1.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/chownr@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/chrome-trace-event@1.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ci-info@3.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/cjs-module-lexer@1.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/classcat@5.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/classnames@2.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/clean-stack@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/clean-webpack-plugin@3.0.0", + "dependsOn": [ + "pkg:npm/@types/webpack@4.41.29", + "pkg:npm/del@4.1.1" + ] + }, + { + "ref": "pkg:npm/cli@1.0.1", + "dependsOn": [ + "pkg:npm/exit@0.1.2", + "pkg:npm/glob@7.1.7" + ] + }, + { + "ref": "pkg:npm/cliui@7.0.4", + "dependsOn": [ + "pkg:npm/string-width@4.2.3", + "pkg:npm/strip-ansi@6.0.1", + "pkg:npm/wrap-ansi@7.0.0" + ] + }, + { + "ref": "pkg:npm/clone-deep@4.0.1", + "dependsOn": [ + "pkg:npm/is-plain-object@2.0.4", + "pkg:npm/kind-of@6.0.3", + "pkg:npm/shallow-clone@3.0.1" + ] + }, + { + "ref": "pkg:npm/clsx@1.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/co@4.6.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/codemirror@5.61.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/collect-v8-coverage@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/color-convert@1.9.3", + "dependsOn": [ + "pkg:npm/color-name@1.1.3" + ] + }, + { + "ref": "pkg:npm/color-convert@2.0.1", + "dependsOn": [ + "pkg:npm/color-name@1.1.4" + ] + }, + { + "ref": "pkg:npm/color-name@1.1.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/color-name@1.1.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/color-string@1.9.1", + "dependsOn": [ + "pkg:npm/color-name@1.1.4", + "pkg:npm/simple-swizzle@0.2.2" + ] + }, + { + "ref": "pkg:npm/color2k@2.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/color@4.2.3", + "dependsOn": [ + "pkg:npm/color-convert@2.0.1", + "pkg:npm/color-string@1.9.1" + ] + }, + { + "ref": "pkg:npm/colord@2.9.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/colorette@1.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/colorette@2.0.19", + "dependsOn": [] + }, + { + "ref": "pkg:npm/combined-stream@1.0.8", + "dependsOn": [ + "pkg:npm/delayed-stream@1.0.0" + ] + }, + { + "ref": "pkg:npm/comma-separated-tokens@1.0.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/comma-separated-tokens@2.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/commander@2.20.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/commander@7.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/commondir@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/compute-scroll-into-view@1.0.14", + "dependsOn": [] + }, + { + "ref": "pkg:npm/concat-map@0.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/confusing-browser-globals@1.0.10", + "dependsOn": [] + }, + { + "ref": "pkg:npm/console-browserify@1.1.0", + "dependsOn": [ + "pkg:npm/date-now@0.1.4" + ] + }, + { + "ref": "pkg:npm/convert-source-map@1.8.0", + "dependsOn": [ + "pkg:npm/safe-buffer@5.1.2" + ] + }, + { + "ref": "pkg:npm/convert-source-map@1.7.0", + "dependsOn": [ + "pkg:npm/safe-buffer@5.1.2" + ] + }, + { + "ref": "pkg:npm/copy-to-clipboard@3.3.1", + "dependsOn": [ + "pkg:npm/toggle-selection@1.0.6" + ] + }, + { + "ref": "pkg:npm/copy-webpack-plugin@6.4.1", + "dependsOn": [ + "pkg:npm/cacache@15.2.0", + "pkg:npm/fast-glob@3.3.0", + "pkg:npm/find-cache-dir@3.3.1", + "pkg:npm/glob-parent@5.1.2", + "pkg:npm/globby@11.1.0", + "pkg:npm/loader-utils@2.0.4", + "pkg:npm/normalize-path@3.0.0", + "pkg:npm/p-limit@3.1.0", + "pkg:npm/schema-utils@3.1.1", + "pkg:npm/serialize-javascript@5.0.1", + "pkg:npm/webpack-sources@1.4.3" + ] + }, + { + "ref": "pkg:npm/core-js-compat@3.19.1", + "dependsOn": [ + "pkg:npm/browserslist@4.20.4", + "pkg:npm/semver@7.0.0" + ] + }, + { + "ref": "pkg:npm/core-js-pure@3.18.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/core-util-is@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/cosmiconfig@6.0.0", + "dependsOn": [ + "pkg:npm/@types/parse-json@4.0.0", + "pkg:npm/import-fresh@3.3.0", + "pkg:npm/parse-json@5.2.0", + "pkg:npm/path-type@4.0.0", + "pkg:npm/yaml@1.10.2" + ] + }, + { + "ref": "pkg:npm/cosmiconfig@8.2.0", + "dependsOn": [ + "pkg:npm/import-fresh@3.3.0", + "pkg:npm/js-yaml@4.1.0", + "pkg:npm/parse-json@5.2.0", + "pkg:npm/path-type@4.0.0" + ] + }, + { + "ref": "pkg:npm/cross-fetch@3.1.5", + "dependsOn": [ + "pkg:npm/node-fetch@2.6.7" + ] + }, + { + "ref": "pkg:npm/cross-spawn@7.0.3", + "dependsOn": [ + "pkg:npm/path-key@3.1.1", + "pkg:npm/shebang-command@2.0.0", + "pkg:npm/which@2.0.2" + ] + }, + { + "ref": "pkg:npm/css-box-model@1.2.1", + "dependsOn": [ + "pkg:npm/tiny-invariant@1.2.0" + ] + }, + { + "ref": "pkg:npm/css-declaration-sorter@6.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/css-functions-list@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/css-loader@5.2.7", + "dependsOn": [ + "pkg:npm/icss-utils@5.1.0", + "pkg:npm/loader-utils@2.0.4", + "pkg:npm/postcss-modules-extract-imports@3.0.0", + "pkg:npm/postcss-modules-local-by-default@4.0.0", + "pkg:npm/postcss-modules-scope@3.0.0", + "pkg:npm/postcss-modules-values@4.0.0", + "pkg:npm/postcss-value-parser@4.2.0", + "pkg:npm/postcss@8.4.31", + "pkg:npm/schema-utils@3.1.1", + "pkg:npm/semver@7.5.4" + ] + }, + { + "ref": "pkg:npm/css-minimizer-webpack-plugin@4.0.0", + "dependsOn": [ + "pkg:npm/cssnano@5.1.11", + "pkg:npm/jest-worker@27.5.1", + "pkg:npm/postcss@8.4.31", + "pkg:npm/schema-utils@4.0.0", + "pkg:npm/serialize-javascript@6.0.0", + "pkg:npm/source-map@0.6.1" + ] + }, + { + "ref": "pkg:npm/css-select@4.3.0", + "dependsOn": [ + "pkg:npm/boolbase@1.0.0", + "pkg:npm/css-what@6.1.0", + "pkg:npm/domhandler@4.3.1", + "pkg:npm/domutils@2.8.0", + "pkg:npm/nth-check@2.1.1" + ] + }, + { + "ref": "pkg:npm/css-tree@1.1.3", + "dependsOn": [ + "pkg:npm/mdn-data@2.0.14", + "pkg:npm/source-map@0.6.1" + ] + }, + { + "ref": "pkg:npm/css-tree@2.3.1", + "dependsOn": [ + "pkg:npm/mdn-data@2.0.30", + "pkg:npm/source-map-js@1.0.2" + ] + }, + { + "ref": "pkg:npm/css-what@6.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/css.escape@1.5.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/css@3.0.0", + "dependsOn": [ + "pkg:npm/inherits@2.0.4", + "pkg:npm/source-map-resolve@0.6.0", + "pkg:npm/source-map@0.6.1" + ] + }, + { + "ref": "pkg:npm/cssesc@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/cssfontparser@1.2.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/cssnano-preset-default@5.2.11", + "dependsOn": [ + "pkg:npm/css-declaration-sorter@6.3.0", + "pkg:npm/cssnano-utils@3.1.0", + "pkg:npm/postcss-calc@8.2.4", + "pkg:npm/postcss-colormin@5.3.0", + "pkg:npm/postcss-convert-values@5.1.2", + "pkg:npm/postcss-discard-comments@5.1.2", + "pkg:npm/postcss-discard-duplicates@5.1.0", + "pkg:npm/postcss-discard-empty@5.1.1", + "pkg:npm/postcss-discard-overridden@5.1.0", + "pkg:npm/postcss-merge-longhand@5.1.5", + "pkg:npm/postcss-merge-rules@5.1.2", + "pkg:npm/postcss-minify-font-values@5.1.0", + "pkg:npm/postcss-minify-gradients@5.1.1", + "pkg:npm/postcss-minify-params@5.1.3", + "pkg:npm/postcss-minify-selectors@5.2.1", + "pkg:npm/postcss-normalize-charset@5.1.0", + "pkg:npm/postcss-normalize-display-values@5.1.0", + "pkg:npm/postcss-normalize-positions@5.1.0", + "pkg:npm/postcss-normalize-repeat-style@5.1.0", + "pkg:npm/postcss-normalize-string@5.1.0", + "pkg:npm/postcss-normalize-timing-functions@5.1.0", + "pkg:npm/postcss-normalize-unicode@5.1.0", + "pkg:npm/postcss-normalize-url@5.1.0", + "pkg:npm/postcss-normalize-whitespace@5.1.1", + "pkg:npm/postcss-ordered-values@5.1.2", + "pkg:npm/postcss-reduce-initial@5.1.0", + "pkg:npm/postcss-reduce-transforms@5.1.0", + "pkg:npm/postcss-svgo@5.1.0", + "pkg:npm/postcss-unique-selectors@5.1.1" + ] + }, + { + "ref": "pkg:npm/cssnano-utils@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/cssnano@5.1.11", + "dependsOn": [ + "pkg:npm/cssnano-preset-default@5.2.11", + "pkg:npm/lilconfig@2.0.5", + "pkg:npm/yaml@1.10.2" + ] + }, + { + "ref": "pkg:npm/csso@4.2.0", + "dependsOn": [ + "pkg:npm/css-tree@1.1.3" + ] + }, + { + "ref": "pkg:npm/cssom@0.4.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/cssom@0.3.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/cssstyle@2.3.0", + "dependsOn": [ + "pkg:npm/cssom@0.3.8" + ] + }, + { + "ref": "pkg:npm/csstype@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/csstype@3.0.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-array@1.2.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-array@2.12.1", + "dependsOn": [ + "pkg:npm/internmap@1.0.1" + ] + }, + { + "ref": "pkg:npm/d3-axis@1.0.12", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-brush@1.1.6", + "dependsOn": [ + "pkg:npm/d3-dispatch@1.0.6", + "pkg:npm/d3-drag@1.2.5", + "pkg:npm/d3-interpolate@1.4.0", + "pkg:npm/d3-selection@1.4.2", + "pkg:npm/d3-transition@1.3.2" + ] + }, + { + "ref": "pkg:npm/d3-chord@1.0.6", + "dependsOn": [ + "pkg:npm/d3-array@1.2.4", + "pkg:npm/d3-path@1.0.9" + ] + }, + { + "ref": "pkg:npm/d3-collection@1.0.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-color@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-contour@1.3.2", + "dependsOn": [ + "pkg:npm/d3-array@1.2.4" + ] + }, + { + "ref": "pkg:npm/d3-dispatch@1.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-dispatch@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-drag@1.2.5", + "dependsOn": [ + "pkg:npm/d3-dispatch@1.0.6", + "pkg:npm/d3-selection@1.4.2" + ] + }, + { + "ref": "pkg:npm/d3-drag@3.0.0", + "dependsOn": [ + "pkg:npm/d3-selection@3.0.0" + ] + }, + { + "ref": "pkg:npm/d3-dsv@1.2.0", + "dependsOn": [ + "pkg:npm/commander@2.20.3", + "pkg:npm/iconv-lite@0.4.24", + "pkg:npm/rw@1.3.3" + ] + }, + { + "ref": "pkg:npm/d3-ease@1.0.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-ease@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-fetch@1.2.0", + "dependsOn": [ + "pkg:npm/d3-dsv@1.2.0" + ] + }, + { + "ref": "pkg:npm/d3-force@1.2.1", + "dependsOn": [ + "pkg:npm/d3-collection@1.0.7", + "pkg:npm/d3-dispatch@1.0.6", + "pkg:npm/d3-quadtree@1.0.7", + "pkg:npm/d3-timer@1.0.10" + ] + }, + { + "ref": "pkg:npm/d3-format@1.4.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-format@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-geo@1.12.1", + "dependsOn": [ + "pkg:npm/d3-array@1.2.4" + ] + }, + { + "ref": "pkg:npm/d3-hierarchy@1.1.9", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-interpolate@1.4.0", + "dependsOn": [ + "pkg:npm/d3-color@3.1.0" + ] + }, + { + "ref": "pkg:npm/d3-interpolate@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-interpolate@2.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-path@1.0.9", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-path@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-polygon@1.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-quadtree@1.0.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-random@1.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-scale-chromatic@1.5.0", + "dependsOn": [ + "pkg:npm/d3-color@3.1.0", + "pkg:npm/d3-interpolate@1.4.0" + ] + }, + { + "ref": "pkg:npm/d3-scale@2.2.2", + "dependsOn": [ + "pkg:npm/d3-array@1.2.4", + "pkg:npm/d3-collection@1.0.7", + "pkg:npm/d3-format@1.4.5", + "pkg:npm/d3-interpolate@1.4.0", + "pkg:npm/d3-time-format@2.3.0", + "pkg:npm/d3-time@1.1.0" + ] + }, + { + "ref": "pkg:npm/d3-scale@3.3.0", + "dependsOn": [ + "pkg:npm/d3-array@2.12.1", + "pkg:npm/d3-time@2.1.1" + ] + }, + { + "ref": "pkg:npm/d3-selection@1.4.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-selection@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-shape@1.3.7", + "dependsOn": [ + "pkg:npm/d3-path@1.0.9" + ] + }, + { + "ref": "pkg:npm/d3-shape@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-time-format@2.3.0", + "dependsOn": [ + "pkg:npm/d3-time@1.1.0" + ] + }, + { + "ref": "pkg:npm/d3-time-format@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-time@1.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-time@2.1.1", + "dependsOn": [ + "pkg:npm/d3-array@2.12.1" + ] + }, + { + "ref": "pkg:npm/d3-timer@1.0.10", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-timer@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-tip@0.9.1", + "dependsOn": [ + "pkg:npm/d3-collection@1.0.7", + "pkg:npm/d3-selection@1.4.2" + ] + }, + { + "ref": "pkg:npm/d3-transition@1.3.2", + "dependsOn": [ + "pkg:npm/d3-color@3.1.0", + "pkg:npm/d3-dispatch@1.0.6", + "pkg:npm/d3-ease@1.0.7", + "pkg:npm/d3-interpolate@1.4.0", + "pkg:npm/d3-selection@1.4.2", + "pkg:npm/d3-timer@1.0.10" + ] + }, + { + "ref": "pkg:npm/d3-transition@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-voronoi@1.1.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3-zoom@1.8.3", + "dependsOn": [ + "pkg:npm/d3-dispatch@1.0.6", + "pkg:npm/d3-drag@1.2.5", + "pkg:npm/d3-interpolate@1.4.0", + "pkg:npm/d3-selection@1.4.2", + "pkg:npm/d3-transition@1.3.2" + ] + }, + { + "ref": "pkg:npm/d3-zoom@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3@3.5.17", + "dependsOn": [] + }, + { + "ref": "pkg:npm/d3@5.16.0", + "dependsOn": [ + "pkg:npm/d3-array@1.2.4", + "pkg:npm/d3-axis@1.0.12", + "pkg:npm/d3-brush@1.1.6", + "pkg:npm/d3-chord@1.0.6", + "pkg:npm/d3-collection@1.0.7", + "pkg:npm/d3-color@3.1.0", + "pkg:npm/d3-contour@1.3.2", + "pkg:npm/d3-dispatch@1.0.6", + "pkg:npm/d3-drag@1.2.5", + "pkg:npm/d3-dsv@1.2.0", + "pkg:npm/d3-ease@1.0.7", + "pkg:npm/d3-fetch@1.2.0", + "pkg:npm/d3-force@1.2.1", + "pkg:npm/d3-format@1.4.5", + "pkg:npm/d3-geo@1.12.1", + "pkg:npm/d3-hierarchy@1.1.9", + "pkg:npm/d3-interpolate@1.4.0", + "pkg:npm/d3-path@1.0.9", + "pkg:npm/d3-polygon@1.0.6", + "pkg:npm/d3-quadtree@1.0.7", + "pkg:npm/d3-random@1.1.2", + "pkg:npm/d3-scale-chromatic@1.5.0", + "pkg:npm/d3-scale@2.2.2", + "pkg:npm/d3-selection@1.4.2", + "pkg:npm/d3-shape@1.3.7", + "pkg:npm/d3-time-format@2.3.0", + "pkg:npm/d3-time@1.1.0", + "pkg:npm/d3-timer@1.0.10", + "pkg:npm/d3-transition@1.3.2", + "pkg:npm/d3-voronoi@1.1.4", + "pkg:npm/d3-zoom@1.8.3" + ] + }, + { + "ref": "pkg:npm/dagre-d3@0.6.4", + "dependsOn": [ + "pkg:npm/d3@5.16.0", + "pkg:npm/dagre@0.8.5", + "pkg:npm/graphlib@2.1.8", + "pkg:npm/lodash@4.17.21" + ] + }, + { + "ref": "pkg:npm/dagre@0.8.5", + "dependsOn": [ + "pkg:npm/graphlib@2.1.8", + "pkg:npm/lodash@4.17.21" + ] + }, + { + "ref": "pkg:npm/damerau-levenshtein@1.0.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/data-urls@2.0.0", + "dependsOn": [ + "pkg:npm/abab@2.0.5", + "pkg:npm/whatwg-mimetype@2.3.0", + "pkg:npm/whatwg-url@8.7.0" + ] + }, + { + "ref": "pkg:npm/datatables.net-bs@1.11.4", + "dependsOn": [ + "pkg:npm/datatables.net@1.11.4", + "pkg:npm/jquery@3.6.0" + ] + }, + { + "ref": "pkg:npm/datatables.net@1.11.4", + "dependsOn": [ + "pkg:npm/jquery@3.6.0" + ] + }, + { + "ref": "pkg:npm/date-now@0.1.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/debug@4.3.4", + "dependsOn": [ + "pkg:npm/ms@2.1.2" + ] + }, + { + "ref": "pkg:npm/debug@3.2.7", + "dependsOn": [ + "pkg:npm/ms@2.1.3" + ] + }, + { + "ref": "pkg:npm/decamelize-keys@1.1.0", + "dependsOn": [ + "pkg:npm/decamelize@1.2.0", + "pkg:npm/map-obj@1.0.1" + ] + }, + { + "ref": "pkg:npm/decamelize@1.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/decamelize@5.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/decimal.js@10.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/decko@1.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/decode-named-character-reference@1.0.2", + "dependsOn": [ + "pkg:npm/character-entities@2.0.2" + ] + }, + { + "ref": "pkg:npm/decode-uri-component@0.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/dedent@0.7.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/deep-is@0.1.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/deepmerge@4.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/define-properties@1.1.3", + "dependsOn": [ + "pkg:npm/object-keys@1.1.1" + ] + }, + { + "ref": "pkg:npm/define-properties@1.1.4", + "dependsOn": [ + "pkg:npm/has-property-descriptors@1.0.0", + "pkg:npm/object-keys@1.1.1" + ] + }, + { + "ref": "pkg:npm/del@4.1.1", + "dependsOn": [ + "pkg:npm/@types/glob@7.1.3", + "pkg:npm/globby@6.1.0", + "pkg:npm/is-path-cwd@2.2.0", + "pkg:npm/is-path-in-cwd@2.1.0", + "pkg:npm/p-map@2.1.0", + "pkg:npm/pify@4.0.1", + "pkg:npm/rimraf@2.7.1" + ] + }, + { + "ref": "pkg:npm/delayed-stream@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/dequal@2.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/detect-newline@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/detect-node-es@1.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/detect-node@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/diff-sequences@27.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/diff-sequences@27.5.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/diff@5.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/dir-glob@3.0.1", + "dependsOn": [ + "pkg:npm/path-type@4.0.0" + ] + }, + { + "ref": "pkg:npm/doctrine@2.1.0", + "dependsOn": [ + "pkg:npm/esutils@2.0.3" + ] + }, + { + "ref": "pkg:npm/doctrine@3.0.0", + "dependsOn": [ + "pkg:npm/esutils@2.0.3" + ] + }, + { + "ref": "pkg:npm/dom-accessibility-api@0.5.10", + "dependsOn": [] + }, + { + "ref": "pkg:npm/dom-helpers@5.2.1", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.18.3", + "pkg:npm/csstype@3.0.8" + ] + }, + { + "ref": "pkg:npm/dom-serializer@0.2.2", + "dependsOn": [ + "pkg:npm/domelementtype@2.2.0", + "pkg:npm/entities@2.2.0" + ] + }, + { + "ref": "pkg:npm/dom-serializer@1.3.2", + "dependsOn": [ + "pkg:npm/domelementtype@2.2.0", + "pkg:npm/domhandler@4.2.0", + "pkg:npm/entities@2.2.0" + ] + }, + { + "ref": "pkg:npm/domelementtype@1.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/domelementtype@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/domexception@2.0.1", + "dependsOn": [ + "pkg:npm/webidl-conversions@5.0.0" + ] + }, + { + "ref": "pkg:npm/domhandler@2.3.0", + "dependsOn": [ + "pkg:npm/domelementtype@1.3.1" + ] + }, + { + "ref": "pkg:npm/domhandler@4.2.0", + "dependsOn": [ + "pkg:npm/domelementtype@2.2.0" + ] + }, + { + "ref": "pkg:npm/domhandler@4.3.1", + "dependsOn": [ + "pkg:npm/domelementtype@2.2.0" + ] + }, + { + "ref": "pkg:npm/dompurify@2.2.9", + "dependsOn": [] + }, + { + "ref": "pkg:npm/domutils@1.5.1", + "dependsOn": [ + "pkg:npm/dom-serializer@0.2.2", + "pkg:npm/domelementtype@1.3.1" + ] + }, + { + "ref": "pkg:npm/domutils@2.7.0", + "dependsOn": [ + "pkg:npm/dom-serializer@1.3.2", + "pkg:npm/domelementtype@2.2.0", + "pkg:npm/domhandler@4.2.0" + ] + }, + { + "ref": "pkg:npm/domutils@2.8.0", + "dependsOn": [ + "pkg:npm/dom-serializer@1.3.2", + "pkg:npm/domelementtype@2.2.0", + "pkg:npm/domhandler@4.2.0" + ] + }, + { + "ref": "pkg:npm/echarts@5.4.2", + "dependsOn": [ + "pkg:npm/tslib@2.3.0", + "pkg:npm/zrender@5.4.3" + ] + }, + { + "ref": "pkg:npm/electron-to-chromium@1.4.156", + "dependsOn": [] + }, + { + "ref": "pkg:npm/elkjs@0.7.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/emittery@0.8.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/emoji-regex@8.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/emoji-regex@9.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/emojis-list@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/enhanced-resolve@5.12.0", + "dependsOn": [ + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/tapable@2.2.1" + ] + }, + { + "ref": "pkg:npm/entities@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/entities@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/envinfo@7.8.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/eonasdan-bootstrap-datetimepicker@4.17.49", + "dependsOn": [ + "pkg:npm/bootstrap@3.4.1", + "pkg:npm/jquery@3.6.0", + "pkg:npm/moment-timezone@0.4.1", + "pkg:npm/moment@2.29.4" + ] + }, + { + "ref": "pkg:npm/error-ex@1.3.2", + "dependsOn": [ + "pkg:npm/is-arrayish@0.2.1" + ] + }, + { + "ref": "pkg:npm/es-abstract@1.18.3", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/es-to-primitive@1.2.1", + "pkg:npm/function-bind@1.1.1", + "pkg:npm/get-intrinsic@1.1.1", + "pkg:npm/has-symbols@1.0.2", + "pkg:npm/has@1.0.3", + "pkg:npm/is-callable@1.2.3", + "pkg:npm/is-negative-zero@2.0.1", + "pkg:npm/is-regex@1.1.3", + "pkg:npm/is-string@1.0.6", + "pkg:npm/object-inspect@1.10.3", + "pkg:npm/object-keys@1.1.1", + "pkg:npm/object.assign@4.1.2", + "pkg:npm/string.prototype.trimend@1.0.4", + "pkg:npm/string.prototype.trimstart@1.0.4", + "pkg:npm/unbox-primitive@1.0.1" + ] + }, + { + "ref": "pkg:npm/es-abstract@1.20.1", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/es-to-primitive@1.2.1", + "pkg:npm/function-bind@1.1.1", + "pkg:npm/function.prototype.name@1.1.5", + "pkg:npm/get-intrinsic@1.1.1", + "pkg:npm/get-symbol-description@1.0.0", + "pkg:npm/has-property-descriptors@1.0.0", + "pkg:npm/has-symbols@1.0.3", + "pkg:npm/has@1.0.3", + "pkg:npm/internal-slot@1.0.3", + "pkg:npm/is-callable@1.2.4", + "pkg:npm/is-negative-zero@2.0.2", + "pkg:npm/is-regex@1.1.4", + "pkg:npm/is-shared-array-buffer@1.0.2", + "pkg:npm/is-string@1.0.7", + "pkg:npm/is-weakref@1.0.2", + "pkg:npm/object-inspect@1.12.2", + "pkg:npm/object-keys@1.1.1", + "pkg:npm/object.assign@4.1.2", + "pkg:npm/regexp.prototype.flags@1.4.3", + "pkg:npm/string.prototype.trimend@1.0.5", + "pkg:npm/string.prototype.trimstart@1.0.5", + "pkg:npm/unbox-primitive@1.0.2" + ] + }, + { + "ref": "pkg:npm/es-abstract@1.21.2", + "dependsOn": [ + "pkg:npm/array-buffer-byte-length@1.0.0", + "pkg:npm/available-typed-arrays@1.0.5", + "pkg:npm/call-bind@1.0.2", + "pkg:npm/es-set-tostringtag@2.0.1", + "pkg:npm/es-to-primitive@1.2.1", + "pkg:npm/function.prototype.name@1.1.5", + "pkg:npm/get-intrinsic@1.2.0", + "pkg:npm/get-symbol-description@1.0.0", + "pkg:npm/globalthis@1.0.3", + "pkg:npm/gopd@1.0.1", + "pkg:npm/has-property-descriptors@1.0.0", + "pkg:npm/has-proto@1.0.1", + "pkg:npm/has-symbols@1.0.3", + "pkg:npm/has@1.0.3", + "pkg:npm/internal-slot@1.0.5", + "pkg:npm/is-array-buffer@3.0.2", + "pkg:npm/is-callable@1.2.7", + "pkg:npm/is-negative-zero@2.0.2", + "pkg:npm/is-regex@1.1.4", + "pkg:npm/is-shared-array-buffer@1.0.2", + "pkg:npm/is-string@1.0.7", + "pkg:npm/is-typed-array@1.1.10", + "pkg:npm/is-weakref@1.0.2", + "pkg:npm/object-inspect@1.12.3", + "pkg:npm/object-keys@1.1.1", + "pkg:npm/object.assign@4.1.4", + "pkg:npm/regexp.prototype.flags@1.4.3", + "pkg:npm/safe-regex-test@1.0.0", + "pkg:npm/string.prototype.trim@1.2.7", + "pkg:npm/string.prototype.trimend@1.0.6", + "pkg:npm/string.prototype.trimstart@1.0.6", + "pkg:npm/typed-array-length@1.0.4", + "pkg:npm/unbox-primitive@1.0.2", + "pkg:npm/which-typed-array@1.1.9" + ] + }, + { + "ref": "pkg:npm/es-module-lexer@0.9.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/es-set-tostringtag@2.0.1", + "dependsOn": [ + "pkg:npm/get-intrinsic@1.2.0", + "pkg:npm/has-tostringtag@1.0.0", + "pkg:npm/has@1.0.3" + ] + }, + { + "ref": "pkg:npm/es-shim-unscopables@1.0.0", + "dependsOn": [ + "pkg:npm/has@1.0.3" + ] + }, + { + "ref": "pkg:npm/es-to-primitive@1.2.1", + "dependsOn": [ + "pkg:npm/is-callable@1.2.3", + "pkg:npm/is-date-object@1.0.4", + "pkg:npm/is-symbol@1.0.4" + ] + }, + { + "ref": "pkg:npm/es6-promise@3.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/escalade@3.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/escape-string-regexp@1.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/escape-string-regexp@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/escape-string-regexp@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/escape-string-regexp@5.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/escodegen@2.0.0", + "dependsOn": [ + "pkg:npm/esprima@4.0.1", + "pkg:npm/estraverse@5.2.0", + "pkg:npm/esutils@2.0.3", + "pkg:npm/optionator@0.8.3" + ] + }, + { + "ref": "pkg:npm/eslint-config-airbnb-base@15.0.0", + "dependsOn": [ + "pkg:npm/confusing-browser-globals@1.0.10", + "pkg:npm/object.assign@4.1.2", + "pkg:npm/object.entries@1.1.5", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/eslint-config-airbnb-typescript@17.0.0", + "dependsOn": [ + "pkg:npm/eslint-config-airbnb-base@15.0.0" + ] + }, + { + "ref": "pkg:npm/eslint-config-airbnb@19.0.4", + "dependsOn": [ + "pkg:npm/eslint-config-airbnb-base@15.0.0", + "pkg:npm/object.assign@4.1.2", + "pkg:npm/object.entries@1.1.5" + ] + }, + { + "ref": "pkg:npm/eslint-config-prettier@8.6.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/eslint-import-resolver-node@0.3.7", + "dependsOn": [ + "pkg:npm/debug@3.2.7", + "pkg:npm/is-core-module@2.11.0", + "pkg:npm/resolve@1.22.2" + ] + }, + { + "ref": "pkg:npm/eslint-module-utils@2.7.4", + "dependsOn": [ + "pkg:npm/debug@3.2.7" + ] + }, + { + "ref": "pkg:npm/eslint-plugin-es@3.0.1", + "dependsOn": [ + "pkg:npm/eslint-utils@2.1.0", + "pkg:npm/regexpp@3.2.0" + ] + }, + { + "ref": "pkg:npm/eslint-plugin-html@6.1.2", + "dependsOn": [ + "pkg:npm/htmlparser2@6.1.0" + ] + }, + { + "ref": "pkg:npm/eslint-plugin-import@2.27.5", + "dependsOn": [ + "pkg:npm/array-includes@3.1.6", + "pkg:npm/array.prototype.flat@1.3.1", + "pkg:npm/array.prototype.flatmap@1.3.1", + "pkg:npm/debug@3.2.7", + "pkg:npm/doctrine@2.1.0", + "pkg:npm/eslint-import-resolver-node@0.3.7", + "pkg:npm/eslint-module-utils@2.7.4", + "pkg:npm/has@1.0.3", + "pkg:npm/is-core-module@2.11.0", + "pkg:npm/is-glob@4.0.3", + "pkg:npm/minimatch@3.1.2", + "pkg:npm/object.values@1.1.6", + "pkg:npm/resolve@1.22.2", + "pkg:npm/semver@6.3.1", + "pkg:npm/tsconfig-paths@3.14.2" + ] + }, + { + "ref": "pkg:npm/eslint-plugin-jsx-a11y@6.5.1", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.18.3", + "pkg:npm/aria-query@4.2.2", + "pkg:npm/array-includes@3.1.5", + "pkg:npm/ast-types-flow@0.0.7", + "pkg:npm/axe-core@4.4.2", + "pkg:npm/axobject-query@2.2.0", + "pkg:npm/damerau-levenshtein@1.0.8", + "pkg:npm/emoji-regex@9.2.2", + "pkg:npm/has@1.0.3", + "pkg:npm/jsx-ast-utils@3.3.0", + "pkg:npm/language-tags@1.0.5", + "pkg:npm/minimatch@3.1.2" + ] + }, + { + "ref": "pkg:npm/eslint-plugin-node@11.1.0", + "dependsOn": [ + "pkg:npm/eslint-plugin-es@3.0.1", + "pkg:npm/eslint-utils@2.1.0", + "pkg:npm/ignore@5.2.4", + "pkg:npm/minimatch@3.1.2", + "pkg:npm/resolve@1.20.0", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/eslint-plugin-promise@4.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/eslint-plugin-react-hooks@4.6.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/eslint-plugin-react@7.30.0", + "dependsOn": [ + "pkg:npm/array-includes@3.1.5", + "pkg:npm/array.prototype.flatmap@1.3.0", + "pkg:npm/doctrine@2.1.0", + "pkg:npm/estraverse@5.3.0", + "pkg:npm/minimatch@3.1.2", + "pkg:npm/object.entries@1.1.5", + "pkg:npm/object.fromentries@2.0.5", + "pkg:npm/object.hasown@1.1.1", + "pkg:npm/object.values@1.1.5", + "pkg:npm/prop-types@15.8.1", + "pkg:npm/resolve@2.0.0-next.3", + "pkg:npm/semver@6.3.1", + "pkg:npm/string.prototype.matchall@4.0.7" + ] + }, + { + "ref": "pkg:npm/eslint-plugin-standard@4.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/eslint-scope@5.1.1", + "dependsOn": [ + "pkg:npm/esrecurse@4.3.0", + "pkg:npm/estraverse@4.3.0" + ] + }, + { + "ref": "pkg:npm/eslint-scope@7.1.1", + "dependsOn": [ + "pkg:npm/esrecurse@4.3.0", + "pkg:npm/estraverse@5.2.0" + ] + }, + { + "ref": "pkg:npm/eslint-utils@2.1.0", + "dependsOn": [ + "pkg:npm/eslint-visitor-keys@1.3.0" + ] + }, + { + "ref": "pkg:npm/eslint-utils@3.0.0", + "dependsOn": [ + "pkg:npm/eslint-visitor-keys@2.1.0" + ] + }, + { + "ref": "pkg:npm/eslint-visitor-keys@1.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/eslint-visitor-keys@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/eslint-visitor-keys@3.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/eslint@8.17.0", + "dependsOn": [ + "pkg:npm/@eslint/eslintrc@1.3.0", + "pkg:npm/@humanwhocodes/config-array@0.9.5", + "pkg:npm/ajv@6.12.6", + "pkg:npm/chalk@4.1.1", + "pkg:npm/cross-spawn@7.0.3", + "pkg:npm/debug@4.3.4", + "pkg:npm/doctrine@3.0.0", + "pkg:npm/escape-string-regexp@4.0.0", + "pkg:npm/eslint-scope@7.1.1", + "pkg:npm/eslint-utils@3.0.0", + "pkg:npm/eslint-visitor-keys@3.3.0", + "pkg:npm/espree@9.3.2", + "pkg:npm/esquery@1.4.0", + "pkg:npm/esutils@2.0.3", + "pkg:npm/fast-deep-equal@3.1.3", + "pkg:npm/file-entry-cache@6.0.1", + "pkg:npm/functional-red-black-tree@1.0.1", + "pkg:npm/glob-parent@6.0.2", + "pkg:npm/globals@13.15.0", + "pkg:npm/ignore@5.2.4", + "pkg:npm/import-fresh@3.3.0", + "pkg:npm/imurmurhash@0.1.4", + "pkg:npm/is-glob@4.0.1", + "pkg:npm/js-yaml@4.1.0", + "pkg:npm/json-stable-stringify-without-jsonify@1.0.1", + "pkg:npm/levn@0.4.1", + "pkg:npm/lodash.merge@4.6.2", + "pkg:npm/minimatch@3.1.2", + "pkg:npm/natural-compare@1.4.0", + "pkg:npm/optionator@0.9.1", + "pkg:npm/regexpp@3.2.0", + "pkg:npm/strip-ansi@6.0.1", + "pkg:npm/strip-json-comments@3.1.1", + "pkg:npm/text-table@0.2.0", + "pkg:npm/v8-compile-cache@2.3.0" + ] + }, + { + "ref": "pkg:npm/espree@9.3.2", + "dependsOn": [ + "pkg:npm/acorn-jsx@5.3.2", + "pkg:npm/acorn@8.7.1", + "pkg:npm/eslint-visitor-keys@3.3.0" + ] + }, + { + "ref": "pkg:npm/esprima@4.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/esquery@1.4.0", + "dependsOn": [ + "pkg:npm/estraverse@5.3.0" + ] + }, + { + "ref": "pkg:npm/esrecurse@4.3.0", + "dependsOn": [ + "pkg:npm/estraverse@5.2.0" + ] + }, + { + "ref": "pkg:npm/estraverse@4.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/estraverse@5.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/estraverse@5.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/esutils@2.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/eventemitter3@4.0.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/events@3.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/execa@5.1.1", + "dependsOn": [ + "pkg:npm/cross-spawn@7.0.3", + "pkg:npm/get-stream@6.0.1", + "pkg:npm/human-signals@2.1.0", + "pkg:npm/is-stream@2.0.1", + "pkg:npm/merge-stream@2.0.0", + "pkg:npm/npm-run-path@4.0.1", + "pkg:npm/onetime@5.1.2", + "pkg:npm/signal-exit@3.0.5", + "pkg:npm/strip-final-newline@2.0.0" + ] + }, + { + "ref": "pkg:npm/exit@0.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/expect@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/jest-get-type@27.5.1", + "pkg:npm/jest-matcher-utils@27.5.1", + "pkg:npm/jest-message-util@27.5.1" + ] + }, + { + "ref": "pkg:npm/extend@3.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/fast-deep-equal@3.1.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/fast-glob@3.3.0", + "dependsOn": [ + "pkg:npm/@nodelib/fs.stat@2.0.5", + "pkg:npm/@nodelib/fs.walk@1.2.7", + "pkg:npm/glob-parent@5.1.2", + "pkg:npm/merge2@1.4.1", + "pkg:npm/micromatch@4.0.5" + ] + }, + { + "ref": "pkg:npm/fast-json-stable-stringify@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/fast-levenshtein@2.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/fast-safe-stringify@2.0.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/fastest-levenshtein@1.0.16", + "dependsOn": [] + }, + { + "ref": "pkg:npm/fastq@1.11.0", + "dependsOn": [ + "pkg:npm/reusify@1.0.4" + ] + }, + { + "ref": "pkg:npm/fault@1.0.4", + "dependsOn": [ + "pkg:npm/format@0.2.2" + ] + }, + { + "ref": "pkg:npm/fb-watchman@2.0.1", + "dependsOn": [ + "pkg:npm/bser@2.1.1" + ] + }, + { + "ref": "pkg:npm/fbemitter@3.0.0", + "dependsOn": [ + "pkg:npm/fbjs@3.0.4" + ] + }, + { + "ref": "pkg:npm/fbjs-css-vars@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/fbjs@3.0.4", + "dependsOn": [ + "pkg:npm/cross-fetch@3.1.5", + "pkg:npm/fbjs-css-vars@1.0.2", + "pkg:npm/loose-envify@1.4.0", + "pkg:npm/object-assign@4.1.1", + "pkg:npm/promise@7.3.1", + "pkg:npm/setimmediate@1.0.5", + "pkg:npm/ua-parser-js@0.7.33" + ] + }, + { + "ref": "pkg:npm/file-entry-cache@6.0.1", + "dependsOn": [ + "pkg:npm/flat-cache@3.0.4" + ] + }, + { + "ref": "pkg:npm/file-loader@6.2.0", + "dependsOn": [ + "pkg:npm/loader-utils@2.0.4", + "pkg:npm/schema-utils@3.1.1" + ] + }, + { + "ref": "pkg:npm/fill-range@7.0.1", + "dependsOn": [ + "pkg:npm/to-regex-range@5.0.1" + ] + }, + { + "ref": "pkg:npm/find-cache-dir@3.3.1", + "dependsOn": [ + "pkg:npm/commondir@1.0.1", + "pkg:npm/make-dir@3.1.0", + "pkg:npm/pkg-dir@4.2.0" + ] + }, + { + "ref": "pkg:npm/find-cache-dir@3.3.2", + "dependsOn": [ + "pkg:npm/commondir@1.0.1", + "pkg:npm/make-dir@3.1.0", + "pkg:npm/pkg-dir@4.2.0" + ] + }, + { + "ref": "pkg:npm/find-root@1.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/find-up@4.1.0", + "dependsOn": [ + "pkg:npm/locate-path@5.0.0", + "pkg:npm/path-exists@4.0.0" + ] + }, + { + "ref": "pkg:npm/find-up@5.0.0", + "dependsOn": [ + "pkg:npm/locate-path@6.0.0", + "pkg:npm/path-exists@4.0.0" + ] + }, + { + "ref": "pkg:npm/flat-cache@3.0.4", + "dependsOn": [ + "pkg:npm/flatted@3.1.1", + "pkg:npm/rimraf@3.0.2" + ] + }, + { + "ref": "pkg:npm/flatted@3.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/flux@4.0.3", + "dependsOn": [ + "pkg:npm/fbemitter@3.0.0", + "pkg:npm/fbjs@3.0.4" + ] + }, + { + "ref": "pkg:npm/focus-lock@0.11.6", + "dependsOn": [ + "pkg:npm/tslib@2.3.1" + ] + }, + { + "ref": "pkg:npm/follow-redirects@1.15.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/for-each@0.3.3", + "dependsOn": [ + "pkg:npm/is-callable@1.2.7" + ] + }, + { + "ref": "pkg:npm/foreach@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/form-data@3.0.1", + "dependsOn": [ + "pkg:npm/asynckit@0.4.0", + "pkg:npm/combined-stream@1.0.8", + "pkg:npm/mime-types@2.1.35" + ] + }, + { + "ref": "pkg:npm/form-data@4.0.0", + "dependsOn": [ + "pkg:npm/asynckit@0.4.0", + "pkg:npm/combined-stream@1.0.8", + "pkg:npm/mime-types@2.1.35" + ] + }, + { + "ref": "pkg:npm/format@0.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/framer-motion@6.3.11", + "dependsOn": [ + "pkg:npm/framesync@6.0.1", + "pkg:npm/hey-listen@1.0.8", + "pkg:npm/popmotion@11.0.3", + "pkg:npm/style-value-types@5.0.0", + "pkg:npm/tslib@2.3.1" + ] + }, + { + "ref": "pkg:npm/framesync@5.3.0", + "dependsOn": [ + "pkg:npm/tslib@2.3.1" + ] + }, + { + "ref": "pkg:npm/framesync@6.0.1", + "dependsOn": [ + "pkg:npm/tslib@2.3.1" + ] + }, + { + "ref": "pkg:npm/fs-minipass@2.1.0", + "dependsOn": [ + "pkg:npm/minipass@3.1.3" + ] + }, + { + "ref": "pkg:npm/fs.realpath@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/fsevents@2.3.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/function-bind@1.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/function.prototype.name@1.1.5", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/es-abstract@1.20.1", + "pkg:npm/functions-have-names@1.2.3" + ] + }, + { + "ref": "pkg:npm/functional-red-black-tree@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/functions-have-names@1.2.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/gensync@1.0.0-beta.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/get-caller-file@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/get-intrinsic@1.1.1", + "dependsOn": [ + "pkg:npm/function-bind@1.1.1", + "pkg:npm/has-symbols@1.0.2", + "pkg:npm/has@1.0.3" + ] + }, + { + "ref": "pkg:npm/get-intrinsic@1.2.0", + "dependsOn": [ + "pkg:npm/function-bind@1.1.1", + "pkg:npm/has-symbols@1.0.3", + "pkg:npm/has@1.0.3" + ] + }, + { + "ref": "pkg:npm/get-nonce@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/get-npm-tarball-url@2.0.2", + "dependsOn": [ + "pkg:npm/normalize-registry-url@1.0.0" + ] + }, + { + "ref": "pkg:npm/get-package-type@0.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/get-stream@6.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/get-symbol-description@1.0.0", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/get-intrinsic@1.1.1" + ] + }, + { + "ref": "pkg:npm/glob-parent@5.1.2", + "dependsOn": [ + "pkg:npm/is-glob@4.0.3" + ] + }, + { + "ref": "pkg:npm/glob-parent@6.0.2", + "dependsOn": [ + "pkg:npm/is-glob@4.0.3" + ] + }, + { + "ref": "pkg:npm/glob-to-regexp@0.4.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/glob@7.1.7", + "dependsOn": [ + "pkg:npm/fs.realpath@1.0.0", + "pkg:npm/inflight@1.0.6", + "pkg:npm/inherits@2.0.4", + "pkg:npm/minimatch@3.1.2", + "pkg:npm/once@1.4.0", + "pkg:npm/path-is-absolute@1.0.1" + ] + }, + { + "ref": "pkg:npm/glob@7.2.0", + "dependsOn": [ + "pkg:npm/fs.realpath@1.0.0", + "pkg:npm/inflight@1.0.6", + "pkg:npm/inherits@2.0.4", + "pkg:npm/minimatch@3.1.2", + "pkg:npm/once@1.4.0", + "pkg:npm/path-is-absolute@1.0.1" + ] + }, + { + "ref": "pkg:npm/global-modules@2.0.0", + "dependsOn": [ + "pkg:npm/global-prefix@3.0.0" + ] + }, + { + "ref": "pkg:npm/global-prefix@3.0.0", + "dependsOn": [ + "pkg:npm/ini@1.3.8", + "pkg:npm/kind-of@6.0.3", + "pkg:npm/which@1.3.1" + ] + }, + { + "ref": "pkg:npm/globals@11.12.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/globals@13.15.0", + "dependsOn": [ + "pkg:npm/type-fest@0.20.2" + ] + }, + { + "ref": "pkg:npm/globalthis@1.0.3", + "dependsOn": [ + "pkg:npm/define-properties@1.1.3" + ] + }, + { + "ref": "pkg:npm/globalyzer@0.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/globby@11.1.0", + "dependsOn": [ + "pkg:npm/array-union@2.1.0", + "pkg:npm/dir-glob@3.0.1", + "pkg:npm/fast-glob@3.3.0", + "pkg:npm/ignore@5.2.4", + "pkg:npm/merge2@1.4.1", + "pkg:npm/slash@3.0.0" + ] + }, + { + "ref": "pkg:npm/globby@6.1.0", + "dependsOn": [ + "pkg:npm/array-union@1.0.2", + "pkg:npm/glob@7.1.7", + "pkg:npm/object-assign@4.1.1", + "pkg:npm/pify@2.3.0", + "pkg:npm/pinkie-promise@2.0.1" + ] + }, + { + "ref": "pkg:npm/globjoin@0.1.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/globrex@0.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/gopd@1.0.1", + "dependsOn": [ + "pkg:npm/get-intrinsic@1.2.0" + ] + }, + { + "ref": "pkg:npm/graceful-fs@4.2.9", + "dependsOn": [] + }, + { + "ref": "pkg:npm/graphlib@2.1.8", + "dependsOn": [ + "pkg:npm/lodash@4.17.21" + ] + }, + { + "ref": "pkg:npm/hard-rejection@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/has-bigints@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/has-bigints@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/has-flag@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/has-flag@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/has-property-descriptors@1.0.0", + "dependsOn": [ + "pkg:npm/get-intrinsic@1.1.1" + ] + }, + { + "ref": "pkg:npm/has-proto@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/has-symbols@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/has-symbols@1.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/has-tostringtag@1.0.0", + "dependsOn": [ + "pkg:npm/has-symbols@1.0.2" + ] + }, + { + "ref": "pkg:npm/has@1.0.3", + "dependsOn": [ + "pkg:npm/function-bind@1.1.1" + ] + }, + { + "ref": "pkg:npm/hast-util-parse-selector@2.2.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/hast-util-whitespace@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/hastscript@6.0.0", + "dependsOn": [ + "pkg:npm/@types/hast@2.3.4", + "pkg:npm/comma-separated-tokens@1.0.8", + "pkg:npm/hast-util-parse-selector@2.2.5", + "pkg:npm/property-information@5.6.0", + "pkg:npm/space-separated-tokens@1.1.5" + ] + }, + { + "ref": "pkg:npm/hey-listen@1.0.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/highlight.js@10.7.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/history@5.3.0", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.17.9" + ] + }, + { + "ref": "pkg:npm/hoist-non-react-statics@3.3.2", + "dependsOn": [ + "pkg:npm/react-is@16.13.1" + ] + }, + { + "ref": "pkg:npm/hosted-git-info@4.0.2", + "dependsOn": [ + "pkg:npm/lru-cache@6.0.0" + ] + }, + { + "ref": "pkg:npm/html-encoding-sniffer@2.0.1", + "dependsOn": [ + "pkg:npm/whatwg-encoding@1.0.5" + ] + }, + { + "ref": "pkg:npm/html-escaper@2.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/html-tags@3.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/htmlparser2@3.8.3", + "dependsOn": [ + "pkg:npm/domelementtype@1.3.1", + "pkg:npm/domhandler@2.3.0", + "pkg:npm/domutils@1.5.1", + "pkg:npm/entities@1.0.0", + "pkg:npm/readable-stream@1.1.13" + ] + }, + { + "ref": "pkg:npm/htmlparser2@6.1.0", + "dependsOn": [ + "pkg:npm/domelementtype@2.2.0", + "pkg:npm/domhandler@4.2.0", + "pkg:npm/domutils@2.7.0", + "pkg:npm/entities@2.2.0" + ] + }, + { + "ref": "pkg:npm/http-proxy-agent@4.0.1", + "dependsOn": [ + "pkg:npm/@tootallnate/once@1.1.2", + "pkg:npm/agent-base@6.0.2", + "pkg:npm/debug@4.3.4" + ] + }, + { + "ref": "pkg:npm/http2-client@1.3.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/https-proxy-agent@5.0.0", + "dependsOn": [ + "pkg:npm/agent-base@6.0.2", + "pkg:npm/debug@4.3.4" + ] + }, + { + "ref": "pkg:npm/human-signals@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/iconv-lite@0.4.24", + "dependsOn": [] + }, + { + "ref": "pkg:npm/icss-utils@5.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ignore@5.2.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/import-fresh@3.3.0", + "dependsOn": [ + "pkg:npm/parent-module@1.0.1", + "pkg:npm/resolve-from@4.0.0" + ] + }, + { + "ref": "pkg:npm/import-lazy@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/import-local@3.0.3", + "dependsOn": [ + "pkg:npm/pkg-dir@4.2.0", + "pkg:npm/resolve-cwd@3.0.0" + ] + }, + { + "ref": "pkg:npm/imports-loader@1.2.0", + "dependsOn": [ + "pkg:npm/loader-utils@2.0.4", + "pkg:npm/schema-utils@3.1.1", + "pkg:npm/source-map@0.6.1", + "pkg:npm/strip-comments@2.0.1" + ] + }, + { + "ref": "pkg:npm/imurmurhash@0.1.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/indent-string@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/indent-string@5.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/infer-owner@1.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/inflight@1.0.6", + "dependsOn": [ + "pkg:npm/once@1.4.0", + "pkg:npm/wrappy@1.0.2" + ] + }, + { + "ref": "pkg:npm/inherits@2.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ini@1.3.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/inline-style-parser@0.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/internal-slot@1.0.3", + "dependsOn": [ + "pkg:npm/get-intrinsic@1.1.1", + "pkg:npm/has@1.0.3", + "pkg:npm/side-channel@1.0.4" + ] + }, + { + "ref": "pkg:npm/internal-slot@1.0.5", + "dependsOn": [ + "pkg:npm/get-intrinsic@1.2.0", + "pkg:npm/has@1.0.3", + "pkg:npm/side-channel@1.0.4" + ] + }, + { + "ref": "pkg:npm/internmap@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/interpret@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/invariant@2.2.4", + "dependsOn": [ + "pkg:npm/loose-envify@1.4.0" + ] + }, + { + "ref": "pkg:npm/is-alphabetical@1.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-alphanumerical@1.0.4", + "dependsOn": [ + "pkg:npm/is-alphabetical@1.0.4", + "pkg:npm/is-decimal@1.0.4" + ] + }, + { + "ref": "pkg:npm/is-array-buffer@3.0.2", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/get-intrinsic@1.2.0", + "pkg:npm/is-typed-array@1.1.10" + ] + }, + { + "ref": "pkg:npm/is-arrayish@0.2.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-arrayish@0.3.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-bigint@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-boolean-object@1.1.1", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2" + ] + }, + { + "ref": "pkg:npm/is-buffer@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-callable@1.2.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-callable@1.2.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-callable@1.2.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-core-module@2.11.0", + "dependsOn": [ + "pkg:npm/has@1.0.3" + ] + }, + { + "ref": "pkg:npm/is-core-module@2.4.0", + "dependsOn": [ + "pkg:npm/has@1.0.3" + ] + }, + { + "ref": "pkg:npm/is-core-module@2.12.1", + "dependsOn": [ + "pkg:npm/has@1.0.3" + ] + }, + { + "ref": "pkg:npm/is-core-module@2.9.0", + "dependsOn": [ + "pkg:npm/has@1.0.3" + ] + }, + { + "ref": "pkg:npm/is-date-object@1.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-decimal@1.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-extglob@2.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-fullwidth-code-point@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-generator-fn@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-glob@4.0.1", + "dependsOn": [ + "pkg:npm/is-extglob@2.1.1" + ] + }, + { + "ref": "pkg:npm/is-glob@4.0.3", + "dependsOn": [ + "pkg:npm/is-extglob@2.1.1" + ] + }, + { + "ref": "pkg:npm/is-hexadecimal@1.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-negative-zero@2.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-negative-zero@2.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-number-object@1.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-number@7.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-path-cwd@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-path-in-cwd@2.1.0", + "dependsOn": [ + "pkg:npm/is-path-inside@2.1.0" + ] + }, + { + "ref": "pkg:npm/is-path-inside@2.1.0", + "dependsOn": [ + "pkg:npm/path-is-inside@1.0.2" + ] + }, + { + "ref": "pkg:npm/is-plain-obj@1.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-plain-obj@4.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-plain-object@2.0.4", + "dependsOn": [ + "pkg:npm/isobject@3.0.1" + ] + }, + { + "ref": "pkg:npm/is-plain-object@5.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-potential-custom-element-name@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-regex@1.1.3", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/has-symbols@1.0.2" + ] + }, + { + "ref": "pkg:npm/is-regex@1.1.4", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/has-tostringtag@1.0.0" + ] + }, + { + "ref": "pkg:npm/is-shared-array-buffer@1.0.2", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2" + ] + }, + { + "ref": "pkg:npm/is-stream@2.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-string@1.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-string@1.0.7", + "dependsOn": [ + "pkg:npm/has-tostringtag@1.0.0" + ] + }, + { + "ref": "pkg:npm/is-symbol@1.0.4", + "dependsOn": [ + "pkg:npm/has-symbols@1.0.2" + ] + }, + { + "ref": "pkg:npm/is-typed-array@1.1.10", + "dependsOn": [ + "pkg:npm/available-typed-arrays@1.0.5", + "pkg:npm/call-bind@1.0.2", + "pkg:npm/for-each@0.3.3", + "pkg:npm/gopd@1.0.1", + "pkg:npm/has-tostringtag@1.0.0" + ] + }, + { + "ref": "pkg:npm/is-typedarray@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/is-weakref@1.0.2", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2" + ] + }, + { + "ref": "pkg:npm/isarray@0.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/isexe@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/isobject@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/istanbul-lib-coverage@3.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/istanbul-lib-instrument@5.1.0", + "dependsOn": [ + "pkg:npm/@babel/core@7.16.0", + "pkg:npm/@babel/parser@7.16.2", + "pkg:npm/@istanbuljs/schema@0.1.3", + "pkg:npm/istanbul-lib-coverage@3.2.0", + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/istanbul-lib-report@3.0.0", + "dependsOn": [ + "pkg:npm/istanbul-lib-coverage@3.2.0", + "pkg:npm/make-dir@3.1.0", + "pkg:npm/supports-color@7.2.0" + ] + }, + { + "ref": "pkg:npm/istanbul-lib-source-maps@4.0.1", + "dependsOn": [ + "pkg:npm/debug@4.3.4", + "pkg:npm/istanbul-lib-coverage@3.2.0", + "pkg:npm/source-map@0.6.1" + ] + }, + { + "ref": "pkg:npm/istanbul-reports@3.1.4", + "dependsOn": [ + "pkg:npm/html-escaper@2.0.2", + "pkg:npm/istanbul-lib-report@3.0.0" + ] + }, + { + "ref": "pkg:npm/jest-canvas-mock@2.5.1", + "dependsOn": [ + "pkg:npm/cssfontparser@1.2.1", + "pkg:npm/moo-color@1.0.3" + ] + }, + { + "ref": "pkg:npm/jest-changed-files@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/execa@5.1.1", + "pkg:npm/throat@6.0.1" + ] + }, + { + "ref": "pkg:npm/jest-circus@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/environment@27.5.1", + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/chalk@4.1.1", + "pkg:npm/co@4.6.0", + "pkg:npm/dedent@0.7.0", + "pkg:npm/expect@27.5.1", + "pkg:npm/is-generator-fn@2.1.0", + "pkg:npm/jest-each@27.5.1", + "pkg:npm/jest-matcher-utils@27.5.1", + "pkg:npm/jest-message-util@27.5.1", + "pkg:npm/jest-runtime@27.5.1", + "pkg:npm/jest-snapshot@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/pretty-format@27.5.1", + "pkg:npm/slash@3.0.0", + "pkg:npm/stack-utils@2.0.5", + "pkg:npm/throat@6.0.1" + ] + }, + { + "ref": "pkg:npm/jest-cli@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/core@27.5.1", + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/exit@0.1.2", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/import-local@3.0.3", + "pkg:npm/jest-config@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/jest-validate@27.5.1", + "pkg:npm/prompts@2.4.2", + "pkg:npm/yargs@16.2.0" + ] + }, + { + "ref": "pkg:npm/jest-config@27.5.1", + "dependsOn": [ + "pkg:npm/@babel/core@7.17.2", + "pkg:npm/@jest/test-sequencer@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/babel-jest@27.5.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/ci-info@3.2.0", + "pkg:npm/deepmerge@4.2.2", + "pkg:npm/glob@7.1.7", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-circus@27.5.1", + "pkg:npm/jest-environment-jsdom@27.5.1", + "pkg:npm/jest-environment-node@27.5.1", + "pkg:npm/jest-get-type@27.5.1", + "pkg:npm/jest-jasmine2@27.5.1", + "pkg:npm/jest-regex-util@27.5.1", + "pkg:npm/jest-resolve@27.5.1", + "pkg:npm/jest-runner@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/jest-validate@27.5.1", + "pkg:npm/micromatch@4.0.5", + "pkg:npm/parse-json@5.2.0", + "pkg:npm/pretty-format@27.5.1", + "pkg:npm/slash@3.0.0", + "pkg:npm/strip-json-comments@3.1.1" + ] + }, + { + "ref": "pkg:npm/jest-diff@27.3.1", + "dependsOn": [ + "pkg:npm/chalk@4.1.1", + "pkg:npm/diff-sequences@27.0.6", + "pkg:npm/jest-get-type@27.3.1", + "pkg:npm/pretty-format@27.3.1" + ] + }, + { + "ref": "pkg:npm/jest-diff@27.5.1", + "dependsOn": [ + "pkg:npm/chalk@4.1.1", + "pkg:npm/diff-sequences@27.5.1", + "pkg:npm/jest-get-type@27.5.1", + "pkg:npm/pretty-format@27.5.1" + ] + }, + { + "ref": "pkg:npm/jest-docblock@27.5.1", + "dependsOn": [ + "pkg:npm/detect-newline@3.1.0" + ] + }, + { + "ref": "pkg:npm/jest-each@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/jest-get-type@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/pretty-format@27.5.1" + ] + }, + { + "ref": "pkg:npm/jest-environment-jsdom@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/environment@27.5.1", + "pkg:npm/@jest/fake-timers@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/jest-mock@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/jsdom@16.7.0" + ] + }, + { + "ref": "pkg:npm/jest-environment-node@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/environment@27.5.1", + "pkg:npm/@jest/fake-timers@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/jest-mock@27.5.1", + "pkg:npm/jest-util@27.5.1" + ] + }, + { + "ref": "pkg:npm/jest-get-type@27.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/jest-get-type@27.5.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/jest-haste-map@27.3.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.2.5", + "pkg:npm/@types/graceful-fs@4.1.5", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/anymatch@3.1.2", + "pkg:npm/fb-watchman@2.0.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-regex-util@27.0.6", + "pkg:npm/jest-serializer@27.0.6", + "pkg:npm/jest-util@27.3.1", + "pkg:npm/jest-worker@27.3.1", + "pkg:npm/micromatch@4.0.5", + "pkg:npm/walker@1.0.8" + ] + }, + { + "ref": "pkg:npm/jest-haste-map@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/graceful-fs@4.1.5", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/anymatch@3.1.2", + "pkg:npm/fb-watchman@2.0.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-regex-util@27.5.1", + "pkg:npm/jest-serializer@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/jest-worker@27.5.1", + "pkg:npm/micromatch@4.0.5", + "pkg:npm/walker@1.0.8" + ] + }, + { + "ref": "pkg:npm/jest-jasmine2@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/environment@27.5.1", + "pkg:npm/@jest/source-map@27.5.1", + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/chalk@4.1.1", + "pkg:npm/co@4.6.0", + "pkg:npm/expect@27.5.1", + "pkg:npm/is-generator-fn@2.1.0", + "pkg:npm/jest-each@27.5.1", + "pkg:npm/jest-matcher-utils@27.5.1", + "pkg:npm/jest-message-util@27.5.1", + "pkg:npm/jest-runtime@27.5.1", + "pkg:npm/jest-snapshot@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/pretty-format@27.5.1", + "pkg:npm/throat@6.0.1" + ] + }, + { + "ref": "pkg:npm/jest-leak-detector@27.5.1", + "dependsOn": [ + "pkg:npm/jest-get-type@27.5.1", + "pkg:npm/pretty-format@27.5.1" + ] + }, + { + "ref": "pkg:npm/jest-matcher-utils@27.5.1", + "dependsOn": [ + "pkg:npm/chalk@4.1.1", + "pkg:npm/jest-diff@27.5.1", + "pkg:npm/jest-get-type@27.5.1", + "pkg:npm/pretty-format@27.5.1" + ] + }, + { + "ref": "pkg:npm/jest-message-util@27.5.1", + "dependsOn": [ + "pkg:npm/@babel/code-frame@7.16.0", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/stack-utils@2.0.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/micromatch@4.0.5", + "pkg:npm/pretty-format@27.5.1", + "pkg:npm/slash@3.0.0", + "pkg:npm/stack-utils@2.0.5" + ] + }, + { + "ref": "pkg:npm/jest-mock@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2" + ] + }, + { + "ref": "pkg:npm/jest-pnp-resolver@1.2.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/jest-regex-util@27.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/jest-regex-util@27.5.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/jest-resolve-dependencies@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/jest-regex-util@27.5.1", + "pkg:npm/jest-snapshot@27.5.1" + ] + }, + { + "ref": "pkg:npm/jest-resolve@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-haste-map@27.5.1", + "pkg:npm/jest-pnp-resolver@1.2.2", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/jest-validate@27.5.1", + "pkg:npm/resolve.exports@1.1.0", + "pkg:npm/resolve@1.20.0", + "pkg:npm/slash@3.0.0" + ] + }, + { + "ref": "pkg:npm/jest-runner@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/console@27.5.1", + "pkg:npm/@jest/environment@27.5.1", + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/@jest/transform@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/chalk@4.1.1", + "pkg:npm/emittery@0.8.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-docblock@27.5.1", + "pkg:npm/jest-environment-jsdom@27.5.1", + "pkg:npm/jest-environment-node@27.5.1", + "pkg:npm/jest-haste-map@27.5.1", + "pkg:npm/jest-leak-detector@27.5.1", + "pkg:npm/jest-message-util@27.5.1", + "pkg:npm/jest-resolve@27.5.1", + "pkg:npm/jest-runtime@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/jest-worker@27.5.1", + "pkg:npm/source-map-support@0.5.21", + "pkg:npm/throat@6.0.1" + ] + }, + { + "ref": "pkg:npm/jest-runtime@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/environment@27.5.1", + "pkg:npm/@jest/fake-timers@27.5.1", + "pkg:npm/@jest/globals@27.5.1", + "pkg:npm/@jest/source-map@27.5.1", + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/@jest/transform@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/cjs-module-lexer@1.2.2", + "pkg:npm/collect-v8-coverage@1.0.1", + "pkg:npm/execa@5.1.1", + "pkg:npm/glob@7.1.7", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-haste-map@27.5.1", + "pkg:npm/jest-message-util@27.5.1", + "pkg:npm/jest-mock@27.5.1", + "pkg:npm/jest-regex-util@27.5.1", + "pkg:npm/jest-resolve@27.5.1", + "pkg:npm/jest-snapshot@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/slash@3.0.0", + "pkg:npm/strip-bom@4.0.0" + ] + }, + { + "ref": "pkg:npm/jest-serializer@27.0.6", + "dependsOn": [ + "pkg:npm/@types/node@15.12.2", + "pkg:npm/graceful-fs@4.2.9" + ] + }, + { + "ref": "pkg:npm/jest-serializer@27.5.1", + "dependsOn": [ + "pkg:npm/@types/node@15.12.2", + "pkg:npm/graceful-fs@4.2.9" + ] + }, + { + "ref": "pkg:npm/jest-snapshot@27.5.1", + "dependsOn": [ + "pkg:npm/@babel/core@7.16.0", + "pkg:npm/@babel/generator@7.16.0", + "pkg:npm/@babel/plugin-syntax-typescript@7.16.0", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.16.0", + "pkg:npm/@jest/transform@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/babel__traverse@7.14.2", + "pkg:npm/@types/prettier@2.4.1", + "pkg:npm/babel-preset-current-node-syntax@1.0.1", + "pkg:npm/chalk@4.1.1", + "pkg:npm/expect@27.5.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/jest-diff@27.5.1", + "pkg:npm/jest-get-type@27.5.1", + "pkg:npm/jest-haste-map@27.5.1", + "pkg:npm/jest-matcher-utils@27.5.1", + "pkg:npm/jest-message-util@27.5.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/natural-compare@1.4.0", + "pkg:npm/pretty-format@27.5.1", + "pkg:npm/semver@7.5.4" + ] + }, + { + "ref": "pkg:npm/jest-util@27.3.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.2.5", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/chalk@4.1.1", + "pkg:npm/ci-info@3.2.0", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/picomatch@2.3.0" + ] + }, + { + "ref": "pkg:npm/jest-util@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/chalk@4.1.1", + "pkg:npm/ci-info@3.2.0", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/picomatch@2.3.0" + ] + }, + { + "ref": "pkg:npm/jest-validate@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/camelcase@6.2.0", + "pkg:npm/chalk@4.1.1", + "pkg:npm/jest-get-type@27.5.1", + "pkg:npm/leven@3.1.0", + "pkg:npm/pretty-format@27.5.1" + ] + }, + { + "ref": "pkg:npm/jest-watcher@27.5.1", + "dependsOn": [ + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/ansi-escapes@4.3.2", + "pkg:npm/chalk@4.1.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/string-length@4.0.2" + ] + }, + { + "ref": "pkg:npm/jest-worker@26.6.2", + "dependsOn": [ + "pkg:npm/@types/node@15.12.2", + "pkg:npm/merge-stream@2.0.0", + "pkg:npm/supports-color@7.2.0" + ] + }, + { + "ref": "pkg:npm/jest-worker@27.3.1", + "dependsOn": [ + "pkg:npm/@types/node@15.12.2", + "pkg:npm/merge-stream@2.0.0", + "pkg:npm/supports-color@8.1.1" + ] + }, + { + "ref": "pkg:npm/jest-worker@27.5.1", + "dependsOn": [ + "pkg:npm/@types/node@15.12.2", + "pkg:npm/merge-stream@2.0.0", + "pkg:npm/supports-color@8.1.1" + ] + }, + { + "ref": "pkg:npm/jest@27.3.1", + "dependsOn": [ + "pkg:npm/@jest/core@27.5.1", + "pkg:npm/import-local@3.0.3", + "pkg:npm/jest-cli@27.5.1" + ] + }, + { + "ref": "pkg:npm/jquery@3.6.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/js-levenshtein@1.1.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/js-sha3@0.8.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/js-tokens@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/js-yaml@3.14.1", + "dependsOn": [ + "pkg:npm/argparse@1.0.10", + "pkg:npm/esprima@4.0.1" + ] + }, + { + "ref": "pkg:npm/js-yaml@4.1.0", + "dependsOn": [ + "pkg:npm/argparse@2.0.1" + ] + }, + { + "ref": "pkg:npm/jsdom@16.7.0", + "dependsOn": [ + "pkg:npm/abab@2.0.5", + "pkg:npm/acorn-globals@6.0.0", + "pkg:npm/acorn@8.7.1", + "pkg:npm/cssom@0.4.4", + "pkg:npm/cssstyle@2.3.0", + "pkg:npm/data-urls@2.0.0", + "pkg:npm/decimal.js@10.3.1", + "pkg:npm/domexception@2.0.1", + "pkg:npm/escodegen@2.0.0", + "pkg:npm/form-data@3.0.1", + "pkg:npm/html-encoding-sniffer@2.0.1", + "pkg:npm/http-proxy-agent@4.0.1", + "pkg:npm/https-proxy-agent@5.0.0", + "pkg:npm/is-potential-custom-element-name@1.0.1", + "pkg:npm/nwsapi@2.2.0", + "pkg:npm/parse5@6.0.1", + "pkg:npm/saxes@5.0.1", + "pkg:npm/symbol-tree@3.2.4", + "pkg:npm/tough-cookie@4.1.3", + "pkg:npm/w3c-hr-time@1.0.2", + "pkg:npm/w3c-xmlserializer@2.0.0", + "pkg:npm/webidl-conversions@6.1.0", + "pkg:npm/whatwg-encoding@1.0.5", + "pkg:npm/whatwg-mimetype@2.3.0", + "pkg:npm/whatwg-url@8.7.0", + "pkg:npm/ws@7.5.5", + "pkg:npm/xml-name-validator@3.0.0" + ] + }, + { + "ref": "pkg:npm/jsesc@2.5.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/jsesc@0.5.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/jshint@2.13.4", + "dependsOn": [ + "pkg:npm/cli@1.0.1", + "pkg:npm/console-browserify@1.1.0", + "pkg:npm/exit@0.1.2", + "pkg:npm/htmlparser2@3.8.3", + "pkg:npm/lodash@4.17.21", + "pkg:npm/minimatch@3.0.8", + "pkg:npm/strip-json-comments@1.0.4" + ] + }, + { + "ref": "pkg:npm/json-parse-even-better-errors@2.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/json-pointer@0.6.2", + "dependsOn": [ + "pkg:npm/foreach@2.0.5" + ] + }, + { + "ref": "pkg:npm/json-schema-traverse@0.4.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/json-schema-traverse@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/json-stable-stringify-without-jsonify@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/json-stringify-safe@5.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/json5@1.0.2", + "dependsOn": [ + "pkg:npm/minimist@1.2.7" + ] + }, + { + "ref": "pkg:npm/json5@2.2.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/jsx-ast-utils@3.2.1", + "dependsOn": [ + "pkg:npm/array-includes@3.1.3", + "pkg:npm/object.assign@4.1.2" + ] + }, + { + "ref": "pkg:npm/jsx-ast-utils@3.3.0", + "dependsOn": [ + "pkg:npm/array-includes@3.1.5", + "pkg:npm/object.assign@4.1.2" + ] + }, + { + "ref": "pkg:npm/kind-of@6.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/kleur@3.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/kleur@4.1.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/known-css-properties@0.27.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/language-subtag-registry@0.3.21", + "dependsOn": [] + }, + { + "ref": "pkg:npm/language-tags@1.0.5", + "dependsOn": [ + "pkg:npm/language-subtag-registry@0.3.21" + ] + }, + { + "ref": "pkg:npm/leven@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/levn@0.4.1", + "dependsOn": [ + "pkg:npm/prelude-ls@1.2.1", + "pkg:npm/type-check@0.4.0" + ] + }, + { + "ref": "pkg:npm/levn@0.3.0", + "dependsOn": [ + "pkg:npm/prelude-ls@1.1.2", + "pkg:npm/type-check@0.3.2" + ] + }, + { + "ref": "pkg:npm/lilconfig@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lines-and-columns@1.1.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/loader-runner@4.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/loader-utils@2.0.4", + "dependsOn": [ + "pkg:npm/big.js@5.2.2", + "pkg:npm/emojis-list@3.0.0", + "pkg:npm/json5@2.2.1" + ] + }, + { + "ref": "pkg:npm/locate-path@5.0.0", + "dependsOn": [ + "pkg:npm/p-locate@4.1.0" + ] + }, + { + "ref": "pkg:npm/locate-path@6.0.0", + "dependsOn": [ + "pkg:npm/p-locate@5.0.0" + ] + }, + { + "ref": "pkg:npm/lodash.curry@4.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.debounce@4.0.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.difference@4.5.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.flow@3.5.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.isequal@4.5.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.memoize@4.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.merge@4.6.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.mergewith@4.6.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.set@4.3.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.truncate@4.4.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash.uniq@4.5.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lodash@4.17.21", + "dependsOn": [] + }, + { + "ref": "pkg:npm/longest-streak@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/loose-envify@1.4.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lowlight@1.20.0", + "dependsOn": [ + "pkg:npm/fault@1.0.4", + "pkg:npm/highlight.js@10.7.3" + ] + }, + { + "ref": "pkg:npm/lru-cache@6.0.0", + "dependsOn": [ + "pkg:npm/yallist@4.0.0" + ] + }, + { + "ref": "pkg:npm/lunr@2.3.9", + "dependsOn": [] + }, + { + "ref": "pkg:npm/lz-string@1.4.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/make-dir@3.1.0", + "dependsOn": [ + "pkg:npm/semver@6.3.1" + ] + }, + { + "ref": "pkg:npm/makeerror@1.0.12", + "dependsOn": [ + "pkg:npm/tmpl@1.0.5" + ] + }, + { + "ref": "pkg:npm/map-obj@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/map-obj@4.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mark.js@8.11.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/markdown-table@3.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/marked@4.0.17", + "dependsOn": [] + }, + { + "ref": "pkg:npm/match-sorter@6.3.1", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.16.0", + "pkg:npm/remove-accents@0.4.2" + ] + }, + { + "ref": "pkg:npm/mathml-tag-names@2.1.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mdast-util-definitions@5.1.1", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/@types/unist@2.0.6", + "pkg:npm/unist-util-visit@4.1.1" + ] + }, + { + "ref": "pkg:npm/mdast-util-find-and-replace@2.2.1", + "dependsOn": [ + "pkg:npm/escape-string-regexp@5.0.0", + "pkg:npm/unist-util-is@5.1.1", + "pkg:npm/unist-util-visit-parents@5.1.1" + ] + }, + { + "ref": "pkg:npm/mdast-util-from-markdown@1.2.0", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/@types/unist@2.0.6", + "pkg:npm/decode-named-character-reference@1.0.2", + "pkg:npm/mdast-util-to-string@3.1.0", + "pkg:npm/micromark-util-decode-numeric-character-reference@1.0.0", + "pkg:npm/micromark-util-decode-string@1.0.2", + "pkg:npm/micromark-util-normalize-identifier@1.0.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/micromark@3.1.0", + "pkg:npm/unist-util-stringify-position@3.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/mdast-util-gfm-autolink-literal@1.0.2", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/ccount@2.0.1", + "pkg:npm/mdast-util-find-and-replace@2.2.1", + "pkg:npm/micromark-util-character@1.1.0" + ] + }, + { + "ref": "pkg:npm/mdast-util-gfm-footnote@1.0.1", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/mdast-util-to-markdown@1.3.0", + "pkg:npm/micromark-util-normalize-identifier@1.0.0" + ] + }, + { + "ref": "pkg:npm/mdast-util-gfm-strikethrough@1.0.2", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/mdast-util-to-markdown@1.3.0" + ] + }, + { + "ref": "pkg:npm/mdast-util-gfm-table@1.0.6", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/markdown-table@3.0.3", + "pkg:npm/mdast-util-from-markdown@1.2.0", + "pkg:npm/mdast-util-to-markdown@1.3.0" + ] + }, + { + "ref": "pkg:npm/mdast-util-gfm-task-list-item@1.0.1", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/mdast-util-to-markdown@1.3.0" + ] + }, + { + "ref": "pkg:npm/mdast-util-gfm@2.0.1", + "dependsOn": [ + "pkg:npm/mdast-util-from-markdown@1.2.0", + "pkg:npm/mdast-util-gfm-autolink-literal@1.0.2", + "pkg:npm/mdast-util-gfm-footnote@1.0.1", + "pkg:npm/mdast-util-gfm-strikethrough@1.0.2", + "pkg:npm/mdast-util-gfm-table@1.0.6", + "pkg:npm/mdast-util-gfm-task-list-item@1.0.1", + "pkg:npm/mdast-util-to-markdown@1.3.0" + ] + }, + { + "ref": "pkg:npm/mdast-util-to-hast@12.2.4", + "dependsOn": [ + "pkg:npm/@types/hast@2.3.4", + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/mdast-util-definitions@5.1.1", + "pkg:npm/micromark-util-sanitize-uri@1.1.0", + "pkg:npm/trim-lines@3.0.1", + "pkg:npm/unist-builder@3.0.0", + "pkg:npm/unist-util-generated@2.0.0", + "pkg:npm/unist-util-position@4.0.3", + "pkg:npm/unist-util-visit@4.1.1" + ] + }, + { + "ref": "pkg:npm/mdast-util-to-markdown@1.3.0", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/@types/unist@2.0.6", + "pkg:npm/longest-streak@3.1.0", + "pkg:npm/mdast-util-to-string@3.1.0", + "pkg:npm/micromark-util-decode-string@1.0.2", + "pkg:npm/unist-util-visit@4.1.1", + "pkg:npm/zwitch@2.0.4" + ] + }, + { + "ref": "pkg:npm/mdast-util-to-string@3.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mdn-data@2.0.14", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mdn-data@2.0.30", + "dependsOn": [] + }, + { + "ref": "pkg:npm/memoize-one@5.2.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/meow@10.1.5", + "dependsOn": [ + "pkg:npm/@types/minimist@1.2.2", + "pkg:npm/camelcase-keys@7.0.0", + "pkg:npm/decamelize-keys@1.1.0", + "pkg:npm/decamelize@5.0.1", + "pkg:npm/hard-rejection@2.1.0", + "pkg:npm/minimist-options@4.1.0", + "pkg:npm/normalize-package-data@3.0.3", + "pkg:npm/read-pkg-up@8.0.0", + "pkg:npm/redent@4.0.0", + "pkg:npm/trim-newlines@4.1.1", + "pkg:npm/type-fest@1.4.0", + "pkg:npm/yargs-parser@20.2.9" + ] + }, + { + "ref": "pkg:npm/merge-stream@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/merge2@1.4.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/micromark-core-commonmark@1.0.6", + "dependsOn": [ + "pkg:npm/decode-named-character-reference@1.0.2", + "pkg:npm/micromark-factory-destination@1.0.0", + "pkg:npm/micromark-factory-label@1.0.2", + "pkg:npm/micromark-factory-space@1.0.0", + "pkg:npm/micromark-factory-title@1.0.2", + "pkg:npm/micromark-factory-whitespace@1.0.0", + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-chunked@1.0.0", + "pkg:npm/micromark-util-classify-character@1.0.0", + "pkg:npm/micromark-util-html-tag-name@1.1.0", + "pkg:npm/micromark-util-normalize-identifier@1.0.0", + "pkg:npm/micromark-util-resolve-all@1.0.0", + "pkg:npm/micromark-util-subtokenize@1.0.2", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromark-extension-gfm-autolink-literal@1.0.3", + "dependsOn": [ + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-sanitize-uri@1.1.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromark-extension-gfm-footnote@1.0.4", + "dependsOn": [ + "pkg:npm/micromark-core-commonmark@1.0.6", + "pkg:npm/micromark-factory-space@1.0.0", + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-normalize-identifier@1.0.0", + "pkg:npm/micromark-util-sanitize-uri@1.1.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromark-extension-gfm-strikethrough@1.0.4", + "dependsOn": [ + "pkg:npm/micromark-util-chunked@1.0.0", + "pkg:npm/micromark-util-classify-character@1.0.0", + "pkg:npm/micromark-util-resolve-all@1.0.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromark-extension-gfm-table@1.0.5", + "dependsOn": [ + "pkg:npm/micromark-factory-space@1.0.0", + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromark-extension-gfm-tagfilter@1.0.1", + "dependsOn": [ + "pkg:npm/micromark-util-types@1.0.2" + ] + }, + { + "ref": "pkg:npm/micromark-extension-gfm-task-list-item@1.0.3", + "dependsOn": [ + "pkg:npm/micromark-factory-space@1.0.0", + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromark-extension-gfm@2.0.1", + "dependsOn": [ + "pkg:npm/micromark-extension-gfm-autolink-literal@1.0.3", + "pkg:npm/micromark-extension-gfm-footnote@1.0.4", + "pkg:npm/micromark-extension-gfm-strikethrough@1.0.4", + "pkg:npm/micromark-extension-gfm-table@1.0.5", + "pkg:npm/micromark-extension-gfm-tagfilter@1.0.1", + "pkg:npm/micromark-extension-gfm-task-list-item@1.0.3", + "pkg:npm/micromark-util-combine-extensions@1.0.0", + "pkg:npm/micromark-util-types@1.0.2" + ] + }, + { + "ref": "pkg:npm/micromark-factory-destination@1.0.0", + "dependsOn": [ + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2" + ] + }, + { + "ref": "pkg:npm/micromark-factory-label@1.0.2", + "dependsOn": [ + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromark-factory-space@1.0.0", + "dependsOn": [ + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-types@1.0.2" + ] + }, + { + "ref": "pkg:npm/micromark-factory-title@1.0.2", + "dependsOn": [ + "pkg:npm/micromark-factory-space@1.0.0", + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromark-factory-whitespace@1.0.0", + "dependsOn": [ + "pkg:npm/micromark-factory-space@1.0.0", + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2" + ] + }, + { + "ref": "pkg:npm/micromark-util-character@1.1.0", + "dependsOn": [ + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2" + ] + }, + { + "ref": "pkg:npm/micromark-util-chunked@1.0.0", + "dependsOn": [ + "pkg:npm/micromark-util-symbol@1.0.1" + ] + }, + { + "ref": "pkg:npm/micromark-util-classify-character@1.0.0", + "dependsOn": [ + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2" + ] + }, + { + "ref": "pkg:npm/micromark-util-combine-extensions@1.0.0", + "dependsOn": [ + "pkg:npm/micromark-util-chunked@1.0.0", + "pkg:npm/micromark-util-types@1.0.2" + ] + }, + { + "ref": "pkg:npm/micromark-util-decode-numeric-character-reference@1.0.0", + "dependsOn": [ + "pkg:npm/micromark-util-symbol@1.0.1" + ] + }, + { + "ref": "pkg:npm/micromark-util-decode-string@1.0.2", + "dependsOn": [ + "pkg:npm/decode-named-character-reference@1.0.2", + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-decode-numeric-character-reference@1.0.0", + "pkg:npm/micromark-util-symbol@1.0.1" + ] + }, + { + "ref": "pkg:npm/micromark-util-encode@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/micromark-util-html-tag-name@1.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/micromark-util-normalize-identifier@1.0.0", + "dependsOn": [ + "pkg:npm/micromark-util-symbol@1.0.1" + ] + }, + { + "ref": "pkg:npm/micromark-util-resolve-all@1.0.0", + "dependsOn": [ + "pkg:npm/micromark-util-types@1.0.2" + ] + }, + { + "ref": "pkg:npm/micromark-util-sanitize-uri@1.1.0", + "dependsOn": [ + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-encode@1.0.1", + "pkg:npm/micromark-util-symbol@1.0.1" + ] + }, + { + "ref": "pkg:npm/micromark-util-subtokenize@1.0.2", + "dependsOn": [ + "pkg:npm/micromark-util-chunked@1.0.0", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromark-util-symbol@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/micromark-util-types@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/micromark@3.1.0", + "dependsOn": [ + "pkg:npm/@types/debug@4.1.7", + "pkg:npm/debug@4.3.4", + "pkg:npm/decode-named-character-reference@1.0.2", + "pkg:npm/micromark-core-commonmark@1.0.6", + "pkg:npm/micromark-factory-space@1.0.0", + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-chunked@1.0.0", + "pkg:npm/micromark-util-combine-extensions@1.0.0", + "pkg:npm/micromark-util-decode-numeric-character-reference@1.0.0", + "pkg:npm/micromark-util-encode@1.0.1", + "pkg:npm/micromark-util-normalize-identifier@1.0.0", + "pkg:npm/micromark-util-resolve-all@1.0.0", + "pkg:npm/micromark-util-sanitize-uri@1.1.0", + "pkg:npm/micromark-util-subtokenize@1.0.2", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/uvu@0.5.6" + ] + }, + { + "ref": "pkg:npm/micromatch@4.0.5", + "dependsOn": [ + "pkg:npm/braces@3.0.2", + "pkg:npm/picomatch@2.3.1" + ] + }, + { + "ref": "pkg:npm/microseconds@0.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mime-db@1.52.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mime-types@2.1.35", + "dependsOn": [ + "pkg:npm/mime-db@1.52.0" + ] + }, + { + "ref": "pkg:npm/mime@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mimic-fn@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/min-indent@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mini-css-extract-plugin@1.6.2", + "dependsOn": [ + "pkg:npm/loader-utils@2.0.4", + "pkg:npm/schema-utils@3.1.1", + "pkg:npm/webpack-sources@1.4.3" + ] + }, + { + "ref": "pkg:npm/minimatch@3.1.2", + "dependsOn": [ + "pkg:npm/brace-expansion@1.1.11" + ] + }, + { + "ref": "pkg:npm/minimatch@5.1.0", + "dependsOn": [ + "pkg:npm/brace-expansion@2.0.1" + ] + }, + { + "ref": "pkg:npm/minimatch@3.0.8", + "dependsOn": [ + "pkg:npm/brace-expansion@1.1.11" + ] + }, + { + "ref": "pkg:npm/minimist-options@4.1.0", + "dependsOn": [ + "pkg:npm/arrify@1.0.1", + "pkg:npm/is-plain-obj@1.1.0", + "pkg:npm/kind-of@6.0.3" + ] + }, + { + "ref": "pkg:npm/minimist@1.2.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/minipass-collect@1.0.2", + "dependsOn": [ + "pkg:npm/minipass@3.1.3" + ] + }, + { + "ref": "pkg:npm/minipass-flush@1.0.5", + "dependsOn": [ + "pkg:npm/minipass@3.1.3" + ] + }, + { + "ref": "pkg:npm/minipass-pipeline@1.2.4", + "dependsOn": [ + "pkg:npm/minipass@3.1.3" + ] + }, + { + "ref": "pkg:npm/minipass@3.1.3", + "dependsOn": [ + "pkg:npm/yallist@4.0.0" + ] + }, + { + "ref": "pkg:npm/minizlib@2.1.2", + "dependsOn": [ + "pkg:npm/minipass@3.1.3", + "pkg:npm/yallist@4.0.0" + ] + }, + { + "ref": "pkg:npm/mkdirp@1.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mobx-react-lite@3.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/mobx-react@7.2.0", + "dependsOn": [ + "pkg:npm/mobx-react-lite@3.2.0" + ] + }, + { + "ref": "pkg:npm/moment-locales-webpack-plugin@1.2.0", + "dependsOn": [ + "pkg:npm/lodash.difference@4.5.0" + ] + }, + { + "ref": "pkg:npm/moment-timezone@0.4.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/moment-timezone@0.5.43", + "dependsOn": [ + "pkg:npm/moment@2.29.4" + ] + }, + { + "ref": "pkg:npm/moment@2.29.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/moo-color@1.0.3", + "dependsOn": [ + "pkg:npm/color-name@1.1.4" + ] + }, + { + "ref": "pkg:npm/mri@1.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ms@2.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ms@2.1.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/nano-time@1.0.0", + "dependsOn": [ + "pkg:npm/big-integer@1.6.51" + ] + }, + { + "ref": "pkg:npm/nanoid@3.3.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/natural-compare@1.4.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/needle@2.9.1", + "dependsOn": [ + "pkg:npm/debug@3.2.7", + "pkg:npm/iconv-lite@0.4.24", + "pkg:npm/sax@1.2.4" + ] + }, + { + "ref": "pkg:npm/neo-async@2.6.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/nock@13.2.4", + "dependsOn": [ + "pkg:npm/debug@4.3.4", + "pkg:npm/json-stringify-safe@5.0.1", + "pkg:npm/lodash.set@4.3.2", + "pkg:npm/propagate@2.0.1" + ] + }, + { + "ref": "pkg:npm/node-fetch-h2@2.3.0", + "dependsOn": [ + "pkg:npm/http2-client@1.3.3" + ] + }, + { + "ref": "pkg:npm/node-fetch@2.6.7", + "dependsOn": [ + "pkg:npm/whatwg-url@5.0.0" + ] + }, + { + "ref": "pkg:npm/node-int64@0.4.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/node-modules-regexp@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/node-readfiles@0.2.0", + "dependsOn": [ + "pkg:npm/es6-promise@3.3.1" + ] + }, + { + "ref": "pkg:npm/node-releases@2.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/normalize-package-data@3.0.3", + "dependsOn": [ + "pkg:npm/hosted-git-info@4.0.2", + "pkg:npm/is-core-module@2.12.1", + "pkg:npm/semver@7.5.4", + "pkg:npm/validate-npm-package-license@3.0.4" + ] + }, + { + "ref": "pkg:npm/normalize-path@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/normalize-registry-url@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/normalize-url@6.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/npm-run-path@4.0.1", + "dependsOn": [ + "pkg:npm/path-key@3.1.1" + ] + }, + { + "ref": "pkg:npm/nth-check@2.1.1", + "dependsOn": [ + "pkg:npm/boolbase@1.0.0" + ] + }, + { + "ref": "pkg:npm/nvd3@1.8.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/nwsapi@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/oas-kit-common@1.0.8", + "dependsOn": [ + "pkg:npm/fast-safe-stringify@2.0.7" + ] + }, + { + "ref": "pkg:npm/oas-linter@3.2.2", + "dependsOn": [ + "pkg:npm/@exodus/schemasafe@1.0.0-rc.3", + "pkg:npm/should@13.2.3", + "pkg:npm/yaml@1.10.2" + ] + }, + { + "ref": "pkg:npm/oas-resolver@2.5.5", + "dependsOn": [ + "pkg:npm/node-fetch-h2@2.3.0", + "pkg:npm/oas-kit-common@1.0.8", + "pkg:npm/reftools@1.1.8", + "pkg:npm/yaml@1.10.2", + "pkg:npm/yargs@17.0.1" + ] + }, + { + "ref": "pkg:npm/oas-schema-walker@1.1.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/oas-validator@5.0.6", + "dependsOn": [ + "pkg:npm/call-me-maybe@1.0.1", + "pkg:npm/oas-kit-common@1.0.8", + "pkg:npm/oas-linter@3.2.2", + "pkg:npm/oas-resolver@2.5.5", + "pkg:npm/oas-schema-walker@1.1.5", + "pkg:npm/reftools@1.1.8", + "pkg:npm/should@13.2.3", + "pkg:npm/yaml@1.10.2" + ] + }, + { + "ref": "pkg:npm/object-assign@4.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/object-inspect@1.10.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/object-inspect@1.12.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/object-inspect@1.12.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/object-inspect@1.11.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/object-keys@1.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/object.assign@4.1.2", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/has-symbols@1.0.2", + "pkg:npm/object-keys@1.1.1" + ] + }, + { + "ref": "pkg:npm/object.assign@4.1.4", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/has-symbols@1.0.3", + "pkg:npm/object-keys@1.1.1" + ] + }, + { + "ref": "pkg:npm/object.entries@1.1.5", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/es-abstract@1.20.1" + ] + }, + { + "ref": "pkg:npm/object.fromentries@2.0.5", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/es-abstract@1.20.1" + ] + }, + { + "ref": "pkg:npm/object.hasown@1.1.1", + "dependsOn": [ + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.20.1" + ] + }, + { + "ref": "pkg:npm/object.values@1.1.5", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/es-abstract@1.20.1" + ] + }, + { + "ref": "pkg:npm/object.values@1.1.6", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.21.2" + ] + }, + { + "ref": "pkg:npm/oblivious-set@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/once@1.4.0", + "dependsOn": [ + "pkg:npm/wrappy@1.0.2" + ] + }, + { + "ref": "pkg:npm/onetime@5.1.2", + "dependsOn": [ + "pkg:npm/mimic-fn@2.1.0" + ] + }, + { + "ref": "pkg:npm/openapi-sampler@1.3.0", + "dependsOn": [ + "pkg:npm/@types/json-schema@7.0.7", + "pkg:npm/json-pointer@0.6.2" + ] + }, + { + "ref": "pkg:npm/openapi-typescript@5.4.1", + "dependsOn": [ + "pkg:npm/js-yaml@4.1.0", + "pkg:npm/mime@3.0.0", + "pkg:npm/prettier@2.7.1", + "pkg:npm/tiny-glob@0.2.9", + "pkg:npm/undici@5.26.3", + "pkg:npm/yargs-parser@21.0.1" + ] + }, + { + "ref": "pkg:npm/optionator@0.8.3", + "dependsOn": [ + "pkg:npm/deep-is@0.1.4", + "pkg:npm/fast-levenshtein@2.0.6", + "pkg:npm/levn@0.3.0", + "pkg:npm/prelude-ls@1.1.2", + "pkg:npm/type-check@0.3.2", + "pkg:npm/word-wrap@1.2.4" + ] + }, + { + "ref": "pkg:npm/optionator@0.9.1", + "dependsOn": [ + "pkg:npm/deep-is@0.1.4", + "pkg:npm/fast-levenshtein@2.0.6", + "pkg:npm/levn@0.4.1", + "pkg:npm/prelude-ls@1.2.1", + "pkg:npm/type-check@0.4.0", + "pkg:npm/word-wrap@1.2.4" + ] + }, + { + "ref": "pkg:npm/p-limit@2.3.0", + "dependsOn": [ + "pkg:npm/p-try@2.2.0" + ] + }, + { + "ref": "pkg:npm/p-limit@3.1.0", + "dependsOn": [ + "pkg:npm/yocto-queue@0.1.0" + ] + }, + { + "ref": "pkg:npm/p-locate@4.1.0", + "dependsOn": [ + "pkg:npm/p-limit@2.3.0" + ] + }, + { + "ref": "pkg:npm/p-locate@5.0.0", + "dependsOn": [ + "pkg:npm/p-limit@3.1.0" + ] + }, + { + "ref": "pkg:npm/p-map@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/p-map@4.0.0", + "dependsOn": [ + "pkg:npm/aggregate-error@3.1.0" + ] + }, + { + "ref": "pkg:npm/p-try@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/parent-module@1.0.1", + "dependsOn": [ + "pkg:npm/callsites@3.1.0" + ] + }, + { + "ref": "pkg:npm/parse-entities@2.0.0", + "dependsOn": [ + "pkg:npm/character-entities-legacy@1.1.4", + "pkg:npm/character-entities@1.2.4", + "pkg:npm/character-reference-invalid@1.1.4", + "pkg:npm/is-alphanumerical@1.0.4", + "pkg:npm/is-decimal@1.0.4", + "pkg:npm/is-hexadecimal@1.0.4" + ] + }, + { + "ref": "pkg:npm/parse-json@5.2.0", + "dependsOn": [ + "pkg:npm/@babel/code-frame@7.14.5", + "pkg:npm/error-ex@1.3.2", + "pkg:npm/json-parse-even-better-errors@2.3.1", + "pkg:npm/lines-and-columns@1.1.6" + ] + }, + { + "ref": "pkg:npm/parse5@6.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/path-browserify@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/path-exists@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/path-is-absolute@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/path-is-inside@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/path-key@3.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/path-parse@1.0.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/path-type@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/perfect-scrollbar@1.5.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/picocolors@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/picomatch@2.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/picomatch@2.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/pify@2.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/pify@4.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/pinkie-promise@2.0.1", + "dependsOn": [ + "pkg:npm/pinkie@2.0.4" + ] + }, + { + "ref": "pkg:npm/pinkie@2.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/pirates@4.0.1", + "dependsOn": [ + "pkg:npm/node-modules-regexp@1.0.0" + ] + }, + { + "ref": "pkg:npm/pirates@4.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/pkg-dir@4.2.0", + "dependsOn": [ + "pkg:npm/find-up@4.1.0" + ] + }, + { + "ref": "pkg:npm/pluralize@8.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/polished@4.1.3", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.14.6" + ] + }, + { + "ref": "pkg:npm/popmotion@11.0.3", + "dependsOn": [ + "pkg:npm/framesync@6.0.1", + "pkg:npm/hey-listen@1.0.8", + "pkg:npm/style-value-types@5.0.0", + "pkg:npm/tslib@2.3.1" + ] + }, + { + "ref": "pkg:npm/postcss-calc@8.2.4", + "dependsOn": [ + "pkg:npm/postcss-selector-parser@6.0.13", + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-colormin@5.3.0", + "dependsOn": [ + "pkg:npm/browserslist@4.20.4", + "pkg:npm/caniuse-api@3.0.0", + "pkg:npm/colord@2.9.3", + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-convert-values@5.1.2", + "dependsOn": [ + "pkg:npm/browserslist@4.20.4", + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-discard-comments@5.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/postcss-discard-duplicates@5.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/postcss-discard-empty@5.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/postcss-discard-overridden@5.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/postcss-merge-longhand@5.1.5", + "dependsOn": [ + "pkg:npm/postcss-value-parser@4.2.0", + "pkg:npm/stylehacks@5.1.0" + ] + }, + { + "ref": "pkg:npm/postcss-merge-rules@5.1.2", + "dependsOn": [ + "pkg:npm/browserslist@4.20.4", + "pkg:npm/caniuse-api@3.0.0", + "pkg:npm/cssnano-utils@3.1.0", + "pkg:npm/postcss-selector-parser@6.0.13" + ] + }, + { + "ref": "pkg:npm/postcss-minify-font-values@5.1.0", + "dependsOn": [ + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-minify-gradients@5.1.1", + "dependsOn": [ + "pkg:npm/colord@2.9.3", + "pkg:npm/cssnano-utils@3.1.0", + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-minify-params@5.1.3", + "dependsOn": [ + "pkg:npm/browserslist@4.20.4", + "pkg:npm/cssnano-utils@3.1.0", + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-minify-selectors@5.2.1", + "dependsOn": [ + "pkg:npm/postcss-selector-parser@6.0.13" + ] + }, + { + "ref": "pkg:npm/postcss-modules-extract-imports@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/postcss-modules-local-by-default@4.0.0", + "dependsOn": [ + "pkg:npm/icss-utils@5.1.0", + "pkg:npm/postcss-selector-parser@6.0.13", + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-modules-scope@3.0.0", + "dependsOn": [ + "pkg:npm/postcss-selector-parser@6.0.13" + ] + }, + { + "ref": "pkg:npm/postcss-modules-values@4.0.0", + "dependsOn": [ + "pkg:npm/icss-utils@5.1.0" + ] + }, + { + "ref": "pkg:npm/postcss-normalize-charset@5.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/postcss-normalize-display-values@5.1.0", + "dependsOn": [ + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-normalize-positions@5.1.0", + "dependsOn": [ + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-normalize-repeat-style@5.1.0", + "dependsOn": [ + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-normalize-string@5.1.0", + "dependsOn": [ + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-normalize-timing-functions@5.1.0", + "dependsOn": [ + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-normalize-unicode@5.1.0", + "dependsOn": [ + "pkg:npm/browserslist@4.20.4", + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-normalize-url@5.1.0", + "dependsOn": [ + "pkg:npm/normalize-url@6.1.0", + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-normalize-whitespace@5.1.1", + "dependsOn": [ + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-ordered-values@5.1.2", + "dependsOn": [ + "pkg:npm/cssnano-utils@3.1.0", + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-reduce-initial@5.1.0", + "dependsOn": [ + "pkg:npm/browserslist@4.20.4", + "pkg:npm/caniuse-api@3.0.0" + ] + }, + { + "ref": "pkg:npm/postcss-reduce-transforms@5.1.0", + "dependsOn": [ + "pkg:npm/postcss-value-parser@4.2.0" + ] + }, + { + "ref": "pkg:npm/postcss-resolve-nested-selector@0.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/postcss-safe-parser@6.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/postcss-selector-parser@6.0.13", + "dependsOn": [ + "pkg:npm/cssesc@3.0.0", + "pkg:npm/util-deprecate@1.0.2" + ] + }, + { + "ref": "pkg:npm/postcss-svgo@5.1.0", + "dependsOn": [ + "pkg:npm/postcss-value-parser@4.2.0", + "pkg:npm/svgo@2.8.0" + ] + }, + { + "ref": "pkg:npm/postcss-unique-selectors@5.1.1", + "dependsOn": [ + "pkg:npm/postcss-selector-parser@6.0.13" + ] + }, + { + "ref": "pkg:npm/postcss-value-parser@4.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/postcss@8.4.31", + "dependsOn": [ + "pkg:npm/nanoid@3.3.6", + "pkg:npm/picocolors@1.0.0", + "pkg:npm/source-map-js@1.0.2" + ] + }, + { + "ref": "pkg:npm/prelude-ls@1.2.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/prelude-ls@1.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/prettier@2.7.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/prettier@2.8.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/pretty-format@27.3.1", + "dependsOn": [ + "pkg:npm/@jest/types@27.2.5", + "pkg:npm/ansi-regex@5.0.1", + "pkg:npm/ansi-styles@5.2.0", + "pkg:npm/react-is@17.0.2" + ] + }, + { + "ref": "pkg:npm/pretty-format@27.5.1", + "dependsOn": [ + "pkg:npm/ansi-regex@5.0.1", + "pkg:npm/ansi-styles@5.2.0", + "pkg:npm/react-is@17.0.2" + ] + }, + { + "ref": "pkg:npm/prismjs@1.28.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/prismjs@1.27.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/promise-inflight@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/promise@7.3.1", + "dependsOn": [ + "pkg:npm/asap@2.0.6" + ] + }, + { + "ref": "pkg:npm/prompts@2.4.2", + "dependsOn": [ + "pkg:npm/kleur@3.0.3", + "pkg:npm/sisteransi@1.0.5" + ] + }, + { + "ref": "pkg:npm/prop-types@15.8.1", + "dependsOn": [ + "pkg:npm/loose-envify@1.4.0", + "pkg:npm/object-assign@4.1.1", + "pkg:npm/react-is@16.13.1" + ] + }, + { + "ref": "pkg:npm/prop-types@15.7.2", + "dependsOn": [ + "pkg:npm/loose-envify@1.4.0", + "pkg:npm/object-assign@4.1.1", + "pkg:npm/react-is@16.13.1" + ] + }, + { + "ref": "pkg:npm/propagate@2.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/property-information@5.6.0", + "dependsOn": [ + "pkg:npm/xtend@4.0.2" + ] + }, + { + "ref": "pkg:npm/property-information@6.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/proxy-from-env@1.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/psl@1.8.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/punycode@2.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/pure-color@1.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/querystringify@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/queue-microtask@1.2.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/quick-lru@5.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/randombytes@2.1.0", + "dependsOn": [ + "pkg:npm/safe-buffer@5.2.1" + ] + }, + { + "ref": "pkg:npm/react-base16-styling@0.6.0", + "dependsOn": [ + "pkg:npm/base16@1.0.0", + "pkg:npm/lodash.curry@4.1.1", + "pkg:npm/lodash.flow@3.5.0", + "pkg:npm/pure-color@1.3.0" + ] + }, + { + "ref": "pkg:npm/react-clientside-effect@1.2.6", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.17.2" + ] + }, + { + "ref": "pkg:npm/react-dom@18.1.0", + "dependsOn": [ + "pkg:npm/loose-envify@1.4.0", + "pkg:npm/scheduler@0.22.0" + ] + }, + { + "ref": "pkg:npm/react-fast-compare@3.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/react-focus-lock@2.9.4", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.17.2", + "pkg:npm/focus-lock@0.11.6", + "pkg:npm/prop-types@15.8.1", + "pkg:npm/react-clientside-effect@1.2.6", + "pkg:npm/use-callback-ref@1.3.0", + "pkg:npm/use-sidecar@1.1.2" + ] + }, + { + "ref": "pkg:npm/react-icons@4.9.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/react-is@16.13.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/react-is@17.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/react-is@18.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/react-json-view@1.21.3", + "dependsOn": [ + "pkg:npm/flux@4.0.3", + "pkg:npm/react-base16-styling@0.6.0", + "pkg:npm/react-lifecycles-compat@3.0.4", + "pkg:npm/react-textarea-autosize@8.3.4" + ] + }, + { + "ref": "pkg:npm/react-lifecycles-compat@3.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/react-markdown@8.0.4", + "dependsOn": [ + "pkg:npm/@types/hast@2.3.4", + "pkg:npm/@types/prop-types@15.7.5", + "pkg:npm/@types/unist@2.0.6", + "pkg:npm/comma-separated-tokens@2.0.3", + "pkg:npm/hast-util-whitespace@2.0.0", + "pkg:npm/prop-types@15.8.1", + "pkg:npm/property-information@6.2.0", + "pkg:npm/react-is@18.2.0", + "pkg:npm/remark-parse@10.0.1", + "pkg:npm/remark-rehype@10.1.0", + "pkg:npm/space-separated-tokens@2.0.2", + "pkg:npm/style-to-object@0.3.0", + "pkg:npm/unified@10.1.2", + "pkg:npm/unist-util-visit@4.1.1", + "pkg:npm/vfile@5.3.6" + ] + }, + { + "ref": "pkg:npm/react-query@3.39.1", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.17.2", + "pkg:npm/broadcast-channel@3.7.0", + "pkg:npm/match-sorter@6.3.1" + ] + }, + { + "ref": "pkg:npm/react-remove-scroll-bar@2.3.3", + "dependsOn": [ + "pkg:npm/react-style-singleton@2.2.1", + "pkg:npm/tslib@2.4.0" + ] + }, + { + "ref": "pkg:npm/react-remove-scroll@2.5.5", + "dependsOn": [ + "pkg:npm/react-remove-scroll-bar@2.3.3", + "pkg:npm/react-style-singleton@2.2.1", + "pkg:npm/tslib@2.3.1", + "pkg:npm/use-callback-ref@1.3.0", + "pkg:npm/use-sidecar@1.1.2" + ] + }, + { + "ref": "pkg:npm/react-router-dom@6.3.0", + "dependsOn": [ + "pkg:npm/history@5.3.0", + "pkg:npm/react-router@6.3.0" + ] + }, + { + "ref": "pkg:npm/react-router@6.3.0", + "dependsOn": [ + "pkg:npm/history@5.3.0" + ] + }, + { + "ref": "pkg:npm/react-select@5.3.2", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.18.3", + "pkg:npm/@emotion/cache@11.9.3", + "pkg:npm/@emotion/react@11.9.3", + "pkg:npm/@types/react-transition-group@4.4.5", + "pkg:npm/memoize-one@5.2.1", + "pkg:npm/prop-types@15.8.1", + "pkg:npm/react-transition-group@4.4.2" + ] + }, + { + "ref": "pkg:npm/react-style-singleton@2.2.1", + "dependsOn": [ + "pkg:npm/get-nonce@1.0.1", + "pkg:npm/invariant@2.2.4", + "pkg:npm/tslib@2.4.0" + ] + }, + { + "ref": "pkg:npm/react-syntax-highlighter@15.5.0", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.21.5", + "pkg:npm/highlight.js@10.7.3", + "pkg:npm/lowlight@1.20.0", + "pkg:npm/prismjs@1.28.0", + "pkg:npm/refractor@3.6.0" + ] + }, + { + "ref": "pkg:npm/react-table@7.8.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/react-tabs@3.2.2", + "dependsOn": [ + "pkg:npm/clsx@1.1.1", + "pkg:npm/prop-types@15.7.2" + ] + }, + { + "ref": "pkg:npm/react-textarea-autosize@8.3.4", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.15.4", + "pkg:npm/use-composed-ref@1.3.0", + "pkg:npm/use-latest@1.2.1" + ] + }, + { + "ref": "pkg:npm/react-transition-group@4.4.2", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.17.2", + "pkg:npm/dom-helpers@5.2.1", + "pkg:npm/loose-envify@1.4.0", + "pkg:npm/prop-types@15.8.1" + ] + }, + { + "ref": "pkg:npm/react@18.1.0", + "dependsOn": [ + "pkg:npm/loose-envify@1.4.0" + ] + }, + { + "ref": "pkg:npm/reactflow@11.7.4", + "dependsOn": [ + "pkg:npm/@reactflow/background@11.2.4", + "pkg:npm/@reactflow/controls@11.1.15", + "pkg:npm/@reactflow/core@11.7.4", + "pkg:npm/@reactflow/minimap@11.5.4", + "pkg:npm/@reactflow/node-resizer@2.1.1", + "pkg:npm/@reactflow/node-toolbar@1.2.3" + ] + }, + { + "ref": "pkg:npm/read-pkg-up@8.0.0", + "dependsOn": [ + "pkg:npm/find-up@5.0.0", + "pkg:npm/read-pkg@6.0.0", + "pkg:npm/type-fest@1.4.0" + ] + }, + { + "ref": "pkg:npm/read-pkg@6.0.0", + "dependsOn": [ + "pkg:npm/@types/normalize-package-data@2.4.0", + "pkg:npm/normalize-package-data@3.0.3", + "pkg:npm/parse-json@5.2.0", + "pkg:npm/type-fest@1.4.0" + ] + }, + { + "ref": "pkg:npm/readable-stream@1.1.13", + "dependsOn": [ + "pkg:npm/core-util-is@1.0.2", + "pkg:npm/inherits@2.0.4", + "pkg:npm/isarray@0.0.1", + "pkg:npm/string_decoder@0.10.31" + ] + }, + { + "ref": "pkg:npm/rechoir@0.7.1", + "dependsOn": [ + "pkg:npm/resolve@1.22.0" + ] + }, + { + "ref": "pkg:npm/redent@3.0.0", + "dependsOn": [ + "pkg:npm/indent-string@4.0.0", + "pkg:npm/strip-indent@3.0.0" + ] + }, + { + "ref": "pkg:npm/redent@4.0.0", + "dependsOn": [ + "pkg:npm/indent-string@5.0.0", + "pkg:npm/strip-indent@4.0.0" + ] + }, + { + "ref": "pkg:npm/redoc@2.0.0-rc.72", + "dependsOn": [ + "pkg:npm/@redocly/openapi-core@1.0.0-beta.102", + "pkg:npm/classnames@2.3.1", + "pkg:npm/decko@1.2.0", + "pkg:npm/dompurify@2.2.9", + "pkg:npm/eventemitter3@4.0.7", + "pkg:npm/json-pointer@0.6.2", + "pkg:npm/lunr@2.3.9", + "pkg:npm/mark.js@8.11.1", + "pkg:npm/marked@4.0.17", + "pkg:npm/mobx-react@7.2.0", + "pkg:npm/openapi-sampler@1.3.0", + "pkg:npm/path-browserify@1.0.1", + "pkg:npm/perfect-scrollbar@1.5.1", + "pkg:npm/polished@4.1.3", + "pkg:npm/prismjs@1.28.0", + "pkg:npm/prop-types@15.8.1", + "pkg:npm/react-tabs@3.2.2", + "pkg:npm/slugify@1.4.7", + "pkg:npm/stickyfill@1.1.1", + "pkg:npm/style-loader@3.3.1", + "pkg:npm/swagger2openapi@7.0.6", + "pkg:npm/url-template@2.0.8" + ] + }, + { + "ref": "pkg:npm/refractor@3.6.0", + "dependsOn": [ + "pkg:npm/hastscript@6.0.0", + "pkg:npm/parse-entities@2.0.0", + "pkg:npm/prismjs@1.27.0" + ] + }, + { + "ref": "pkg:npm/reftools@1.1.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/regenerate-unicode-properties@9.0.0", + "dependsOn": [ + "pkg:npm/regenerate@1.4.2" + ] + }, + { + "ref": "pkg:npm/regenerate@1.4.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/regenerator-runtime@0.13.11", + "dependsOn": [] + }, + { + "ref": "pkg:npm/regenerator-runtime@0.13.9", + "dependsOn": [] + }, + { + "ref": "pkg:npm/regenerator-transform@0.14.5", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.16.0" + ] + }, + { + "ref": "pkg:npm/regexp.prototype.flags@1.4.3", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/functions-have-names@1.2.3" + ] + }, + { + "ref": "pkg:npm/regexpp@3.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/regexpu-core@4.8.0", + "dependsOn": [ + "pkg:npm/regenerate-unicode-properties@9.0.0", + "pkg:npm/regenerate@1.4.2", + "pkg:npm/regjsgen@0.5.2", + "pkg:npm/regjsparser@0.7.0", + "pkg:npm/unicode-match-property-ecmascript@2.0.0", + "pkg:npm/unicode-match-property-value-ecmascript@2.0.0" + ] + }, + { + "ref": "pkg:npm/regjsgen@0.5.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/regjsparser@0.7.0", + "dependsOn": [ + "pkg:npm/jsesc@0.5.0" + ] + }, + { + "ref": "pkg:npm/remark-gfm@3.0.1", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/mdast-util-gfm@2.0.1", + "pkg:npm/micromark-extension-gfm@2.0.1", + "pkg:npm/unified@10.1.2" + ] + }, + { + "ref": "pkg:npm/remark-parse@10.0.1", + "dependsOn": [ + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/mdast-util-from-markdown@1.2.0", + "pkg:npm/unified@10.1.2" + ] + }, + { + "ref": "pkg:npm/remark-rehype@10.1.0", + "dependsOn": [ + "pkg:npm/@types/hast@2.3.4", + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/mdast-util-to-hast@12.2.4", + "pkg:npm/unified@10.1.2" + ] + }, + { + "ref": "pkg:npm/remove-accents@0.4.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/require-directory@2.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/require-from-string@2.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/requires-port@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/resolve-cwd@3.0.0", + "dependsOn": [ + "pkg:npm/resolve-from@5.0.0" + ] + }, + { + "ref": "pkg:npm/resolve-from@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/resolve-from@5.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/resolve.exports@1.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/resolve@1.20.0", + "dependsOn": [ + "pkg:npm/is-core-module@2.4.0", + "pkg:npm/path-parse@1.0.7" + ] + }, + { + "ref": "pkg:npm/resolve@1.22.2", + "dependsOn": [ + "pkg:npm/is-core-module@2.11.0", + "pkg:npm/path-parse@1.0.7", + "pkg:npm/supports-preserve-symlinks-flag@1.0.0" + ] + }, + { + "ref": "pkg:npm/resolve@1.22.0", + "dependsOn": [ + "pkg:npm/is-core-module@2.9.0", + "pkg:npm/path-parse@1.0.7", + "pkg:npm/supports-preserve-symlinks-flag@1.0.0" + ] + }, + { + "ref": "pkg:npm/resolve@2.0.0-next.3", + "dependsOn": [ + "pkg:npm/is-core-module@2.4.0", + "pkg:npm/path-parse@1.0.7" + ] + }, + { + "ref": "pkg:npm/reusify@1.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/rimraf@3.0.2", + "dependsOn": [ + "pkg:npm/glob@7.1.7" + ] + }, + { + "ref": "pkg:npm/rimraf@2.7.1", + "dependsOn": [ + "pkg:npm/glob@7.1.7" + ] + }, + { + "ref": "pkg:npm/run-parallel@1.2.0", + "dependsOn": [ + "pkg:npm/queue-microtask@1.2.3" + ] + }, + { + "ref": "pkg:npm/rw@1.3.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/sade@1.8.1", + "dependsOn": [ + "pkg:npm/mri@1.2.0" + ] + }, + { + "ref": "pkg:npm/safe-buffer@5.2.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/safe-buffer@5.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/safe-regex-test@1.0.0", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/get-intrinsic@1.2.0", + "pkg:npm/is-regex@1.1.4" + ] + }, + { + "ref": "pkg:npm/safer-buffer@2.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/sax@1.2.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/saxes@5.0.1", + "dependsOn": [ + "pkg:npm/xmlchars@2.2.0" + ] + }, + { + "ref": "pkg:npm/scheduler@0.22.0", + "dependsOn": [ + "pkg:npm/loose-envify@1.4.0" + ] + }, + { + "ref": "pkg:npm/schema-utils@2.7.1", + "dependsOn": [ + "pkg:npm/@types/json-schema@7.0.7", + "pkg:npm/ajv-keywords@3.5.2", + "pkg:npm/ajv@6.12.6" + ] + }, + { + "ref": "pkg:npm/schema-utils@3.1.1", + "dependsOn": [ + "pkg:npm/@types/json-schema@7.0.11", + "pkg:npm/ajv-keywords@3.5.2", + "pkg:npm/ajv@6.12.6" + ] + }, + { + "ref": "pkg:npm/schema-utils@4.0.0", + "dependsOn": [ + "pkg:npm/@types/json-schema@7.0.11", + "pkg:npm/ajv-formats@2.1.1", + "pkg:npm/ajv-keywords@5.1.0", + "pkg:npm/ajv@8.11.0" + ] + }, + { + "ref": "pkg:npm/semver@7.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/semver@6.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/semver@7.5.4", + "dependsOn": [ + "pkg:npm/lru-cache@6.0.0" + ] + }, + { + "ref": "pkg:npm/serialize-javascript@5.0.1", + "dependsOn": [ + "pkg:npm/randombytes@2.1.0" + ] + }, + { + "ref": "pkg:npm/serialize-javascript@6.0.0", + "dependsOn": [ + "pkg:npm/randombytes@2.1.0" + ] + }, + { + "ref": "pkg:npm/setimmediate@1.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/shallow-clone@3.0.1", + "dependsOn": [ + "pkg:npm/kind-of@6.0.3" + ] + }, + { + "ref": "pkg:npm/shebang-command@2.0.0", + "dependsOn": [ + "pkg:npm/shebang-regex@3.0.0" + ] + }, + { + "ref": "pkg:npm/shebang-regex@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/should-equal@2.0.0", + "dependsOn": [ + "pkg:npm/should-type@1.4.0" + ] + }, + { + "ref": "pkg:npm/should-format@3.0.3", + "dependsOn": [ + "pkg:npm/should-type-adaptors@1.1.0", + "pkg:npm/should-type@1.4.0" + ] + }, + { + "ref": "pkg:npm/should-type-adaptors@1.1.0", + "dependsOn": [ + "pkg:npm/should-type@1.4.0", + "pkg:npm/should-util@1.0.1" + ] + }, + { + "ref": "pkg:npm/should-type@1.4.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/should-util@1.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/should@13.2.3", + "dependsOn": [ + "pkg:npm/should-equal@2.0.0", + "pkg:npm/should-format@3.0.3", + "pkg:npm/should-type-adaptors@1.1.0", + "pkg:npm/should-type@1.4.0", + "pkg:npm/should-util@1.0.1" + ] + }, + { + "ref": "pkg:npm/side-channel@1.0.4", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/get-intrinsic@1.1.1", + "pkg:npm/object-inspect@1.11.0" + ] + }, + { + "ref": "pkg:npm/signal-exit@3.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/signal-exit@3.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/signal-exit@4.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/simple-swizzle@0.2.2", + "dependsOn": [ + "pkg:npm/is-arrayish@0.3.2" + ] + }, + { + "ref": "pkg:npm/sisteransi@1.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/slash@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/slice-ansi@4.0.0", + "dependsOn": [ + "pkg:npm/ansi-styles@4.3.0", + "pkg:npm/astral-regex@2.0.0", + "pkg:npm/is-fullwidth-code-point@3.0.0" + ] + }, + { + "ref": "pkg:npm/slugify@1.4.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/source-list-map@2.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/source-map-js@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/source-map-resolve@0.6.0", + "dependsOn": [ + "pkg:npm/atob@2.1.2", + "pkg:npm/decode-uri-component@0.2.2" + ] + }, + { + "ref": "pkg:npm/source-map-support@0.5.21", + "dependsOn": [ + "pkg:npm/buffer-from@1.1.2", + "pkg:npm/source-map@0.6.1" + ] + }, + { + "ref": "pkg:npm/source-map@0.5.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/source-map@0.6.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/source-map@0.7.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/space-separated-tokens@1.1.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/space-separated-tokens@2.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/spdx-correct@3.1.1", + "dependsOn": [ + "pkg:npm/spdx-expression-parse@3.0.1", + "pkg:npm/spdx-license-ids@3.0.9" + ] + }, + { + "ref": "pkg:npm/spdx-exceptions@2.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/spdx-expression-parse@3.0.1", + "dependsOn": [ + "pkg:npm/spdx-exceptions@2.3.0", + "pkg:npm/spdx-license-ids@3.0.9" + ] + }, + { + "ref": "pkg:npm/spdx-expression-validate@2.0.0", + "dependsOn": [ + "pkg:npm/spdx-expression-parse@3.0.1" + ] + }, + { + "ref": "pkg:npm/spdx-license-ids@3.0.9", + "dependsOn": [] + }, + { + "ref": "pkg:npm/sprintf-js@1.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ssri@8.0.1", + "dependsOn": [ + "pkg:npm/minipass@3.1.3" + ] + }, + { + "ref": "pkg:npm/stable@0.1.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/stack-utils@2.0.5", + "dependsOn": [ + "pkg:npm/escape-string-regexp@2.0.0" + ] + }, + { + "ref": "pkg:npm/stickyfill@1.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/string-length@4.0.2", + "dependsOn": [ + "pkg:npm/char-regex@1.0.2", + "pkg:npm/strip-ansi@6.0.1" + ] + }, + { + "ref": "pkg:npm/string-width@4.2.3", + "dependsOn": [ + "pkg:npm/emoji-regex@8.0.0", + "pkg:npm/is-fullwidth-code-point@3.0.0", + "pkg:npm/strip-ansi@6.0.1" + ] + }, + { + "ref": "pkg:npm/string.prototype.matchall@4.0.7", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/es-abstract@1.20.1", + "pkg:npm/get-intrinsic@1.1.1", + "pkg:npm/has-symbols@1.0.3", + "pkg:npm/internal-slot@1.0.3", + "pkg:npm/regexp.prototype.flags@1.4.3", + "pkg:npm/side-channel@1.0.4" + ] + }, + { + "ref": "pkg:npm/string.prototype.trim@1.2.7", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.21.2" + ] + }, + { + "ref": "pkg:npm/string.prototype.trimend@1.0.4", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3" + ] + }, + { + "ref": "pkg:npm/string.prototype.trimend@1.0.5", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.20.1" + ] + }, + { + "ref": "pkg:npm/string.prototype.trimend@1.0.6", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.21.2" + ] + }, + { + "ref": "pkg:npm/string.prototype.trimstart@1.0.4", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.3" + ] + }, + { + "ref": "pkg:npm/string.prototype.trimstart@1.0.5", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.20.1" + ] + }, + { + "ref": "pkg:npm/string.prototype.trimstart@1.0.6", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/es-abstract@1.21.2" + ] + }, + { + "ref": "pkg:npm/string_decoder@0.10.31", + "dependsOn": [] + }, + { + "ref": "pkg:npm/strip-ansi@6.0.1", + "dependsOn": [ + "pkg:npm/ansi-regex@5.0.1" + ] + }, + { + "ref": "pkg:npm/strip-bom@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/strip-bom@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/strip-comments@2.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/strip-final-newline@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/strip-indent@3.0.0", + "dependsOn": [ + "pkg:npm/min-indent@1.0.1" + ] + }, + { + "ref": "pkg:npm/strip-indent@4.0.0", + "dependsOn": [ + "pkg:npm/min-indent@1.0.1" + ] + }, + { + "ref": "pkg:npm/strip-json-comments@1.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/strip-json-comments@3.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/style-loader@1.3.0", + "dependsOn": [ + "pkg:npm/loader-utils@2.0.4", + "pkg:npm/schema-utils@2.7.1" + ] + }, + { + "ref": "pkg:npm/style-loader@3.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/style-search@0.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/style-to-object@0.3.0", + "dependsOn": [ + "pkg:npm/inline-style-parser@0.1.1" + ] + }, + { + "ref": "pkg:npm/style-value-types@5.0.0", + "dependsOn": [ + "pkg:npm/hey-listen@1.0.8", + "pkg:npm/tslib@2.3.1" + ] + }, + { + "ref": "pkg:npm/stylehacks@5.1.0", + "dependsOn": [ + "pkg:npm/browserslist@4.20.4", + "pkg:npm/postcss-selector-parser@6.0.13" + ] + }, + { + "ref": "pkg:npm/stylelint-config-prettier@9.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/stylelint-config-recommended@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/stylelint-config-standard@20.0.0", + "dependsOn": [ + "pkg:npm/stylelint-config-recommended@3.0.0" + ] + }, + { + "ref": "pkg:npm/stylelint@15.10.1", + "dependsOn": [ + "pkg:npm/@csstools/css-parser-algorithms@2.3.0", + "pkg:npm/@csstools/css-tokenizer@2.1.1", + "pkg:npm/@csstools/media-query-list-parser@2.1.2", + "pkg:npm/@csstools/selector-specificity@3.0.0", + "pkg:npm/balanced-match@2.0.0", + "pkg:npm/colord@2.9.3", + "pkg:npm/cosmiconfig@8.2.0", + "pkg:npm/css-functions-list@3.1.0", + "pkg:npm/css-tree@2.3.1", + "pkg:npm/debug@4.3.4", + "pkg:npm/fast-glob@3.3.0", + "pkg:npm/fastest-levenshtein@1.0.16", + "pkg:npm/file-entry-cache@6.0.1", + "pkg:npm/global-modules@2.0.0", + "pkg:npm/globby@11.1.0", + "pkg:npm/globjoin@0.1.4", + "pkg:npm/html-tags@3.3.1", + "pkg:npm/ignore@5.2.4", + "pkg:npm/import-lazy@4.0.0", + "pkg:npm/imurmurhash@0.1.4", + "pkg:npm/is-plain-object@5.0.0", + "pkg:npm/known-css-properties@0.27.0", + "pkg:npm/mathml-tag-names@2.1.3", + "pkg:npm/meow@10.1.5", + "pkg:npm/micromatch@4.0.5", + "pkg:npm/normalize-path@3.0.0", + "pkg:npm/picocolors@1.0.0", + "pkg:npm/postcss-resolve-nested-selector@0.1.1", + "pkg:npm/postcss-safe-parser@6.0.0", + "pkg:npm/postcss-selector-parser@6.0.13", + "pkg:npm/postcss-value-parser@4.2.0", + "pkg:npm/postcss@8.4.31", + "pkg:npm/resolve-from@5.0.0", + "pkg:npm/string-width@4.2.3", + "pkg:npm/strip-ansi@6.0.1", + "pkg:npm/style-search@0.1.0", + "pkg:npm/supports-hyperlinks@3.0.0", + "pkg:npm/svg-tags@1.0.0", + "pkg:npm/table@6.8.1", + "pkg:npm/write-file-atomic@5.0.1" + ] + }, + { + "ref": "pkg:npm/stylis@4.0.13", + "dependsOn": [] + }, + { + "ref": "pkg:npm/stylis@4.0.10", + "dependsOn": [] + }, + { + "ref": "pkg:npm/supports-color@5.5.0", + "dependsOn": [ + "pkg:npm/has-flag@3.0.0" + ] + }, + { + "ref": "pkg:npm/supports-color@7.2.0", + "dependsOn": [ + "pkg:npm/has-flag@4.0.0" + ] + }, + { + "ref": "pkg:npm/supports-color@8.1.1", + "dependsOn": [ + "pkg:npm/has-flag@4.0.0" + ] + }, + { + "ref": "pkg:npm/supports-hyperlinks@2.2.0", + "dependsOn": [ + "pkg:npm/has-flag@4.0.0", + "pkg:npm/supports-color@7.2.0" + ] + }, + { + "ref": "pkg:npm/supports-hyperlinks@3.0.0", + "dependsOn": [ + "pkg:npm/has-flag@4.0.0", + "pkg:npm/supports-color@7.2.0" + ] + }, + { + "ref": "pkg:npm/supports-preserve-symlinks-flag@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/svg-tags@1.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/svgo@2.8.0", + "dependsOn": [ + "pkg:npm/@trysound/sax@0.2.0", + "pkg:npm/commander@7.2.0", + "pkg:npm/css-select@4.3.0", + "pkg:npm/css-tree@1.1.3", + "pkg:npm/csso@4.2.0", + "pkg:npm/picocolors@1.0.0", + "pkg:npm/stable@0.1.8" + ] + }, + { + "ref": "pkg:npm/swagger-ui-dist@4.1.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/swagger2openapi@7.0.6", + "dependsOn": [ + "pkg:npm/call-me-maybe@1.0.1", + "pkg:npm/node-fetch-h2@2.3.0", + "pkg:npm/node-fetch@2.6.7", + "pkg:npm/node-readfiles@0.2.0", + "pkg:npm/oas-kit-common@1.0.8", + "pkg:npm/oas-resolver@2.5.5", + "pkg:npm/oas-schema-walker@1.1.5", + "pkg:npm/oas-validator@5.0.6", + "pkg:npm/reftools@1.1.8", + "pkg:npm/yaml@1.10.2", + "pkg:npm/yargs@17.0.1" + ] + }, + { + "ref": "pkg:npm/symbol-tree@3.2.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/table@6.8.1", + "dependsOn": [ + "pkg:npm/ajv@8.6.0", + "pkg:npm/lodash.truncate@4.4.2", + "pkg:npm/slice-ansi@4.0.0", + "pkg:npm/string-width@4.2.3", + "pkg:npm/strip-ansi@6.0.1" + ] + }, + { + "ref": "pkg:npm/tapable@2.2.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/tar@6.1.11", + "dependsOn": [ + "pkg:npm/chownr@2.0.0", + "pkg:npm/fs-minipass@2.1.0", + "pkg:npm/minipass@3.1.3", + "pkg:npm/minizlib@2.1.2", + "pkg:npm/mkdirp@1.0.4", + "pkg:npm/yallist@4.0.0" + ] + }, + { + "ref": "pkg:npm/terminal-link@2.1.1", + "dependsOn": [ + "pkg:npm/ansi-escapes@4.3.2", + "pkg:npm/supports-hyperlinks@2.2.0" + ] + }, + { + "ref": "pkg:npm/terser-webpack-plugin@4.2.3", + "dependsOn": [ + "pkg:npm/cacache@15.2.0", + "pkg:npm/find-cache-dir@3.3.1", + "pkg:npm/jest-worker@26.6.2", + "pkg:npm/p-limit@3.1.0", + "pkg:npm/schema-utils@3.1.1", + "pkg:npm/serialize-javascript@5.0.1", + "pkg:npm/source-map@0.6.1", + "pkg:npm/terser@5.14.2", + "pkg:npm/webpack-sources@1.4.3" + ] + }, + { + "ref": "pkg:npm/terser-webpack-plugin@5.3.3", + "dependsOn": [ + "pkg:npm/@jridgewell/trace-mapping@0.3.13", + "pkg:npm/jest-worker@27.5.1", + "pkg:npm/schema-utils@3.1.1", + "pkg:npm/serialize-javascript@6.0.0", + "pkg:npm/terser@5.14.2" + ] + }, + { + "ref": "pkg:npm/terser@5.14.2", + "dependsOn": [ + "pkg:npm/@jridgewell/source-map@0.3.2", + "pkg:npm/acorn@8.7.1", + "pkg:npm/commander@2.20.3", + "pkg:npm/source-map-support@0.5.21" + ] + }, + { + "ref": "pkg:npm/test-exclude@6.0.0", + "dependsOn": [ + "pkg:npm/@istanbuljs/schema@0.1.3", + "pkg:npm/glob@7.1.7", + "pkg:npm/minimatch@3.1.2" + ] + }, + { + "ref": "pkg:npm/text-table@0.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/throat@6.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/tiny-glob@0.2.9", + "dependsOn": [ + "pkg:npm/globalyzer@0.1.0", + "pkg:npm/globrex@0.1.2" + ] + }, + { + "ref": "pkg:npm/tiny-invariant@1.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/tmpl@1.0.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/to-fast-properties@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/to-regex-range@5.0.1", + "dependsOn": [ + "pkg:npm/is-number@7.0.0" + ] + }, + { + "ref": "pkg:npm/toggle-selection@1.0.6", + "dependsOn": [] + }, + { + "ref": "pkg:npm/tough-cookie@4.1.3", + "dependsOn": [ + "pkg:npm/psl@1.8.0", + "pkg:npm/punycode@2.1.1", + "pkg:npm/universalify@0.2.0", + "pkg:npm/url-parse@1.5.10" + ] + }, + { + "ref": "pkg:npm/tr46@2.1.0", + "dependsOn": [ + "pkg:npm/punycode@2.1.1" + ] + }, + { + "ref": "pkg:npm/tr46@0.0.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/trim-lines@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/trim-newlines@4.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/trough@2.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/tsconfig-paths@3.14.2", + "dependsOn": [ + "pkg:npm/@types/json5@0.0.29", + "pkg:npm/json5@1.0.2", + "pkg:npm/minimist@1.2.7", + "pkg:npm/strip-bom@3.0.0" + ] + }, + { + "ref": "pkg:npm/tslib@2.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/tslib@1.14.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/tslib@2.4.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/tslib@2.3.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/tsutils@3.21.0", + "dependsOn": [ + "pkg:npm/tslib@1.14.1" + ] + }, + { + "ref": "pkg:npm/type-check@0.4.0", + "dependsOn": [ + "pkg:npm/prelude-ls@1.2.1" + ] + }, + { + "ref": "pkg:npm/type-check@0.3.2", + "dependsOn": [ + "pkg:npm/prelude-ls@1.1.2" + ] + }, + { + "ref": "pkg:npm/type-detect@4.0.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/type-fest@0.20.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/type-fest@0.21.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/type-fest@1.4.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/type-fest@2.17.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/typed-array-length@1.0.4", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/for-each@0.3.3", + "pkg:npm/is-typed-array@1.1.10" + ] + }, + { + "ref": "pkg:npm/typedarray-to-buffer@3.1.5", + "dependsOn": [ + "pkg:npm/is-typedarray@1.0.0" + ] + }, + { + "ref": "pkg:npm/typescript@4.7.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/ua-parser-js@0.7.33", + "dependsOn": [] + }, + { + "ref": "pkg:npm/unbox-primitive@1.0.1", + "dependsOn": [ + "pkg:npm/function-bind@1.1.1", + "pkg:npm/has-bigints@1.0.1", + "pkg:npm/has-symbols@1.0.2", + "pkg:npm/which-boxed-primitive@1.0.2" + ] + }, + { + "ref": "pkg:npm/unbox-primitive@1.0.2", + "dependsOn": [ + "pkg:npm/call-bind@1.0.2", + "pkg:npm/has-bigints@1.0.2", + "pkg:npm/has-symbols@1.0.3", + "pkg:npm/which-boxed-primitive@1.0.2" + ] + }, + { + "ref": "pkg:npm/undici@5.26.3", + "dependsOn": [ + "pkg:npm/@fastify/busboy@2.0.0" + ] + }, + { + "ref": "pkg:npm/unicode-canonical-property-names-ecmascript@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/unicode-match-property-ecmascript@2.0.0", + "dependsOn": [ + "pkg:npm/unicode-canonical-property-names-ecmascript@2.0.0", + "pkg:npm/unicode-property-aliases-ecmascript@2.0.0" + ] + }, + { + "ref": "pkg:npm/unicode-match-property-value-ecmascript@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/unicode-property-aliases-ecmascript@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/unified@10.1.2", + "dependsOn": [ + "pkg:npm/@types/unist@2.0.6", + "pkg:npm/bail@2.0.2", + "pkg:npm/extend@3.0.2", + "pkg:npm/is-buffer@2.0.5", + "pkg:npm/is-plain-obj@4.1.0", + "pkg:npm/trough@2.1.0", + "pkg:npm/vfile@5.3.6" + ] + }, + { + "ref": "pkg:npm/unique-filename@1.1.1", + "dependsOn": [ + "pkg:npm/unique-slug@2.0.2" + ] + }, + { + "ref": "pkg:npm/unique-slug@2.0.2", + "dependsOn": [ + "pkg:npm/imurmurhash@0.1.4" + ] + }, + { + "ref": "pkg:npm/unist-builder@3.0.0", + "dependsOn": [ + "pkg:npm/@types/unist@2.0.6" + ] + }, + { + "ref": "pkg:npm/unist-util-generated@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/unist-util-is@5.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/unist-util-position@4.0.3", + "dependsOn": [ + "pkg:npm/@types/unist@2.0.6" + ] + }, + { + "ref": "pkg:npm/unist-util-stringify-position@3.0.2", + "dependsOn": [ + "pkg:npm/@types/unist@2.0.6" + ] + }, + { + "ref": "pkg:npm/unist-util-visit-parents@5.1.1", + "dependsOn": [ + "pkg:npm/@types/unist@2.0.6", + "pkg:npm/unist-util-is@5.1.1" + ] + }, + { + "ref": "pkg:npm/unist-util-visit@4.1.1", + "dependsOn": [ + "pkg:npm/@types/unist@2.0.6", + "pkg:npm/unist-util-is@5.1.1", + "pkg:npm/unist-util-visit-parents@5.1.1" + ] + }, + { + "ref": "pkg:npm/universalify@0.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/unload@2.2.0", + "dependsOn": [ + "pkg:npm/@babel/runtime@7.17.2", + "pkg:npm/detect-node@2.1.0" + ] + }, + { + "ref": "pkg:npm/uri-js@4.4.1", + "dependsOn": [ + "pkg:npm/punycode@2.1.1" + ] + }, + { + "ref": "pkg:npm/url-loader@4.1.0", + "dependsOn": [ + "pkg:npm/loader-utils@2.0.4", + "pkg:npm/mime-types@2.1.35", + "pkg:npm/schema-utils@2.7.1" + ] + }, + { + "ref": "pkg:npm/url-parse@1.5.10", + "dependsOn": [ + "pkg:npm/querystringify@2.2.0", + "pkg:npm/requires-port@1.0.0" + ] + }, + { + "ref": "pkg:npm/url-search-params-polyfill@8.1.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/url-template@2.0.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/use-callback-ref@1.3.0", + "dependsOn": [ + "pkg:npm/tslib@2.4.0" + ] + }, + { + "ref": "pkg:npm/use-composed-ref@1.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/use-isomorphic-layout-effect@1.1.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/use-latest@1.2.1", + "dependsOn": [ + "pkg:npm/use-isomorphic-layout-effect@1.1.2" + ] + }, + { + "ref": "pkg:npm/use-sidecar@1.1.2", + "dependsOn": [ + "pkg:npm/detect-node-es@1.1.0", + "pkg:npm/tslib@2.4.0" + ] + }, + { + "ref": "pkg:npm/use-sync-external-store@1.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/util-deprecate@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/uvu@0.5.6", + "dependsOn": [ + "pkg:npm/dequal@2.0.3", + "pkg:npm/diff@5.1.0", + "pkg:npm/kleur@4.1.5", + "pkg:npm/sade@1.8.1" + ] + }, + { + "ref": "pkg:npm/v8-compile-cache@2.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/v8-to-istanbul@8.1.0", + "dependsOn": [ + "pkg:npm/@types/istanbul-lib-coverage@2.0.3", + "pkg:npm/convert-source-map@1.8.0", + "pkg:npm/source-map@0.7.3" + ] + }, + { + "ref": "pkg:npm/validate-npm-package-license@3.0.4", + "dependsOn": [ + "pkg:npm/spdx-correct@3.1.1", + "pkg:npm/spdx-expression-parse@3.0.1" + ] + }, + { + "ref": "pkg:npm/validator@13.9.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/vfile-message@3.1.3", + "dependsOn": [ + "pkg:npm/@types/unist@2.0.6", + "pkg:npm/unist-util-stringify-position@3.0.2" + ] + }, + { + "ref": "pkg:npm/vfile@5.3.6", + "dependsOn": [ + "pkg:npm/@types/unist@2.0.6", + "pkg:npm/is-buffer@2.0.5", + "pkg:npm/unist-util-stringify-position@3.0.2", + "pkg:npm/vfile-message@3.1.3" + ] + }, + { + "ref": "pkg:npm/w3c-hr-time@1.0.2", + "dependsOn": [ + "pkg:npm/browser-process-hrtime@1.0.0" + ] + }, + { + "ref": "pkg:npm/w3c-xmlserializer@2.0.0", + "dependsOn": [ + "pkg:npm/xml-name-validator@3.0.0" + ] + }, + { + "ref": "pkg:npm/walker@1.0.8", + "dependsOn": [ + "pkg:npm/makeerror@1.0.12" + ] + }, + { + "ref": "pkg:npm/watchpack@2.4.0", + "dependsOn": [ + "pkg:npm/glob-to-regexp@0.4.1", + "pkg:npm/graceful-fs@4.2.9" + ] + }, + { + "ref": "pkg:npm/web-worker@1.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/webidl-conversions@3.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/webidl-conversions@5.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/webidl-conversions@6.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/webpack-cli@4.10.0", + "dependsOn": [ + "pkg:npm/@discoveryjs/json-ext@0.5.7", + "pkg:npm/@webpack-cli/configtest@1.2.0", + "pkg:npm/@webpack-cli/info@1.5.0", + "pkg:npm/@webpack-cli/serve@1.7.0", + "pkg:npm/colorette@2.0.19", + "pkg:npm/commander@7.2.0", + "pkg:npm/cross-spawn@7.0.3", + "pkg:npm/fastest-levenshtein@1.0.16", + "pkg:npm/import-local@3.0.3", + "pkg:npm/interpret@2.2.0", + "pkg:npm/rechoir@0.7.1", + "pkg:npm/webpack-merge@5.8.0" + ] + }, + { + "ref": "pkg:npm/webpack-license-plugin@4.2.2", + "dependsOn": [ + "pkg:npm/chalk@5.0.1", + "pkg:npm/get-npm-tarball-url@2.0.2", + "pkg:npm/lodash@4.17.21", + "pkg:npm/needle@2.9.1", + "pkg:npm/spdx-expression-validate@2.0.0", + "pkg:npm/webpack-sources@3.2.3" + ] + }, + { + "ref": "pkg:npm/webpack-manifest-plugin@4.1.1", + "dependsOn": [ + "pkg:npm/tapable@2.2.1", + "pkg:npm/webpack-sources@2.3.1" + ] + }, + { + "ref": "pkg:npm/webpack-merge@5.8.0", + "dependsOn": [ + "pkg:npm/clone-deep@4.0.1", + "pkg:npm/wildcard@2.0.0" + ] + }, + { + "ref": "pkg:npm/webpack-sources@1.4.3", + "dependsOn": [ + "pkg:npm/source-list-map@2.0.1", + "pkg:npm/source-map@0.6.1" + ] + }, + { + "ref": "pkg:npm/webpack-sources@2.3.1", + "dependsOn": [ + "pkg:npm/source-list-map@2.0.1", + "pkg:npm/source-map@0.6.1" + ] + }, + { + "ref": "pkg:npm/webpack-sources@3.2.3", + "dependsOn": [] + }, + { + "ref": "pkg:npm/webpack@5.76.0", + "dependsOn": [ + "pkg:npm/@types/eslint-scope@3.7.3", + "pkg:npm/@types/estree@0.0.51", + "pkg:npm/@webassemblyjs/ast@1.11.1", + "pkg:npm/@webassemblyjs/wasm-edit@1.11.1", + "pkg:npm/@webassemblyjs/wasm-parser@1.11.1", + "pkg:npm/acorn-import-assertions@1.8.0", + "pkg:npm/acorn@8.7.1", + "pkg:npm/browserslist@4.20.4", + "pkg:npm/chrome-trace-event@1.0.3", + "pkg:npm/enhanced-resolve@5.12.0", + "pkg:npm/es-module-lexer@0.9.3", + "pkg:npm/eslint-scope@5.1.1", + "pkg:npm/events@3.3.0", + "pkg:npm/glob-to-regexp@0.4.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/json-parse-even-better-errors@2.3.1", + "pkg:npm/loader-runner@4.3.0", + "pkg:npm/mime-types@2.1.35", + "pkg:npm/neo-async@2.6.2", + "pkg:npm/schema-utils@3.1.1", + "pkg:npm/tapable@2.2.1", + "pkg:npm/terser-webpack-plugin@5.3.3", + "pkg:npm/watchpack@2.4.0", + "pkg:npm/webpack-sources@3.2.3" + ] + }, + { + "ref": "pkg:npm/whatwg-encoding@1.0.5", + "dependsOn": [ + "pkg:npm/iconv-lite@0.4.24" + ] + }, + { + "ref": "pkg:npm/whatwg-mimetype@2.3.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/whatwg-url@5.0.0", + "dependsOn": [ + "pkg:npm/tr46@0.0.3", + "pkg:npm/webidl-conversions@3.0.1" + ] + }, + { + "ref": "pkg:npm/whatwg-url@8.7.0", + "dependsOn": [ + "pkg:npm/lodash@4.17.21", + "pkg:npm/tr46@2.1.0", + "pkg:npm/webidl-conversions@6.1.0" + ] + }, + { + "ref": "pkg:npm/which-boxed-primitive@1.0.2", + "dependsOn": [ + "pkg:npm/is-bigint@1.0.2", + "pkg:npm/is-boolean-object@1.1.1", + "pkg:npm/is-number-object@1.0.5", + "pkg:npm/is-string@1.0.6", + "pkg:npm/is-symbol@1.0.4" + ] + }, + { + "ref": "pkg:npm/which-typed-array@1.1.9", + "dependsOn": [ + "pkg:npm/available-typed-arrays@1.0.5", + "pkg:npm/call-bind@1.0.2", + "pkg:npm/for-each@0.3.3", + "pkg:npm/gopd@1.0.1", + "pkg:npm/has-tostringtag@1.0.0", + "pkg:npm/is-typed-array@1.1.10" + ] + }, + { + "ref": "pkg:npm/which@1.3.1", + "dependsOn": [ + "pkg:npm/isexe@2.0.0" + ] + }, + { + "ref": "pkg:npm/which@2.0.2", + "dependsOn": [ + "pkg:npm/isexe@2.0.0" + ] + }, + { + "ref": "pkg:npm/wildcard@2.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/word-wrap@1.2.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/wrap-ansi@7.0.0", + "dependsOn": [ + "pkg:npm/ansi-styles@4.3.0", + "pkg:npm/string-width@4.2.3", + "pkg:npm/strip-ansi@6.0.1" + ] + }, + { + "ref": "pkg:npm/wrappy@1.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/write-file-atomic@3.0.3", + "dependsOn": [ + "pkg:npm/imurmurhash@0.1.4", + "pkg:npm/is-typedarray@1.0.0", + "pkg:npm/signal-exit@3.0.3", + "pkg:npm/typedarray-to-buffer@3.1.5" + ] + }, + { + "ref": "pkg:npm/write-file-atomic@5.0.1", + "dependsOn": [ + "pkg:npm/imurmurhash@0.1.4", + "pkg:npm/signal-exit@4.0.2" + ] + }, + { + "ref": "pkg:npm/ws@7.5.5", + "dependsOn": [] + }, + { + "ref": "pkg:npm/xml-name-validator@3.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/xmlchars@2.2.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/xtend@4.0.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/y18n@5.0.8", + "dependsOn": [] + }, + { + "ref": "pkg:npm/yallist@4.0.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/yaml-ast-parser@0.0.43", + "dependsOn": [] + }, + { + "ref": "pkg:npm/yaml@1.10.2", + "dependsOn": [] + }, + { + "ref": "pkg:npm/yargs-parser@20.2.7", + "dependsOn": [] + }, + { + "ref": "pkg:npm/yargs-parser@20.2.9", + "dependsOn": [] + }, + { + "ref": "pkg:npm/yargs-parser@21.0.1", + "dependsOn": [] + }, + { + "ref": "pkg:npm/yargs@16.2.0", + "dependsOn": [ + "pkg:npm/cliui@7.0.4", + "pkg:npm/escalade@3.1.1", + "pkg:npm/get-caller-file@2.0.5", + "pkg:npm/require-directory@2.1.1", + "pkg:npm/string-width@4.2.3", + "pkg:npm/y18n@5.0.8", + "pkg:npm/yargs-parser@20.2.7" + ] + }, + { + "ref": "pkg:npm/yargs@17.0.1", + "dependsOn": [ + "pkg:npm/cliui@7.0.4", + "pkg:npm/escalade@3.1.1", + "pkg:npm/get-caller-file@2.0.5", + "pkg:npm/require-directory@2.1.1", + "pkg:npm/string-width@4.2.3", + "pkg:npm/y18n@5.0.8", + "pkg:npm/yargs-parser@20.2.7" + ] + }, + { + "ref": "pkg:npm/yocto-queue@0.1.0", + "dependsOn": [] + }, + { + "ref": "pkg:npm/zrender@5.4.3", + "dependsOn": [ + "pkg:npm/tslib@2.3.0" + ] + }, + { + "ref": "pkg:npm/zustand@4.3.9", + "dependsOn": [ + "pkg:npm/use-sync-external-store@1.2.0" + ] + }, + { + "ref": "pkg:npm/zwitch@2.0.4", + "dependsOn": [] + }, + { + "ref": "pkg:npm/python3.10", + "dependsOn": [ + "pkg:npm/@ampproject/remapping@2.1.1", + "pkg:npm/@ampproject/remapping@2.2.0", + "pkg:npm/@babel/code-frame@7.14.5", + "pkg:npm/@babel/code-frame@7.16.0", + "pkg:npm/@babel/code-frame@7.16.7", + "pkg:npm/@babel/code-frame@7.22.13", + "pkg:npm/@babel/compat-data@7.16.0", + "pkg:npm/@babel/compat-data@7.17.0", + "pkg:npm/@babel/compat-data@7.18.5", + "pkg:npm/@babel/core@7.16.0", + "pkg:npm/@babel/core@7.17.2", + "pkg:npm/@babel/core@7.18.5", + "pkg:npm/@babel/eslint-parser@7.18.2", + "pkg:npm/@babel/generator@7.16.0", + "pkg:npm/@babel/generator@7.17.0", + "pkg:npm/@babel/generator@7.18.2", + "pkg:npm/@babel/generator@7.23.0", + "pkg:npm/@babel/helper-annotate-as-pure@7.16.0", + "pkg:npm/@babel/helper-annotate-as-pure@7.16.7", + "pkg:npm/@babel/helper-builder-binary-assignment-operator-visitor@7.16.0", + "pkg:npm/@babel/helper-compilation-targets@7.16.0", + "pkg:npm/@babel/helper-compilation-targets@7.16.7", + "pkg:npm/@babel/helper-compilation-targets@7.18.2", + "pkg:npm/@babel/helper-create-class-features-plugin@7.16.0", + "pkg:npm/@babel/helper-create-class-features-plugin@7.18.0", + "pkg:npm/@babel/helper-create-regexp-features-plugin@7.16.0", + "pkg:npm/@babel/helper-define-polyfill-provider@0.2.4", + "pkg:npm/@babel/helper-environment-visitor@7.16.7", + "pkg:npm/@babel/helper-environment-visitor@7.18.2", + "pkg:npm/@babel/helper-environment-visitor@7.22.20", + "pkg:npm/@babel/helper-explode-assignable-expression@7.16.0", + "pkg:npm/@babel/helper-function-name@7.16.0", + "pkg:npm/@babel/helper-function-name@7.17.9", + "pkg:npm/@babel/helper-function-name@7.23.0", + "pkg:npm/@babel/helper-get-function-arity@7.16.0", + "pkg:npm/@babel/helper-hoist-variables@7.16.0", + "pkg:npm/@babel/helper-hoist-variables@7.22.5", + "pkg:npm/@babel/helper-member-expression-to-functions@7.16.0", + "pkg:npm/@babel/helper-member-expression-to-functions@7.17.7", + "pkg:npm/@babel/helper-module-imports@7.14.5", + "pkg:npm/@babel/helper-module-imports@7.16.0", + "pkg:npm/@babel/helper-module-imports@7.16.7", + "pkg:npm/@babel/helper-module-transforms@7.16.0", + "pkg:npm/@babel/helper-module-transforms@7.16.7", + "pkg:npm/@babel/helper-module-transforms@7.18.0", + "pkg:npm/@babel/helper-optimise-call-expression@7.16.0", + "pkg:npm/@babel/helper-optimise-call-expression@7.16.7", + "pkg:npm/@babel/helper-plugin-utils@7.14.5", + "pkg:npm/@babel/helper-plugin-utils@7.17.12", + "pkg:npm/@babel/helper-remap-async-to-generator@7.16.0", + "pkg:npm/@babel/helper-replace-supers@7.16.0", + "pkg:npm/@babel/helper-replace-supers@7.18.2", + "pkg:npm/@babel/helper-simple-access@7.16.0", + "pkg:npm/@babel/helper-simple-access@7.16.7", + "pkg:npm/@babel/helper-simple-access@7.18.2", + "pkg:npm/@babel/helper-skip-transparent-expression-wrappers@7.16.0", + "pkg:npm/@babel/helper-split-export-declaration@7.16.0", + "pkg:npm/@babel/helper-split-export-declaration@7.16.7", + "pkg:npm/@babel/helper-split-export-declaration@7.22.6", + "pkg:npm/@babel/helper-string-parser@7.22.5", + "pkg:npm/@babel/helper-validator-identifier@7.14.5", + "pkg:npm/@babel/helper-validator-identifier@7.15.7", + "pkg:npm/@babel/helper-validator-identifier@7.16.7", + "pkg:npm/@babel/helper-validator-identifier@7.22.20", + "pkg:npm/@babel/helper-validator-option@7.14.5", + "pkg:npm/@babel/helper-validator-option@7.16.7", + "pkg:npm/@babel/helper-wrap-function@7.16.0", + "pkg:npm/@babel/helpers@7.16.0", + "pkg:npm/@babel/helpers@7.17.2", + "pkg:npm/@babel/helpers@7.18.2", + "pkg:npm/@babel/highlight@7.14.5", + "pkg:npm/@babel/highlight@7.16.0", + "pkg:npm/@babel/highlight@7.16.10", + "pkg:npm/@babel/highlight@7.22.20", + "pkg:npm/@babel/parser@7.16.2", + "pkg:npm/@babel/parser@7.17.0", + "pkg:npm/@babel/parser@7.18.5", + "pkg:npm/@babel/parser@7.23.0", + "pkg:npm/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.16.2", + "pkg:npm/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.16.0", + "pkg:npm/@babel/plugin-proposal-async-generator-functions@7.16.0", + "pkg:npm/@babel/plugin-proposal-class-properties@7.16.0", + "pkg:npm/@babel/plugin-proposal-class-static-block@7.16.0", + "pkg:npm/@babel/plugin-proposal-dynamic-import@7.16.0", + "pkg:npm/@babel/plugin-proposal-export-namespace-from@7.16.0", + "pkg:npm/@babel/plugin-proposal-json-strings@7.16.0", + "pkg:npm/@babel/plugin-proposal-logical-assignment-operators@7.16.0", + "pkg:npm/@babel/plugin-proposal-nullish-coalescing-operator@7.16.0", + "pkg:npm/@babel/plugin-proposal-numeric-separator@7.16.0", + "pkg:npm/@babel/plugin-proposal-object-rest-spread@7.16.0", + "pkg:npm/@babel/plugin-proposal-optional-catch-binding@7.16.0", + "pkg:npm/@babel/plugin-proposal-optional-chaining@7.16.0", + "pkg:npm/@babel/plugin-proposal-private-methods@7.16.0", + "pkg:npm/@babel/plugin-proposal-private-property-in-object@7.16.0", + "pkg:npm/@babel/plugin-proposal-unicode-property-regex@7.16.0", + "pkg:npm/@babel/plugin-syntax-async-generators@7.8.4", + "pkg:npm/@babel/plugin-syntax-bigint@7.8.3", + "pkg:npm/@babel/plugin-syntax-class-properties@7.12.13", + "pkg:npm/@babel/plugin-syntax-class-static-block@7.14.5", + "pkg:npm/@babel/plugin-syntax-dynamic-import@7.8.3", + "pkg:npm/@babel/plugin-syntax-export-namespace-from@7.8.3", + "pkg:npm/@babel/plugin-syntax-import-meta@7.10.4", + "pkg:npm/@babel/plugin-syntax-json-strings@7.8.3", + "pkg:npm/@babel/plugin-syntax-jsx@7.14.5", + "pkg:npm/@babel/plugin-syntax-jsx@7.16.0", + "pkg:npm/@babel/plugin-syntax-logical-assignment-operators@7.10.4", + "pkg:npm/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3", + "pkg:npm/@babel/plugin-syntax-numeric-separator@7.10.4", + "pkg:npm/@babel/plugin-syntax-object-rest-spread@7.8.3", + "pkg:npm/@babel/plugin-syntax-optional-catch-binding@7.8.3", + "pkg:npm/@babel/plugin-syntax-optional-chaining@7.8.3", + "pkg:npm/@babel/plugin-syntax-private-property-in-object@7.14.5", + "pkg:npm/@babel/plugin-syntax-top-level-await@7.14.5", + "pkg:npm/@babel/plugin-syntax-typescript@7.16.0", + "pkg:npm/@babel/plugin-syntax-typescript@7.17.12", + "pkg:npm/@babel/plugin-transform-arrow-functions@7.16.0", + "pkg:npm/@babel/plugin-transform-async-to-generator@7.16.0", + "pkg:npm/@babel/plugin-transform-block-scoped-functions@7.16.0", + "pkg:npm/@babel/plugin-transform-block-scoping@7.16.0", + "pkg:npm/@babel/plugin-transform-classes@7.16.0", + "pkg:npm/@babel/plugin-transform-computed-properties@7.16.0", + "pkg:npm/@babel/plugin-transform-destructuring@7.16.0", + "pkg:npm/@babel/plugin-transform-dotall-regex@7.16.0", + "pkg:npm/@babel/plugin-transform-duplicate-keys@7.16.0", + "pkg:npm/@babel/plugin-transform-exponentiation-operator@7.16.0", + "pkg:npm/@babel/plugin-transform-for-of@7.16.0", + "pkg:npm/@babel/plugin-transform-function-name@7.16.0", + "pkg:npm/@babel/plugin-transform-literals@7.16.0", + "pkg:npm/@babel/plugin-transform-member-expression-literals@7.16.0", + "pkg:npm/@babel/plugin-transform-modules-amd@7.16.0", + "pkg:npm/@babel/plugin-transform-modules-commonjs@7.16.0", + "pkg:npm/@babel/plugin-transform-modules-systemjs@7.16.0", + "pkg:npm/@babel/plugin-transform-modules-umd@7.16.0", + "pkg:npm/@babel/plugin-transform-named-capturing-groups-regex@7.16.0", + "pkg:npm/@babel/plugin-transform-new-target@7.16.0", + "pkg:npm/@babel/plugin-transform-object-super@7.16.0", + "pkg:npm/@babel/plugin-transform-parameters@7.16.0", + "pkg:npm/@babel/plugin-transform-property-literals@7.16.0", + "pkg:npm/@babel/plugin-transform-react-display-name@7.16.0", + "pkg:npm/@babel/plugin-transform-react-jsx-development@7.16.0", + "pkg:npm/@babel/plugin-transform-react-jsx@7.16.0", + "pkg:npm/@babel/plugin-transform-react-pure-annotations@7.16.0", + "pkg:npm/@babel/plugin-transform-regenerator@7.16.0", + "pkg:npm/@babel/plugin-transform-reserved-words@7.16.0", + "pkg:npm/@babel/plugin-transform-runtime@7.16.0", + "pkg:npm/@babel/plugin-transform-shorthand-properties@7.16.0", + "pkg:npm/@babel/plugin-transform-spread@7.16.0", + "pkg:npm/@babel/plugin-transform-sticky-regex@7.16.0", + "pkg:npm/@babel/plugin-transform-template-literals@7.16.0", + "pkg:npm/@babel/plugin-transform-typeof-symbol@7.16.0", + "pkg:npm/@babel/plugin-transform-typescript@7.18.4", + "pkg:npm/@babel/plugin-transform-unicode-escapes@7.16.0", + "pkg:npm/@babel/plugin-transform-unicode-regex@7.16.0", + "pkg:npm/@babel/preset-env@7.16.0", + "pkg:npm/@babel/preset-modules@0.1.5", + "pkg:npm/@babel/preset-react@7.16.0", + "pkg:npm/@babel/preset-typescript@7.17.12", + "pkg:npm/@babel/runtime-corejs3@7.15.4", + "pkg:npm/@babel/runtime@7.14.6", + "pkg:npm/@babel/runtime@7.15.3", + "pkg:npm/@babel/runtime@7.15.4", + "pkg:npm/@babel/runtime@7.16.0", + "pkg:npm/@babel/runtime@7.17.2", + "pkg:npm/@babel/runtime@7.17.9", + "pkg:npm/@babel/runtime@7.18.3", + "pkg:npm/@babel/runtime@7.21.5", + "pkg:npm/@babel/template@7.16.0", + "pkg:npm/@babel/template@7.16.7", + "pkg:npm/@babel/template@7.22.15", + "pkg:npm/@babel/traverse@7.23.2", + "pkg:npm/@babel/types@7.14.5", + "pkg:npm/@babel/types@7.16.0", + "pkg:npm/@babel/types@7.17.0", + "pkg:npm/@babel/types@7.18.4", + "pkg:npm/@babel/types@7.23.0", + "pkg:npm/@bcoe/v8-coverage@0.2.3", + "pkg:npm/@chakra-ui/accordion@2.1.4", + "pkg:npm/@chakra-ui/alert@2.0.13", + "pkg:npm/@chakra-ui/anatomy@2.1.0", + "pkg:npm/@chakra-ui/avatar@2.2.1", + "pkg:npm/@chakra-ui/breadcrumb@2.1.1", + "pkg:npm/@chakra-ui/breakpoint-utils@2.0.5", + "pkg:npm/@chakra-ui/button@2.0.13", + "pkg:npm/@chakra-ui/card@2.1.1", + "pkg:npm/@chakra-ui/checkbox@2.2.5", + "pkg:npm/@chakra-ui/clickable@2.0.11", + "pkg:npm/@chakra-ui/close-button@2.0.13", + "pkg:npm/@chakra-ui/color-mode@2.1.10", + "pkg:npm/@chakra-ui/control-box@2.0.11", + "pkg:npm/@chakra-ui/counter@2.0.11", + "pkg:npm/@chakra-ui/css-reset@2.0.10", + "pkg:npm/@chakra-ui/descendant@3.0.11", + "pkg:npm/@chakra-ui/dom-utils@2.0.4", + "pkg:npm/@chakra-ui/editable@2.0.16", + "pkg:npm/@chakra-ui/event-utils@2.0.6", + "pkg:npm/@chakra-ui/focus-lock@2.0.13", + "pkg:npm/@chakra-ui/form-control@2.0.13", + "pkg:npm/@chakra-ui/hooks@2.1.2", + "pkg:npm/@chakra-ui/icon@3.0.13", + "pkg:npm/@chakra-ui/image@2.0.12", + "pkg:npm/@chakra-ui/input@2.0.14", + "pkg:npm/@chakra-ui/layout@2.1.11", + "pkg:npm/@chakra-ui/lazy-utils@2.0.3", + "pkg:npm/@chakra-ui/live-region@2.0.11", + "pkg:npm/@chakra-ui/media-query@3.2.8", + "pkg:npm/@chakra-ui/menu@2.1.5", + "pkg:npm/@chakra-ui/modal@2.2.4", + "pkg:npm/@chakra-ui/number-input@2.0.14", + "pkg:npm/@chakra-ui/number-utils@2.0.5", + "pkg:npm/@chakra-ui/object-utils@2.0.5", + "pkg:npm/@chakra-ui/pin-input@2.0.16", + "pkg:npm/@chakra-ui/popover@2.1.4", + "pkg:npm/@chakra-ui/popper@3.0.10", + "pkg:npm/@chakra-ui/portal@2.0.11", + "pkg:npm/@chakra-ui/progress@2.1.1", + "pkg:npm/@chakra-ui/provider@2.0.24", + "pkg:npm/@chakra-ui/radio@2.0.14", + "pkg:npm/@chakra-ui/react-children-utils@2.0.4", + "pkg:npm/@chakra-ui/react-context@2.0.5", + "pkg:npm/@chakra-ui/react-env@2.0.11", + "pkg:npm/@chakra-ui/react-types@2.0.5", + "pkg:npm/@chakra-ui/react-use-animation-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-callback-ref@2.0.5", + "pkg:npm/@chakra-ui/react-use-controllable-state@2.0.6", + "pkg:npm/@chakra-ui/react-use-disclosure@2.0.6", + "pkg:npm/@chakra-ui/react-use-event-listener@2.0.5", + "pkg:npm/@chakra-ui/react-use-focus-effect@2.0.7", + "pkg:npm/@chakra-ui/react-use-focus-on-pointer-down@2.0.4", + "pkg:npm/@chakra-ui/react-use-interval@2.0.3", + "pkg:npm/@chakra-ui/react-use-latest-ref@2.0.3", + "pkg:npm/@chakra-ui/react-use-merge-refs@2.0.5", + "pkg:npm/@chakra-ui/react-use-outside-click@2.0.5", + "pkg:npm/@chakra-ui/react-use-pan-event@2.0.6", + "pkg:npm/@chakra-ui/react-use-previous@2.0.3", + "pkg:npm/@chakra-ui/react-use-safe-layout-effect@2.0.3", + "pkg:npm/@chakra-ui/react-use-size@2.0.5", + "pkg:npm/@chakra-ui/react-use-timeout@2.0.3", + "pkg:npm/@chakra-ui/react-use-update-effect@2.0.5", + "pkg:npm/@chakra-ui/react-utils@2.0.9", + "pkg:npm/@chakra-ui/react@2.4.2", + "pkg:npm/@chakra-ui/select@2.0.14", + "pkg:npm/@chakra-ui/shared-utils@2.0.3", + "pkg:npm/@chakra-ui/skeleton@2.0.18", + "pkg:npm/@chakra-ui/slider@2.0.14", + "pkg:npm/@chakra-ui/spinner@2.0.11", + "pkg:npm/@chakra-ui/stat@2.0.13", + "pkg:npm/@chakra-ui/styled-system@2.4.0", + "pkg:npm/@chakra-ui/switch@2.0.17", + "pkg:npm/@chakra-ui/system@2.3.4", + "pkg:npm/@chakra-ui/table@2.0.12", + "pkg:npm/@chakra-ui/tabs@2.1.5", + "pkg:npm/@chakra-ui/tag@2.0.13", + "pkg:npm/@chakra-ui/textarea@2.0.14", + "pkg:npm/@chakra-ui/theme-tools@2.0.14", + "pkg:npm/@chakra-ui/theme-utils@2.0.5", + "pkg:npm/@chakra-ui/theme@2.2.2", + "pkg:npm/@chakra-ui/toast@4.0.4", + "pkg:npm/@chakra-ui/tooltip@2.2.2", + "pkg:npm/@chakra-ui/transition@2.0.12", + "pkg:npm/@chakra-ui/utils@2.0.12", + "pkg:npm/@chakra-ui/visually-hidden@2.0.13", + "pkg:npm/@csstools/css-parser-algorithms@2.3.0", + "pkg:npm/@csstools/css-tokenizer@2.1.1", + "pkg:npm/@csstools/media-query-list-parser@2.1.2", + "pkg:npm/@csstools/selector-specificity@3.0.0", + "pkg:npm/@discoveryjs/json-ext@0.5.7", + "pkg:npm/@emotion/babel-plugin@11.3.0", + "pkg:npm/@emotion/babel-plugin@11.9.2", + "pkg:npm/@emotion/cache@11.9.3", + "pkg:npm/@emotion/hash@0.8.0", + "pkg:npm/@emotion/is-prop-valid@0.8.8", + "pkg:npm/@emotion/is-prop-valid@1.1.0", + "pkg:npm/@emotion/memoize@0.7.4", + "pkg:npm/@emotion/memoize@0.7.5", + "pkg:npm/@emotion/react@11.9.3", + "pkg:npm/@emotion/serialize@1.0.2", + "pkg:npm/@emotion/serialize@1.0.4", + "pkg:npm/@emotion/sheet@1.1.1", + "pkg:npm/@emotion/styled@11.3.0", + "pkg:npm/@emotion/unitless@0.7.5", + "pkg:npm/@emotion/utils@1.1.0", + "pkg:npm/@emotion/weak-memoize@0.2.5", + "pkg:npm/@eslint/eslintrc@1.3.0", + "pkg:npm/@exodus/schemasafe@1.0.0-rc.3", + "pkg:npm/@fastify/busboy@2.0.0", + "pkg:npm/@humanwhocodes/config-array@0.9.5", + "pkg:npm/@humanwhocodes/object-schema@1.2.1", + "pkg:npm/@istanbuljs/load-nyc-config@1.1.0", + "pkg:npm/@istanbuljs/schema@0.1.3", + "pkg:npm/@jest/console@27.5.1", + "pkg:npm/@jest/core@27.5.1", + "pkg:npm/@jest/environment@27.5.1", + "pkg:npm/@jest/fake-timers@27.5.1", + "pkg:npm/@jest/globals@27.5.1", + "pkg:npm/@jest/reporters@27.5.1", + "pkg:npm/@jest/source-map@27.5.1", + "pkg:npm/@jest/test-result@27.5.1", + "pkg:npm/@jest/test-sequencer@27.5.1", + "pkg:npm/@jest/transform@27.3.1", + "pkg:npm/@jest/transform@27.5.1", + "pkg:npm/@jest/types@27.2.5", + "pkg:npm/@jest/types@27.5.1", + "pkg:npm/@jridgewell/gen-mapping@0.1.1", + "pkg:npm/@jridgewell/gen-mapping@0.3.2", + "pkg:npm/@jridgewell/gen-mapping@0.3.3", + "pkg:npm/@jridgewell/resolve-uri@3.1.0", + "pkg:npm/@jridgewell/resolve-uri@3.1.1", + "pkg:npm/@jridgewell/set-array@1.1.1", + "pkg:npm/@jridgewell/set-array@1.1.2", + "pkg:npm/@jridgewell/source-map@0.3.2", + "pkg:npm/@jridgewell/sourcemap-codec@1.4.14", + "pkg:npm/@jridgewell/sourcemap-codec@1.4.15", + "pkg:npm/@jridgewell/trace-mapping@0.3.13", + "pkg:npm/@jridgewell/trace-mapping@0.3.14", + "pkg:npm/@jridgewell/trace-mapping@0.3.19", + "pkg:npm/@jridgewell/trace-mapping@0.3.4", + "pkg:npm/@nodelib/fs.scandir@2.1.5", + "pkg:npm/@nodelib/fs.stat@2.0.5", + "pkg:npm/@nodelib/fs.walk@1.2.7", + "pkg:npm/@npmcli/move-file@1.1.2", + "pkg:npm/@popperjs/core@2.11.2", + "pkg:npm/@reactflow/background@11.2.4", + "pkg:npm/@reactflow/controls@11.1.15", + "pkg:npm/@reactflow/core@11.7.4", + "pkg:npm/@reactflow/minimap@11.5.4", + "pkg:npm/@reactflow/node-resizer@2.1.1", + "pkg:npm/@reactflow/node-toolbar@1.2.3", + "pkg:npm/@redocly/ajv@8.6.4", + "pkg:npm/@redocly/openapi-core@1.0.0-beta.102", + "pkg:npm/@sinonjs/commons@1.8.3", + "pkg:npm/@sinonjs/fake-timers@8.1.0", + "pkg:npm/@testing-library/dom@8.13.0", + "pkg:npm/@testing-library/jest-dom@5.16.4", + "pkg:npm/@testing-library/react@13.3.0", + "pkg:npm/@tootallnate/once@1.1.2", + "pkg:npm/@trysound/sax@0.2.0", + "pkg:npm/@types/aria-query@4.2.2", + "pkg:npm/@types/babel__core@7.1.16", + "pkg:npm/@types/babel__generator@7.6.3", + "pkg:npm/@types/babel__template@7.4.1", + "pkg:npm/@types/babel__traverse@7.14.2", + "pkg:npm/@types/color-convert@2.0.0", + "pkg:npm/@types/color-name@1.1.1", + "pkg:npm/@types/color@3.0.3", + "pkg:npm/@types/d3-array@3.0.3", + "pkg:npm/@types/d3-axis@3.0.1", + "pkg:npm/@types/d3-brush@3.0.1", + "pkg:npm/@types/d3-chord@3.0.1", + "pkg:npm/@types/d3-color@1.4.2", + "pkg:npm/@types/d3-color@3.1.0", + "pkg:npm/@types/d3-contour@3.0.1", + "pkg:npm/@types/d3-delaunay@6.0.1", + "pkg:npm/@types/d3-dispatch@3.0.1", + "pkg:npm/@types/d3-drag@3.0.1", + "pkg:npm/@types/d3-dsv@3.0.0", + "pkg:npm/@types/d3-ease@3.0.0", + "pkg:npm/@types/d3-fetch@3.0.1", + "pkg:npm/@types/d3-force@3.0.3", + "pkg:npm/@types/d3-format@3.0.1", + "pkg:npm/@types/d3-geo@3.0.2", + "pkg:npm/@types/d3-hierarchy@3.1.0", + "pkg:npm/@types/d3-interpolate@1.4.2", + "pkg:npm/@types/d3-interpolate@3.0.1", + "pkg:npm/@types/d3-path@1.0.9", + "pkg:npm/@types/d3-path@3.0.0", + "pkg:npm/@types/d3-polygon@3.0.0", + "pkg:npm/@types/d3-quadtree@3.0.2", + "pkg:npm/@types/d3-random@3.0.1", + "pkg:npm/@types/d3-scale-chromatic@3.0.0", + "pkg:npm/@types/d3-scale@3.3.2", + "pkg:npm/@types/d3-scale@4.0.2", + "pkg:npm/@types/d3-selection@3.0.3", + "pkg:npm/@types/d3-shape@1.3.8", + "pkg:npm/@types/d3-shape@3.1.0", + "pkg:npm/@types/d3-time-format@4.0.0", + "pkg:npm/@types/d3-time@2.1.1", + "pkg:npm/@types/d3-time@3.0.0", + "pkg:npm/@types/d3-timer@3.0.0", + "pkg:npm/@types/d3-transition@3.0.2", + "pkg:npm/@types/d3-zoom@3.0.1", + "pkg:npm/@types/d3@7.4.0", + "pkg:npm/@types/debug@4.1.7", + "pkg:npm/@types/eslint-scope@3.7.3", + "pkg:npm/@types/eslint@8.4.3", + "pkg:npm/@types/estree@0.0.51", + "pkg:npm/@types/geojson@7946.0.10", + "pkg:npm/@types/glob@7.1.3", + "pkg:npm/@types/graceful-fs@4.1.5", + "pkg:npm/@types/hast@2.3.4", + "pkg:npm/@types/istanbul-lib-coverage@2.0.3", + "pkg:npm/@types/istanbul-lib-report@3.0.0", + "pkg:npm/@types/istanbul-reports@3.0.1", + "pkg:npm/@types/jest@27.0.2", + "pkg:npm/@types/json-schema@7.0.11", + "pkg:npm/@types/json-schema@7.0.7", + "pkg:npm/@types/json5@0.0.29", + "pkg:npm/@types/lodash.mergewith@4.6.6", + "pkg:npm/@types/lodash@4.14.178", + "pkg:npm/@types/lodash@4.14.182", + "pkg:npm/@types/mdast@3.0.10", + "pkg:npm/@types/minimatch@3.0.4", + "pkg:npm/@types/minimist@1.2.2", + "pkg:npm/@types/ms@0.7.31", + "pkg:npm/@types/node@14.17.3", + "pkg:npm/@types/node@15.12.2", + "pkg:npm/@types/normalize-package-data@2.4.0", + "pkg:npm/@types/parse-json@4.0.0", + "pkg:npm/@types/prettier@2.4.1", + "pkg:npm/@types/prop-types@15.7.4", + "pkg:npm/@types/prop-types@15.7.5", + "pkg:npm/@types/react-dom@18.0.5", + "pkg:npm/@types/react-syntax-highlighter@15.5.6", + "pkg:npm/@types/react-table@7.7.12", + "pkg:npm/@types/react-transition-group@4.4.5", + "pkg:npm/@types/react@18.0.12", + "pkg:npm/@types/react@18.0.15", + "pkg:npm/@types/scheduler@0.16.2", + "pkg:npm/@types/source-list-map@0.1.2", + "pkg:npm/@types/stack-utils@2.0.1", + "pkg:npm/@types/tapable@1.0.7", + "pkg:npm/@types/testing-library__jest-dom@5.14.1", + "pkg:npm/@types/uglify-js@3.13.0", + "pkg:npm/@types/unist@2.0.6", + "pkg:npm/@types/webpack-sources@2.1.0", + "pkg:npm/@types/webpack@4.41.29", + "pkg:npm/@types/yargs-parser@20.2.1", + "pkg:npm/@types/yargs@16.0.4", + "pkg:npm/@typescript-eslint/eslint-plugin@5.27.1", + "pkg:npm/@typescript-eslint/parser@5.27.1", + "pkg:npm/@typescript-eslint/scope-manager@5.27.1", + "pkg:npm/@typescript-eslint/type-utils@5.27.1", + "pkg:npm/@typescript-eslint/types@5.27.1", + "pkg:npm/@typescript-eslint/typescript-estree@5.27.1", + "pkg:npm/@typescript-eslint/utils@5.27.1", + "pkg:npm/@typescript-eslint/visitor-keys@5.27.1", + "pkg:npm/@visx/curve@2.1.0", + "pkg:npm/@visx/group@2.10.0", + "pkg:npm/@visx/scale@2.2.2", + "pkg:npm/@visx/shape@2.12.2", + "pkg:npm/@webassemblyjs/ast@1.11.1", + "pkg:npm/@webassemblyjs/floating-point-hex-parser@1.11.1", + "pkg:npm/@webassemblyjs/helper-api-error@1.11.1", + "pkg:npm/@webassemblyjs/helper-buffer@1.11.1", + "pkg:npm/@webassemblyjs/helper-numbers@1.11.1", + "pkg:npm/@webassemblyjs/helper-wasm-bytecode@1.11.1", + "pkg:npm/@webassemblyjs/helper-wasm-section@1.11.1", + "pkg:npm/@webassemblyjs/ieee754@1.11.1", + "pkg:npm/@webassemblyjs/leb128@1.11.1", + "pkg:npm/@webassemblyjs/utf8@1.11.1", + "pkg:npm/@webassemblyjs/wasm-edit@1.11.1", + "pkg:npm/@webassemblyjs/wasm-gen@1.11.1", + "pkg:npm/@webassemblyjs/wasm-opt@1.11.1", + "pkg:npm/@webassemblyjs/wasm-parser@1.11.1", + "pkg:npm/@webassemblyjs/wast-printer@1.11.1", + "pkg:npm/@webpack-cli/configtest@1.2.0", + "pkg:npm/@webpack-cli/info@1.5.0", + "pkg:npm/@webpack-cli/serve@1.7.0", + "pkg:npm/@xtuc/ieee754@1.2.0", + "pkg:npm/@xtuc/long@4.2.2", + "pkg:npm/@zag-js/element-size@0.1.0", + "pkg:npm/@zag-js/focus-visible@0.1.0", + "pkg:npm/abab@2.0.5", + "pkg:npm/acorn-globals@6.0.0", + "pkg:npm/acorn-import-assertions@1.8.0", + "pkg:npm/acorn-jsx@5.3.2", + "pkg:npm/acorn-walk@7.2.0", + "pkg:npm/acorn@7.4.1", + "pkg:npm/acorn@8.7.1", + "pkg:npm/agent-base@6.0.2", + "pkg:npm/aggregate-error@3.1.0", + "pkg:npm/ajv-formats@2.1.1", + "pkg:npm/ajv-keywords@3.5.2", + "pkg:npm/ajv-keywords@5.1.0", + "pkg:npm/ajv@6.12.6", + "pkg:npm/ajv@8.11.0", + "pkg:npm/ajv@8.6.0", + "pkg:npm/ansi-escapes@4.3.2", + "pkg:npm/ansi-regex@5.0.1", + "pkg:npm/ansi-styles@3.2.1", + "pkg:npm/ansi-styles@4.3.0", + "pkg:npm/ansi-styles@5.2.0", + "pkg:npm/anymatch@3.1.2", + "pkg:npm/argparse@1.0.10", + "pkg:npm/argparse@2.0.1", + "pkg:npm/aria-hidden@1.2.3", + "pkg:npm/aria-query@4.2.2", + "pkg:npm/aria-query@5.0.0", + "pkg:npm/array-buffer-byte-length@1.0.0", + "pkg:npm/array-includes@3.1.3", + "pkg:npm/array-includes@3.1.5", + "pkg:npm/array-includes@3.1.6", + "pkg:npm/array-union@1.0.2", + "pkg:npm/array-union@2.1.0", + "pkg:npm/array-uniq@1.0.3", + "pkg:npm/array.prototype.flat@1.3.1", + "pkg:npm/array.prototype.flatmap@1.3.0", + "pkg:npm/array.prototype.flatmap@1.3.1", + "pkg:npm/arrify@1.0.1", + "pkg:npm/asap@2.0.6", + "pkg:npm/ast-types-flow@0.0.7", + "pkg:npm/astral-regex@2.0.0", + "pkg:npm/asynckit@0.4.0", + "pkg:npm/atob@2.1.2", + "pkg:npm/available-typed-arrays@1.0.5", + "pkg:npm/axe-core@4.4.2", + "pkg:npm/axios@1.6.1", + "pkg:npm/axobject-query@2.2.0", + "pkg:npm/babel-jest@27.3.1", + "pkg:npm/babel-jest@27.5.1", + "pkg:npm/babel-loader@9.1.2", + "pkg:npm/babel-plugin-dynamic-import-node@2.3.3", + "pkg:npm/babel-plugin-istanbul@6.1.1", + "pkg:npm/babel-plugin-jest-hoist@27.2.0", + "pkg:npm/babel-plugin-jest-hoist@27.5.1", + "pkg:npm/babel-plugin-macros@2.8.0", + "pkg:npm/babel-plugin-polyfill-corejs2@0.2.3", + "pkg:npm/babel-plugin-polyfill-corejs3@0.3.0", + "pkg:npm/babel-plugin-polyfill-regenerator@0.2.3", + "pkg:npm/babel-preset-current-node-syntax@1.0.1", + "pkg:npm/babel-preset-jest@27.2.0", + "pkg:npm/babel-preset-jest@27.5.1", + "pkg:npm/bail@2.0.2", + "pkg:npm/balanced-match@1.0.2", + "pkg:npm/balanced-match@2.0.0", + "pkg:npm/base16@1.0.0", + "pkg:npm/big-integer@1.6.51", + "pkg:npm/big.js@5.2.2", + "pkg:npm/boolbase@1.0.0", + "pkg:npm/bootstrap-3-typeahead@4.0.2", + "pkg:npm/bootstrap@3.4.1", + "pkg:npm/brace-expansion@1.1.11", + "pkg:npm/brace-expansion@2.0.1", + "pkg:npm/braces@3.0.2", + "pkg:npm/broadcast-channel@3.7.0", + "pkg:npm/browser-process-hrtime@1.0.0", + "pkg:npm/browserslist@4.20.4", + "pkg:npm/bser@2.1.1", + "pkg:npm/buffer-from@1.1.2", + "pkg:npm/cacache@15.2.0", + "pkg:npm/call-bind@1.0.2", + "pkg:npm/call-me-maybe@1.0.1", + "pkg:npm/callsites@3.1.0", + "pkg:npm/camelcase-keys@7.0.0", + "pkg:npm/camelcase@5.3.1", + "pkg:npm/camelcase@6.2.0", + "pkg:npm/caniuse-api@3.0.0", + "pkg:npm/caniuse-lite@1.0.30001516", + "pkg:npm/ccount@2.0.1", + "pkg:npm/chakra-react-select@4.0.3", + "pkg:npm/chalk@2.4.2", + "pkg:npm/chalk@3.0.0", + "pkg:npm/chalk@4.1.1", + "pkg:npm/chalk@5.0.1", + "pkg:npm/char-regex@1.0.2", + "pkg:npm/character-entities-legacy@1.1.4", + "pkg:npm/character-entities@1.2.4", + "pkg:npm/character-entities@2.0.2", + "pkg:npm/character-reference-invalid@1.1.4", + "pkg:npm/chownr@2.0.0", + "pkg:npm/chrome-trace-event@1.0.3", + "pkg:npm/ci-info@3.2.0", + "pkg:npm/cjs-module-lexer@1.2.2", + "pkg:npm/classcat@5.0.4", + "pkg:npm/classnames@2.3.1", + "pkg:npm/clean-stack@2.2.0", + "pkg:npm/clean-webpack-plugin@3.0.0", + "pkg:npm/cli@1.0.1", + "pkg:npm/cliui@7.0.4", + "pkg:npm/clone-deep@4.0.1", + "pkg:npm/clsx@1.1.1", + "pkg:npm/co@4.6.0", + "pkg:npm/codemirror@5.61.1", + "pkg:npm/collect-v8-coverage@1.0.1", + "pkg:npm/color-convert@1.9.3", + "pkg:npm/color-convert@2.0.1", + "pkg:npm/color-name@1.1.3", + "pkg:npm/color-name@1.1.4", + "pkg:npm/color-string@1.9.1", + "pkg:npm/color2k@2.0.2", + "pkg:npm/color@4.2.3", + "pkg:npm/colord@2.9.3", + "pkg:npm/colorette@1.2.2", + "pkg:npm/colorette@2.0.19", + "pkg:npm/combined-stream@1.0.8", + "pkg:npm/comma-separated-tokens@1.0.8", + "pkg:npm/comma-separated-tokens@2.0.3", + "pkg:npm/commander@2.20.3", + "pkg:npm/commander@7.2.0", + "pkg:npm/commondir@1.0.1", + "pkg:npm/compute-scroll-into-view@1.0.14", + "pkg:npm/concat-map@0.0.1", + "pkg:npm/confusing-browser-globals@1.0.10", + "pkg:npm/console-browserify@1.1.0", + "pkg:npm/convert-source-map@1.7.0", + "pkg:npm/convert-source-map@1.8.0", + "pkg:npm/copy-to-clipboard@3.3.1", + "pkg:npm/copy-webpack-plugin@6.4.1", + "pkg:npm/core-js-compat@3.19.1", + "pkg:npm/core-js-pure@3.18.0", + "pkg:npm/core-util-is@1.0.2", + "pkg:npm/cosmiconfig@6.0.0", + "pkg:npm/cosmiconfig@8.2.0", + "pkg:npm/cross-fetch@3.1.5", + "pkg:npm/cross-spawn@7.0.3", + "pkg:npm/css-box-model@1.2.1", + "pkg:npm/css-declaration-sorter@6.3.0", + "pkg:npm/css-functions-list@3.1.0", + "pkg:npm/css-loader@5.2.7", + "pkg:npm/css-minimizer-webpack-plugin@4.0.0", + "pkg:npm/css-select@4.3.0", + "pkg:npm/css-tree@1.1.3", + "pkg:npm/css-tree@2.3.1", + "pkg:npm/css-what@6.1.0", + "pkg:npm/css.escape@1.5.1", + "pkg:npm/css@3.0.0", + "pkg:npm/cssesc@3.0.0", + "pkg:npm/cssfontparser@1.2.1", + "pkg:npm/cssnano-preset-default@5.2.11", + "pkg:npm/cssnano-utils@3.1.0", + "pkg:npm/cssnano@5.1.11", + "pkg:npm/csso@4.2.0", + "pkg:npm/cssom@0.3.8", + "pkg:npm/cssom@0.4.4", + "pkg:npm/cssstyle@2.3.0", + "pkg:npm/csstype@3.0.8", + "pkg:npm/csstype@3.1.0", + "pkg:npm/d3-array@1.2.4", + "pkg:npm/d3-array@2.12.1", + "pkg:npm/d3-axis@1.0.12", + "pkg:npm/d3-brush@1.1.6", + "pkg:npm/d3-chord@1.0.6", + "pkg:npm/d3-collection@1.0.7", + "pkg:npm/d3-color@3.1.0", + "pkg:npm/d3-contour@1.3.2", + "pkg:npm/d3-dispatch@1.0.6", + "pkg:npm/d3-dispatch@3.0.1", + "pkg:npm/d3-drag@1.2.5", + "pkg:npm/d3-drag@3.0.0", + "pkg:npm/d3-dsv@1.2.0", + "pkg:npm/d3-ease@1.0.7", + "pkg:npm/d3-ease@3.0.1", + "pkg:npm/d3-fetch@1.2.0", + "pkg:npm/d3-force@1.2.1", + "pkg:npm/d3-format@1.4.5", + "pkg:npm/d3-format@2.0.0", + "pkg:npm/d3-geo@1.12.1", + "pkg:npm/d3-hierarchy@1.1.9", + "pkg:npm/d3-interpolate@1.4.0", + "pkg:npm/d3-interpolate@2.0.1", + "pkg:npm/d3-interpolate@3.0.1", + "pkg:npm/d3-path@1.0.9", + "pkg:npm/d3-path@2.0.0", + "pkg:npm/d3-polygon@1.0.6", + "pkg:npm/d3-quadtree@1.0.7", + "pkg:npm/d3-random@1.1.2", + "pkg:npm/d3-scale-chromatic@1.5.0", + "pkg:npm/d3-scale@2.2.2", + "pkg:npm/d3-scale@3.3.0", + "pkg:npm/d3-selection@1.4.2", + "pkg:npm/d3-selection@3.0.0", + "pkg:npm/d3-shape@1.3.7", + "pkg:npm/d3-shape@2.1.0", + "pkg:npm/d3-time-format@2.3.0", + "pkg:npm/d3-time-format@3.0.0", + "pkg:npm/d3-time@1.1.0", + "pkg:npm/d3-time@2.1.1", + "pkg:npm/d3-timer@1.0.10", + "pkg:npm/d3-timer@3.0.1", + "pkg:npm/d3-tip@0.9.1", + "pkg:npm/d3-transition@1.3.2", + "pkg:npm/d3-transition@3.0.1", + "pkg:npm/d3-voronoi@1.1.4", + "pkg:npm/d3-zoom@1.8.3", + "pkg:npm/d3-zoom@3.0.0", + "pkg:npm/d3@3.5.17", + "pkg:npm/d3@5.16.0", + "pkg:npm/dagre-d3@0.6.4", + "pkg:npm/dagre@0.8.5", + "pkg:npm/damerau-levenshtein@1.0.8", + "pkg:npm/data-urls@2.0.0", + "pkg:npm/datatables.net-bs@1.11.4", + "pkg:npm/datatables.net@1.11.4", + "pkg:npm/date-now@0.1.4", + "pkg:npm/debug@3.2.7", + "pkg:npm/debug@4.3.4", + "pkg:npm/decamelize-keys@1.1.0", + "pkg:npm/decamelize@1.2.0", + "pkg:npm/decamelize@5.0.1", + "pkg:npm/decimal.js@10.3.1", + "pkg:npm/decko@1.2.0", + "pkg:npm/decode-named-character-reference@1.0.2", + "pkg:npm/decode-uri-component@0.2.2", + "pkg:npm/dedent@0.7.0", + "pkg:npm/deep-is@0.1.4", + "pkg:npm/deepmerge@4.2.2", + "pkg:npm/define-properties@1.1.3", + "pkg:npm/define-properties@1.1.4", + "pkg:npm/del@4.1.1", + "pkg:npm/delayed-stream@1.0.0", + "pkg:npm/dequal@2.0.3", + "pkg:npm/detect-newline@3.1.0", + "pkg:npm/detect-node-es@1.1.0", + "pkg:npm/detect-node@2.1.0", + "pkg:npm/diff-sequences@27.0.6", + "pkg:npm/diff-sequences@27.5.1", + "pkg:npm/diff@5.1.0", + "pkg:npm/dir-glob@3.0.1", + "pkg:npm/doctrine@2.1.0", + "pkg:npm/doctrine@3.0.0", + "pkg:npm/dom-accessibility-api@0.5.10", + "pkg:npm/dom-helpers@5.2.1", + "pkg:npm/dom-serializer@0.2.2", + "pkg:npm/dom-serializer@1.3.2", + "pkg:npm/domelementtype@1.3.1", + "pkg:npm/domelementtype@2.2.0", + "pkg:npm/domexception@2.0.1", + "pkg:npm/domhandler@2.3.0", + "pkg:npm/domhandler@4.2.0", + "pkg:npm/domhandler@4.3.1", + "pkg:npm/dompurify@2.2.9", + "pkg:npm/domutils@1.5.1", + "pkg:npm/domutils@2.7.0", + "pkg:npm/domutils@2.8.0", + "pkg:npm/echarts@5.4.2", + "pkg:npm/electron-to-chromium@1.4.156", + "pkg:npm/elkjs@0.7.1", + "pkg:npm/emittery@0.8.1", + "pkg:npm/emoji-regex@8.0.0", + "pkg:npm/emoji-regex@9.2.2", + "pkg:npm/emojis-list@3.0.0", + "pkg:npm/enhanced-resolve@5.12.0", + "pkg:npm/entities@1.0.0", + "pkg:npm/entities@2.2.0", + "pkg:npm/envinfo@7.8.1", + "pkg:npm/eonasdan-bootstrap-datetimepicker@4.17.49", + "pkg:npm/error-ex@1.3.2", + "pkg:npm/es-abstract@1.18.3", + "pkg:npm/es-abstract@1.20.1", + "pkg:npm/es-abstract@1.21.2", + "pkg:npm/es-module-lexer@0.9.3", + "pkg:npm/es-set-tostringtag@2.0.1", + "pkg:npm/es-shim-unscopables@1.0.0", + "pkg:npm/es-to-primitive@1.2.1", + "pkg:npm/es6-promise@3.3.1", + "pkg:npm/escalade@3.1.1", + "pkg:npm/escape-string-regexp@1.0.5", + "pkg:npm/escape-string-regexp@2.0.0", + "pkg:npm/escape-string-regexp@4.0.0", + "pkg:npm/escape-string-regexp@5.0.0", + "pkg:npm/escodegen@2.0.0", + "pkg:npm/eslint-config-airbnb-base@15.0.0", + "pkg:npm/eslint-config-airbnb-typescript@17.0.0", + "pkg:npm/eslint-config-airbnb@19.0.4", + "pkg:npm/eslint-config-prettier@8.6.0", + "pkg:npm/eslint-import-resolver-node@0.3.7", + "pkg:npm/eslint-module-utils@2.7.4", + "pkg:npm/eslint-plugin-es@3.0.1", + "pkg:npm/eslint-plugin-html@6.1.2", + "pkg:npm/eslint-plugin-import@2.27.5", + "pkg:npm/eslint-plugin-jsx-a11y@6.5.1", + "pkg:npm/eslint-plugin-node@11.1.0", + "pkg:npm/eslint-plugin-promise@4.3.1", + "pkg:npm/eslint-plugin-react-hooks@4.6.0", + "pkg:npm/eslint-plugin-react@7.30.0", + "pkg:npm/eslint-plugin-standard@4.1.0", + "pkg:npm/eslint-scope@5.1.1", + "pkg:npm/eslint-scope@7.1.1", + "pkg:npm/eslint-utils@2.1.0", + "pkg:npm/eslint-utils@3.0.0", + "pkg:npm/eslint-visitor-keys@1.3.0", + "pkg:npm/eslint-visitor-keys@2.1.0", + "pkg:npm/eslint-visitor-keys@3.3.0", + "pkg:npm/eslint@8.17.0", + "pkg:npm/espree@9.3.2", + "pkg:npm/esprima@4.0.1", + "pkg:npm/esquery@1.4.0", + "pkg:npm/esrecurse@4.3.0", + "pkg:npm/estraverse@4.3.0", + "pkg:npm/estraverse@5.2.0", + "pkg:npm/estraverse@5.3.0", + "pkg:npm/esutils@2.0.3", + "pkg:npm/eventemitter3@4.0.7", + "pkg:npm/events@3.3.0", + "pkg:npm/execa@5.1.1", + "pkg:npm/exit@0.1.2", + "pkg:npm/expect@27.5.1", + "pkg:npm/extend@3.0.2", + "pkg:npm/fast-deep-equal@3.1.3", + "pkg:npm/fast-glob@3.3.0", + "pkg:npm/fast-json-stable-stringify@2.1.0", + "pkg:npm/fast-levenshtein@2.0.6", + "pkg:npm/fast-safe-stringify@2.0.7", + "pkg:npm/fastest-levenshtein@1.0.16", + "pkg:npm/fastq@1.11.0", + "pkg:npm/fault@1.0.4", + "pkg:npm/fb-watchman@2.0.1", + "pkg:npm/fbemitter@3.0.0", + "pkg:npm/fbjs-css-vars@1.0.2", + "pkg:npm/fbjs@3.0.4", + "pkg:npm/file-entry-cache@6.0.1", + "pkg:npm/file-loader@6.2.0", + "pkg:npm/fill-range@7.0.1", + "pkg:npm/find-cache-dir@3.3.1", + "pkg:npm/find-cache-dir@3.3.2", + "pkg:npm/find-root@1.1.0", + "pkg:npm/find-up@4.1.0", + "pkg:npm/find-up@5.0.0", + "pkg:npm/flat-cache@3.0.4", + "pkg:npm/flatted@3.1.1", + "pkg:npm/flux@4.0.3", + "pkg:npm/focus-lock@0.11.6", + "pkg:npm/follow-redirects@1.15.3", + "pkg:npm/for-each@0.3.3", + "pkg:npm/foreach@2.0.5", + "pkg:npm/form-data@3.0.1", + "pkg:npm/form-data@4.0.0", + "pkg:npm/format@0.2.2", + "pkg:npm/framer-motion@6.3.11", + "pkg:npm/framesync@5.3.0", + "pkg:npm/framesync@6.0.1", + "pkg:npm/fs-minipass@2.1.0", + "pkg:npm/fs.realpath@1.0.0", + "pkg:npm/fsevents@2.3.2", + "pkg:npm/function-bind@1.1.1", + "pkg:npm/function.prototype.name@1.1.5", + "pkg:npm/functional-red-black-tree@1.0.1", + "pkg:npm/functions-have-names@1.2.3", + "pkg:npm/gensync@1.0.0-beta.2", + "pkg:npm/get-caller-file@2.0.5", + "pkg:npm/get-intrinsic@1.1.1", + "pkg:npm/get-intrinsic@1.2.0", + "pkg:npm/get-nonce@1.0.1", + "pkg:npm/get-npm-tarball-url@2.0.2", + "pkg:npm/get-package-type@0.1.0", + "pkg:npm/get-stream@6.0.1", + "pkg:npm/get-symbol-description@1.0.0", + "pkg:npm/glob-parent@5.1.2", + "pkg:npm/glob-parent@6.0.2", + "pkg:npm/glob-to-regexp@0.4.1", + "pkg:npm/glob@7.1.7", + "pkg:npm/glob@7.2.0", + "pkg:npm/global-modules@2.0.0", + "pkg:npm/global-prefix@3.0.0", + "pkg:npm/globals@11.12.0", + "pkg:npm/globals@13.15.0", + "pkg:npm/globalthis@1.0.3", + "pkg:npm/globalyzer@0.1.0", + "pkg:npm/globby@11.1.0", + "pkg:npm/globby@6.1.0", + "pkg:npm/globjoin@0.1.4", + "pkg:npm/globrex@0.1.2", + "pkg:npm/gopd@1.0.1", + "pkg:npm/graceful-fs@4.2.9", + "pkg:npm/graphlib@2.1.8", + "pkg:npm/hard-rejection@2.1.0", + "pkg:npm/has-bigints@1.0.1", + "pkg:npm/has-bigints@1.0.2", + "pkg:npm/has-flag@3.0.0", + "pkg:npm/has-flag@4.0.0", + "pkg:npm/has-property-descriptors@1.0.0", + "pkg:npm/has-proto@1.0.1", + "pkg:npm/has-symbols@1.0.2", + "pkg:npm/has-symbols@1.0.3", + "pkg:npm/has-tostringtag@1.0.0", + "pkg:npm/has@1.0.3", + "pkg:npm/hast-util-parse-selector@2.2.5", + "pkg:npm/hast-util-whitespace@2.0.0", + "pkg:npm/hastscript@6.0.0", + "pkg:npm/hey-listen@1.0.8", + "pkg:npm/highlight.js@10.7.3", + "pkg:npm/history@5.3.0", + "pkg:npm/hoist-non-react-statics@3.3.2", + "pkg:npm/hosted-git-info@4.0.2", + "pkg:npm/html-encoding-sniffer@2.0.1", + "pkg:npm/html-escaper@2.0.2", + "pkg:npm/html-tags@3.3.1", + "pkg:npm/htmlparser2@3.8.3", + "pkg:npm/htmlparser2@6.1.0", + "pkg:npm/http-proxy-agent@4.0.1", + "pkg:npm/http2-client@1.3.3", + "pkg:npm/https-proxy-agent@5.0.0", + "pkg:npm/human-signals@2.1.0", + "pkg:npm/iconv-lite@0.4.24", + "pkg:npm/icss-utils@5.1.0", + "pkg:npm/ignore@5.2.4", + "pkg:npm/import-fresh@3.3.0", + "pkg:npm/import-lazy@4.0.0", + "pkg:npm/import-local@3.0.3", + "pkg:npm/imports-loader@1.2.0", + "pkg:npm/imurmurhash@0.1.4", + "pkg:npm/indent-string@4.0.0", + "pkg:npm/indent-string@5.0.0", + "pkg:npm/infer-owner@1.0.4", + "pkg:npm/inflight@1.0.6", + "pkg:npm/inherits@2.0.4", + "pkg:npm/ini@1.3.8", + "pkg:npm/inline-style-parser@0.1.1", + "pkg:npm/internal-slot@1.0.3", + "pkg:npm/internal-slot@1.0.5", + "pkg:npm/internmap@1.0.1", + "pkg:npm/interpret@2.2.0", + "pkg:npm/invariant@2.2.4", + "pkg:npm/is-alphabetical@1.0.4", + "pkg:npm/is-alphanumerical@1.0.4", + "pkg:npm/is-array-buffer@3.0.2", + "pkg:npm/is-arrayish@0.2.1", + "pkg:npm/is-arrayish@0.3.2", + "pkg:npm/is-bigint@1.0.2", + "pkg:npm/is-boolean-object@1.1.1", + "pkg:npm/is-buffer@2.0.5", + "pkg:npm/is-callable@1.2.3", + "pkg:npm/is-callable@1.2.4", + "pkg:npm/is-callable@1.2.7", + "pkg:npm/is-core-module@2.11.0", + "pkg:npm/is-core-module@2.12.1", + "pkg:npm/is-core-module@2.4.0", + "pkg:npm/is-core-module@2.9.0", + "pkg:npm/is-date-object@1.0.4", + "pkg:npm/is-decimal@1.0.4", + "pkg:npm/is-extglob@2.1.1", + "pkg:npm/is-fullwidth-code-point@3.0.0", + "pkg:npm/is-generator-fn@2.1.0", + "pkg:npm/is-glob@4.0.1", + "pkg:npm/is-glob@4.0.3", + "pkg:npm/is-hexadecimal@1.0.4", + "pkg:npm/is-negative-zero@2.0.1", + "pkg:npm/is-negative-zero@2.0.2", + "pkg:npm/is-number-object@1.0.5", + "pkg:npm/is-number@7.0.0", + "pkg:npm/is-path-cwd@2.2.0", + "pkg:npm/is-path-in-cwd@2.1.0", + "pkg:npm/is-path-inside@2.1.0", + "pkg:npm/is-plain-obj@1.1.0", + "pkg:npm/is-plain-obj@4.1.0", + "pkg:npm/is-plain-object@2.0.4", + "pkg:npm/is-plain-object@5.0.0", + "pkg:npm/is-potential-custom-element-name@1.0.1", + "pkg:npm/is-regex@1.1.3", + "pkg:npm/is-regex@1.1.4", + "pkg:npm/is-shared-array-buffer@1.0.2", + "pkg:npm/is-stream@2.0.1", + "pkg:npm/is-string@1.0.6", + "pkg:npm/is-string@1.0.7", + "pkg:npm/is-symbol@1.0.4", + "pkg:npm/is-typed-array@1.1.10", + "pkg:npm/is-typedarray@1.0.0", + "pkg:npm/is-weakref@1.0.2", + "pkg:npm/isarray@0.0.1", + "pkg:npm/isexe@2.0.0", + "pkg:npm/isobject@3.0.1", + "pkg:npm/istanbul-lib-coverage@3.2.0", + "pkg:npm/istanbul-lib-instrument@5.1.0", + "pkg:npm/istanbul-lib-report@3.0.0", + "pkg:npm/istanbul-lib-source-maps@4.0.1", + "pkg:npm/istanbul-reports@3.1.4", + "pkg:npm/jest-canvas-mock@2.5.1", + "pkg:npm/jest-changed-files@27.5.1", + "pkg:npm/jest-circus@27.5.1", + "pkg:npm/jest-cli@27.5.1", + "pkg:npm/jest-config@27.5.1", + "pkg:npm/jest-diff@27.3.1", + "pkg:npm/jest-diff@27.5.1", + "pkg:npm/jest-docblock@27.5.1", + "pkg:npm/jest-each@27.5.1", + "pkg:npm/jest-environment-jsdom@27.5.1", + "pkg:npm/jest-environment-node@27.5.1", + "pkg:npm/jest-get-type@27.3.1", + "pkg:npm/jest-get-type@27.5.1", + "pkg:npm/jest-haste-map@27.3.1", + "pkg:npm/jest-haste-map@27.5.1", + "pkg:npm/jest-jasmine2@27.5.1", + "pkg:npm/jest-leak-detector@27.5.1", + "pkg:npm/jest-matcher-utils@27.5.1", + "pkg:npm/jest-message-util@27.5.1", + "pkg:npm/jest-mock@27.5.1", + "pkg:npm/jest-pnp-resolver@1.2.2", + "pkg:npm/jest-regex-util@27.0.6", + "pkg:npm/jest-regex-util@27.5.1", + "pkg:npm/jest-resolve-dependencies@27.5.1", + "pkg:npm/jest-resolve@27.5.1", + "pkg:npm/jest-runner@27.5.1", + "pkg:npm/jest-runtime@27.5.1", + "pkg:npm/jest-serializer@27.0.6", + "pkg:npm/jest-serializer@27.5.1", + "pkg:npm/jest-snapshot@27.5.1", + "pkg:npm/jest-util@27.3.1", + "pkg:npm/jest-util@27.5.1", + "pkg:npm/jest-validate@27.5.1", + "pkg:npm/jest-watcher@27.5.1", + "pkg:npm/jest-worker@26.6.2", + "pkg:npm/jest-worker@27.3.1", + "pkg:npm/jest-worker@27.5.1", + "pkg:npm/jest@27.3.1", + "pkg:npm/jquery@3.6.0", + "pkg:npm/js-levenshtein@1.1.6", + "pkg:npm/js-sha3@0.8.0", + "pkg:npm/js-tokens@4.0.0", + "pkg:npm/js-yaml@3.14.1", + "pkg:npm/js-yaml@4.1.0", + "pkg:npm/jsdom@16.7.0", + "pkg:npm/jsesc@0.5.0", + "pkg:npm/jsesc@2.5.2", + "pkg:npm/jshint@2.13.4", + "pkg:npm/json-parse-even-better-errors@2.3.1", + "pkg:npm/json-pointer@0.6.2", + "pkg:npm/json-schema-traverse@0.4.1", + "pkg:npm/json-schema-traverse@1.0.0", + "pkg:npm/json-stable-stringify-without-jsonify@1.0.1", + "pkg:npm/json-stringify-safe@5.0.1", + "pkg:npm/json5@1.0.2", + "pkg:npm/json5@2.2.1", + "pkg:npm/jsx-ast-utils@3.2.1", + "pkg:npm/jsx-ast-utils@3.3.0", + "pkg:npm/kind-of@6.0.3", + "pkg:npm/kleur@3.0.3", + "pkg:npm/kleur@4.1.5", + "pkg:npm/known-css-properties@0.27.0", + "pkg:npm/language-subtag-registry@0.3.21", + "pkg:npm/language-tags@1.0.5", + "pkg:npm/leven@3.1.0", + "pkg:npm/levn@0.3.0", + "pkg:npm/levn@0.4.1", + "pkg:npm/lilconfig@2.0.5", + "pkg:npm/lines-and-columns@1.1.6", + "pkg:npm/loader-runner@4.3.0", + "pkg:npm/loader-utils@2.0.4", + "pkg:npm/locate-path@5.0.0", + "pkg:npm/locate-path@6.0.0", + "pkg:npm/lodash.curry@4.1.1", + "pkg:npm/lodash.debounce@4.0.8", + "pkg:npm/lodash.difference@4.5.0", + "pkg:npm/lodash.flow@3.5.0", + "pkg:npm/lodash.isequal@4.5.0", + "pkg:npm/lodash.memoize@4.1.2", + "pkg:npm/lodash.merge@4.6.2", + "pkg:npm/lodash.mergewith@4.6.2", + "pkg:npm/lodash.set@4.3.2", + "pkg:npm/lodash.truncate@4.4.2", + "pkg:npm/lodash.uniq@4.5.0", + "pkg:npm/lodash@4.17.21", + "pkg:npm/longest-streak@3.1.0", + "pkg:npm/loose-envify@1.4.0", + "pkg:npm/lowlight@1.20.0", + "pkg:npm/lru-cache@6.0.0", + "pkg:npm/lunr@2.3.9", + "pkg:npm/lz-string@1.4.4", + "pkg:npm/make-dir@3.1.0", + "pkg:npm/makeerror@1.0.12", + "pkg:npm/map-obj@1.0.1", + "pkg:npm/map-obj@4.3.0", + "pkg:npm/mark.js@8.11.1", + "pkg:npm/markdown-table@3.0.3", + "pkg:npm/marked@4.0.17", + "pkg:npm/match-sorter@6.3.1", + "pkg:npm/mathml-tag-names@2.1.3", + "pkg:npm/mdast-util-definitions@5.1.1", + "pkg:npm/mdast-util-find-and-replace@2.2.1", + "pkg:npm/mdast-util-from-markdown@1.2.0", + "pkg:npm/mdast-util-gfm-autolink-literal@1.0.2", + "pkg:npm/mdast-util-gfm-footnote@1.0.1", + "pkg:npm/mdast-util-gfm-strikethrough@1.0.2", + "pkg:npm/mdast-util-gfm-table@1.0.6", + "pkg:npm/mdast-util-gfm-task-list-item@1.0.1", + "pkg:npm/mdast-util-gfm@2.0.1", + "pkg:npm/mdast-util-to-hast@12.2.4", + "pkg:npm/mdast-util-to-markdown@1.3.0", + "pkg:npm/mdast-util-to-string@3.1.0", + "pkg:npm/mdn-data@2.0.14", + "pkg:npm/mdn-data@2.0.30", + "pkg:npm/memoize-one@5.2.1", + "pkg:npm/meow@10.1.5", + "pkg:npm/merge-stream@2.0.0", + "pkg:npm/merge2@1.4.1", + "pkg:npm/micromark-core-commonmark@1.0.6", + "pkg:npm/micromark-extension-gfm-autolink-literal@1.0.3", + "pkg:npm/micromark-extension-gfm-footnote@1.0.4", + "pkg:npm/micromark-extension-gfm-strikethrough@1.0.4", + "pkg:npm/micromark-extension-gfm-table@1.0.5", + "pkg:npm/micromark-extension-gfm-tagfilter@1.0.1", + "pkg:npm/micromark-extension-gfm-task-list-item@1.0.3", + "pkg:npm/micromark-extension-gfm@2.0.1", + "pkg:npm/micromark-factory-destination@1.0.0", + "pkg:npm/micromark-factory-label@1.0.2", + "pkg:npm/micromark-factory-space@1.0.0", + "pkg:npm/micromark-factory-title@1.0.2", + "pkg:npm/micromark-factory-whitespace@1.0.0", + "pkg:npm/micromark-util-character@1.1.0", + "pkg:npm/micromark-util-chunked@1.0.0", + "pkg:npm/micromark-util-classify-character@1.0.0", + "pkg:npm/micromark-util-combine-extensions@1.0.0", + "pkg:npm/micromark-util-decode-numeric-character-reference@1.0.0", + "pkg:npm/micromark-util-decode-string@1.0.2", + "pkg:npm/micromark-util-encode@1.0.1", + "pkg:npm/micromark-util-html-tag-name@1.1.0", + "pkg:npm/micromark-util-normalize-identifier@1.0.0", + "pkg:npm/micromark-util-resolve-all@1.0.0", + "pkg:npm/micromark-util-sanitize-uri@1.1.0", + "pkg:npm/micromark-util-subtokenize@1.0.2", + "pkg:npm/micromark-util-symbol@1.0.1", + "pkg:npm/micromark-util-types@1.0.2", + "pkg:npm/micromark@3.1.0", + "pkg:npm/micromatch@4.0.5", + "pkg:npm/microseconds@0.2.0", + "pkg:npm/mime-db@1.52.0", + "pkg:npm/mime-types@2.1.35", + "pkg:npm/mime@3.0.0", + "pkg:npm/mimic-fn@2.1.0", + "pkg:npm/min-indent@1.0.1", + "pkg:npm/mini-css-extract-plugin@1.6.2", + "pkg:npm/minimatch@3.0.8", + "pkg:npm/minimatch@3.1.2", + "pkg:npm/minimatch@5.1.0", + "pkg:npm/minimist-options@4.1.0", + "pkg:npm/minimist@1.2.7", + "pkg:npm/minipass-collect@1.0.2", + "pkg:npm/minipass-flush@1.0.5", + "pkg:npm/minipass-pipeline@1.2.4", + "pkg:npm/minipass@3.1.3", + "pkg:npm/minizlib@2.1.2", + "pkg:npm/mkdirp@1.0.4", + "pkg:npm/mobx-react-lite@3.2.0", + "pkg:npm/mobx-react@7.2.0", + "pkg:npm/moment-locales-webpack-plugin@1.2.0", + "pkg:npm/moment-timezone@0.4.1", + "pkg:npm/moment-timezone@0.5.43", + "pkg:npm/moment@2.29.4", + "pkg:npm/moo-color@1.0.3", + "pkg:npm/mri@1.2.0", + "pkg:npm/ms@2.1.2", + "pkg:npm/ms@2.1.3", + "pkg:npm/nano-time@1.0.0", + "pkg:npm/nanoid@3.3.6", + "pkg:npm/natural-compare@1.4.0", + "pkg:npm/needle@2.9.1", + "pkg:npm/neo-async@2.6.2", + "pkg:npm/nock@13.2.4", + "pkg:npm/node-fetch-h2@2.3.0", + "pkg:npm/node-fetch@2.6.7", + "pkg:npm/node-int64@0.4.0", + "pkg:npm/node-modules-regexp@1.0.0", + "pkg:npm/node-readfiles@0.2.0", + "pkg:npm/node-releases@2.0.5", + "pkg:npm/normalize-package-data@3.0.3", + "pkg:npm/normalize-path@3.0.0", + "pkg:npm/normalize-registry-url@1.0.0", + "pkg:npm/normalize-url@6.1.0", + "pkg:npm/npm-run-path@4.0.1", + "pkg:npm/nth-check@2.1.1", + "pkg:npm/nvd3@1.8.6", + "pkg:npm/nwsapi@2.2.0", + "pkg:npm/oas-kit-common@1.0.8", + "pkg:npm/oas-linter@3.2.2", + "pkg:npm/oas-resolver@2.5.5", + "pkg:npm/oas-schema-walker@1.1.5", + "pkg:npm/oas-validator@5.0.6", + "pkg:npm/object-assign@4.1.1", + "pkg:npm/object-inspect@1.10.3", + "pkg:npm/object-inspect@1.11.0", + "pkg:npm/object-inspect@1.12.2", + "pkg:npm/object-inspect@1.12.3", + "pkg:npm/object-keys@1.1.1", + "pkg:npm/object.assign@4.1.2", + "pkg:npm/object.assign@4.1.4", + "pkg:npm/object.entries@1.1.5", + "pkg:npm/object.fromentries@2.0.5", + "pkg:npm/object.hasown@1.1.1", + "pkg:npm/object.values@1.1.5", + "pkg:npm/object.values@1.1.6", + "pkg:npm/oblivious-set@1.0.0", + "pkg:npm/once@1.4.0", + "pkg:npm/onetime@5.1.2", + "pkg:npm/openapi-sampler@1.3.0", + "pkg:npm/openapi-typescript@5.4.1", + "pkg:npm/optionator@0.8.3", + "pkg:npm/optionator@0.9.1", + "pkg:npm/p-limit@2.3.0", + "pkg:npm/p-limit@3.1.0", + "pkg:npm/p-locate@4.1.0", + "pkg:npm/p-locate@5.0.0", + "pkg:npm/p-map@2.1.0", + "pkg:npm/p-map@4.0.0", + "pkg:npm/p-try@2.2.0", + "pkg:npm/parent-module@1.0.1", + "pkg:npm/parse-entities@2.0.0", + "pkg:npm/parse-json@5.2.0", + "pkg:npm/parse5@6.0.1", + "pkg:npm/path-browserify@1.0.1", + "pkg:npm/path-exists@4.0.0", + "pkg:npm/path-is-absolute@1.0.1", + "pkg:npm/path-is-inside@1.0.2", + "pkg:npm/path-key@3.1.1", + "pkg:npm/path-parse@1.0.7", + "pkg:npm/path-type@4.0.0", + "pkg:npm/perfect-scrollbar@1.5.1", + "pkg:npm/picocolors@1.0.0", + "pkg:npm/picomatch@2.3.0", + "pkg:npm/picomatch@2.3.1", + "pkg:npm/pify@2.3.0", + "pkg:npm/pify@4.0.1", + "pkg:npm/pinkie-promise@2.0.1", + "pkg:npm/pinkie@2.0.4", + "pkg:npm/pirates@4.0.1", + "pkg:npm/pirates@4.0.5", + "pkg:npm/pkg-dir@4.2.0", + "pkg:npm/pluralize@8.0.0", + "pkg:npm/polished@4.1.3", + "pkg:npm/popmotion@11.0.3", + "pkg:npm/postcss-calc@8.2.4", + "pkg:npm/postcss-colormin@5.3.0", + "pkg:npm/postcss-convert-values@5.1.2", + "pkg:npm/postcss-discard-comments@5.1.2", + "pkg:npm/postcss-discard-duplicates@5.1.0", + "pkg:npm/postcss-discard-empty@5.1.1", + "pkg:npm/postcss-discard-overridden@5.1.0", + "pkg:npm/postcss-merge-longhand@5.1.5", + "pkg:npm/postcss-merge-rules@5.1.2", + "pkg:npm/postcss-minify-font-values@5.1.0", + "pkg:npm/postcss-minify-gradients@5.1.1", + "pkg:npm/postcss-minify-params@5.1.3", + "pkg:npm/postcss-minify-selectors@5.2.1", + "pkg:npm/postcss-modules-extract-imports@3.0.0", + "pkg:npm/postcss-modules-local-by-default@4.0.0", + "pkg:npm/postcss-modules-scope@3.0.0", + "pkg:npm/postcss-modules-values@4.0.0", + "pkg:npm/postcss-normalize-charset@5.1.0", + "pkg:npm/postcss-normalize-display-values@5.1.0", + "pkg:npm/postcss-normalize-positions@5.1.0", + "pkg:npm/postcss-normalize-repeat-style@5.1.0", + "pkg:npm/postcss-normalize-string@5.1.0", + "pkg:npm/postcss-normalize-timing-functions@5.1.0", + "pkg:npm/postcss-normalize-unicode@5.1.0", + "pkg:npm/postcss-normalize-url@5.1.0", + "pkg:npm/postcss-normalize-whitespace@5.1.1", + "pkg:npm/postcss-ordered-values@5.1.2", + "pkg:npm/postcss-reduce-initial@5.1.0", + "pkg:npm/postcss-reduce-transforms@5.1.0", + "pkg:npm/postcss-resolve-nested-selector@0.1.1", + "pkg:npm/postcss-safe-parser@6.0.0", + "pkg:npm/postcss-selector-parser@6.0.13", + "pkg:npm/postcss-svgo@5.1.0", + "pkg:npm/postcss-unique-selectors@5.1.1", + "pkg:npm/postcss-value-parser@4.2.0", + "pkg:npm/postcss@8.4.31", + "pkg:npm/prelude-ls@1.1.2", + "pkg:npm/prelude-ls@1.2.1", + "pkg:npm/prettier@2.7.1", + "pkg:npm/prettier@2.8.4", + "pkg:npm/pretty-format@27.3.1", + "pkg:npm/pretty-format@27.5.1", + "pkg:npm/prismjs@1.27.0", + "pkg:npm/prismjs@1.28.0", + "pkg:npm/promise-inflight@1.0.1", + "pkg:npm/promise@7.3.1", + "pkg:npm/prompts@2.4.2", + "pkg:npm/prop-types@15.7.2", + "pkg:npm/prop-types@15.8.1", + "pkg:npm/propagate@2.0.1", + "pkg:npm/property-information@5.6.0", + "pkg:npm/property-information@6.2.0", + "pkg:npm/proxy-from-env@1.1.0", + "pkg:npm/psl@1.8.0", + "pkg:npm/punycode@2.1.1", + "pkg:npm/pure-color@1.3.0", + "pkg:npm/querystringify@2.2.0", + "pkg:npm/queue-microtask@1.2.3", + "pkg:npm/quick-lru@5.1.1", + "pkg:npm/randombytes@2.1.0", + "pkg:npm/react-base16-styling@0.6.0", + "pkg:npm/react-clientside-effect@1.2.6", + "pkg:npm/react-dom@18.1.0", + "pkg:npm/react-fast-compare@3.2.0", + "pkg:npm/react-focus-lock@2.9.4", + "pkg:npm/react-icons@4.9.0", + "pkg:npm/react-is@16.13.1", + "pkg:npm/react-is@17.0.2", + "pkg:npm/react-is@18.2.0", + "pkg:npm/react-json-view@1.21.3", + "pkg:npm/react-lifecycles-compat@3.0.4", + "pkg:npm/react-markdown@8.0.4", + "pkg:npm/react-query@3.39.1", + "pkg:npm/react-remove-scroll-bar@2.3.3", + "pkg:npm/react-remove-scroll@2.5.5", + "pkg:npm/react-router-dom@6.3.0", + "pkg:npm/react-router@6.3.0", + "pkg:npm/react-select@5.3.2", + "pkg:npm/react-style-singleton@2.2.1", + "pkg:npm/react-syntax-highlighter@15.5.0", + "pkg:npm/react-table@7.8.0", + "pkg:npm/react-tabs@3.2.2", + "pkg:npm/react-textarea-autosize@8.3.4", + "pkg:npm/react-transition-group@4.4.2", + "pkg:npm/react@18.1.0", + "pkg:npm/reactflow@11.7.4", + "pkg:npm/read-pkg-up@8.0.0", + "pkg:npm/read-pkg@6.0.0", + "pkg:npm/readable-stream@1.1.13", + "pkg:npm/rechoir@0.7.1", + "pkg:npm/redent@3.0.0", + "pkg:npm/redent@4.0.0", + "pkg:npm/redoc@2.0.0-rc.72", + "pkg:npm/refractor@3.6.0", + "pkg:npm/reftools@1.1.8", + "pkg:npm/regenerate-unicode-properties@9.0.0", + "pkg:npm/regenerate@1.4.2", + "pkg:npm/regenerator-runtime@0.13.11", + "pkg:npm/regenerator-runtime@0.13.9", + "pkg:npm/regenerator-transform@0.14.5", + "pkg:npm/regexp.prototype.flags@1.4.3", + "pkg:npm/regexpp@3.2.0", + "pkg:npm/regexpu-core@4.8.0", + "pkg:npm/regjsgen@0.5.2", + "pkg:npm/regjsparser@0.7.0", + "pkg:npm/remark-gfm@3.0.1", + "pkg:npm/remark-parse@10.0.1", + "pkg:npm/remark-rehype@10.1.0", + "pkg:npm/remove-accents@0.4.2", + "pkg:npm/require-directory@2.1.1", + "pkg:npm/require-from-string@2.0.2", + "pkg:npm/requires-port@1.0.0", + "pkg:npm/resolve-cwd@3.0.0", + "pkg:npm/resolve-from@4.0.0", + "pkg:npm/resolve-from@5.0.0", + "pkg:npm/resolve.exports@1.1.0", + "pkg:npm/resolve@1.20.0", + "pkg:npm/resolve@1.22.0", + "pkg:npm/resolve@1.22.2", + "pkg:npm/resolve@2.0.0-next.3", + "pkg:npm/reusify@1.0.4", + "pkg:npm/rimraf@2.7.1", + "pkg:npm/rimraf@3.0.2", + "pkg:npm/run-parallel@1.2.0", + "pkg:npm/rw@1.3.3", + "pkg:npm/sade@1.8.1", + "pkg:npm/safe-buffer@5.1.2", + "pkg:npm/safe-buffer@5.2.1", + "pkg:npm/safe-regex-test@1.0.0", + "pkg:npm/safer-buffer@2.1.2", + "pkg:npm/sax@1.2.4", + "pkg:npm/saxes@5.0.1", + "pkg:npm/scheduler@0.22.0", + "pkg:npm/schema-utils@2.7.1", + "pkg:npm/schema-utils@3.1.1", + "pkg:npm/schema-utils@4.0.0", + "pkg:npm/semver@6.3.1", + "pkg:npm/semver@7.0.0", + "pkg:npm/semver@7.5.4", + "pkg:npm/serialize-javascript@5.0.1", + "pkg:npm/serialize-javascript@6.0.0", + "pkg:npm/setimmediate@1.0.5", + "pkg:npm/shallow-clone@3.0.1", + "pkg:npm/shebang-command@2.0.0", + "pkg:npm/shebang-regex@3.0.0", + "pkg:npm/should-equal@2.0.0", + "pkg:npm/should-format@3.0.3", + "pkg:npm/should-type-adaptors@1.1.0", + "pkg:npm/should-type@1.4.0", + "pkg:npm/should-util@1.0.1", + "pkg:npm/should@13.2.3", + "pkg:npm/side-channel@1.0.4", + "pkg:npm/signal-exit@3.0.3", + "pkg:npm/signal-exit@3.0.5", + "pkg:npm/signal-exit@4.0.2", + "pkg:npm/simple-swizzle@0.2.2", + "pkg:npm/sisteransi@1.0.5", + "pkg:npm/slash@3.0.0", + "pkg:npm/slice-ansi@4.0.0", + "pkg:npm/slugify@1.4.7", + "pkg:npm/source-list-map@2.0.1", + "pkg:npm/source-map-js@1.0.2", + "pkg:npm/source-map-resolve@0.6.0", + "pkg:npm/source-map-support@0.5.21", + "pkg:npm/source-map@0.5.7", + "pkg:npm/source-map@0.6.1", + "pkg:npm/source-map@0.7.3", + "pkg:npm/space-separated-tokens@1.1.5", + "pkg:npm/space-separated-tokens@2.0.2", + "pkg:npm/spdx-correct@3.1.1", + "pkg:npm/spdx-exceptions@2.3.0", + "pkg:npm/spdx-expression-parse@3.0.1", + "pkg:npm/spdx-expression-validate@2.0.0", + "pkg:npm/spdx-license-ids@3.0.9", + "pkg:npm/sprintf-js@1.0.3", + "pkg:npm/ssri@8.0.1", + "pkg:npm/stable@0.1.8", + "pkg:npm/stack-utils@2.0.5", + "pkg:npm/stickyfill@1.1.1", + "pkg:npm/string-length@4.0.2", + "pkg:npm/string-width@4.2.3", + "pkg:npm/string.prototype.matchall@4.0.7", + "pkg:npm/string.prototype.trim@1.2.7", + "pkg:npm/string.prototype.trimend@1.0.4", + "pkg:npm/string.prototype.trimend@1.0.5", + "pkg:npm/string.prototype.trimend@1.0.6", + "pkg:npm/string.prototype.trimstart@1.0.4", + "pkg:npm/string.prototype.trimstart@1.0.5", + "pkg:npm/string.prototype.trimstart@1.0.6", + "pkg:npm/string_decoder@0.10.31", + "pkg:npm/strip-ansi@6.0.1", + "pkg:npm/strip-bom@3.0.0", + "pkg:npm/strip-bom@4.0.0", + "pkg:npm/strip-comments@2.0.1", + "pkg:npm/strip-final-newline@2.0.0", + "pkg:npm/strip-indent@3.0.0", + "pkg:npm/strip-indent@4.0.0", + "pkg:npm/strip-json-comments@1.0.4", + "pkg:npm/strip-json-comments@3.1.1", + "pkg:npm/style-loader@1.3.0", + "pkg:npm/style-loader@3.3.1", + "pkg:npm/style-search@0.1.0", + "pkg:npm/style-to-object@0.3.0", + "pkg:npm/style-value-types@5.0.0", + "pkg:npm/stylehacks@5.1.0", + "pkg:npm/stylelint-config-prettier@9.0.5", + "pkg:npm/stylelint-config-recommended@3.0.0", + "pkg:npm/stylelint-config-standard@20.0.0", + "pkg:npm/stylelint@15.10.1", + "pkg:npm/stylis@4.0.10", + "pkg:npm/stylis@4.0.13", + "pkg:npm/supports-color@5.5.0", + "pkg:npm/supports-color@7.2.0", + "pkg:npm/supports-color@8.1.1", + "pkg:npm/supports-hyperlinks@2.2.0", + "pkg:npm/supports-hyperlinks@3.0.0", + "pkg:npm/supports-preserve-symlinks-flag@1.0.0", + "pkg:npm/svg-tags@1.0.0", + "pkg:npm/svgo@2.8.0", + "pkg:npm/swagger-ui-dist@4.1.3", + "pkg:npm/swagger2openapi@7.0.6", + "pkg:npm/symbol-tree@3.2.4", + "pkg:npm/table@6.8.1", + "pkg:npm/tapable@2.2.1", + "pkg:npm/tar@6.1.11", + "pkg:npm/terminal-link@2.1.1", + "pkg:npm/terser-webpack-plugin@4.2.3", + "pkg:npm/terser-webpack-plugin@5.3.3", + "pkg:npm/terser@5.14.2", + "pkg:npm/test-exclude@6.0.0", + "pkg:npm/text-table@0.2.0", + "pkg:npm/throat@6.0.1", + "pkg:npm/tiny-glob@0.2.9", + "pkg:npm/tiny-invariant@1.2.0", + "pkg:npm/tmpl@1.0.5", + "pkg:npm/to-fast-properties@2.0.0", + "pkg:npm/to-regex-range@5.0.1", + "pkg:npm/toggle-selection@1.0.6", + "pkg:npm/tough-cookie@4.1.3", + "pkg:npm/tr46@0.0.3", + "pkg:npm/tr46@2.1.0", + "pkg:npm/trim-lines@3.0.1", + "pkg:npm/trim-newlines@4.1.1", + "pkg:npm/trough@2.1.0", + "pkg:npm/tsconfig-paths@3.14.2", + "pkg:npm/tslib@1.14.1", + "pkg:npm/tslib@2.3.0", + "pkg:npm/tslib@2.3.1", + "pkg:npm/tslib@2.4.0", + "pkg:npm/tsutils@3.21.0", + "pkg:npm/type-check@0.3.2", + "pkg:npm/type-check@0.4.0", + "pkg:npm/type-detect@4.0.8", + "pkg:npm/type-fest@0.20.2", + "pkg:npm/type-fest@0.21.3", + "pkg:npm/type-fest@1.4.0", + "pkg:npm/type-fest@2.17.0", + "pkg:npm/typed-array-length@1.0.4", + "pkg:npm/typedarray-to-buffer@3.1.5", + "pkg:npm/typescript@4.7.3", + "pkg:npm/ua-parser-js@0.7.33", + "pkg:npm/unbox-primitive@1.0.1", + "pkg:npm/unbox-primitive@1.0.2", + "pkg:npm/undici@5.26.3", + "pkg:npm/unicode-canonical-property-names-ecmascript@2.0.0", + "pkg:npm/unicode-match-property-ecmascript@2.0.0", + "pkg:npm/unicode-match-property-value-ecmascript@2.0.0", + "pkg:npm/unicode-property-aliases-ecmascript@2.0.0", + "pkg:npm/unified@10.1.2", + "pkg:npm/unique-filename@1.1.1", + "pkg:npm/unique-slug@2.0.2", + "pkg:npm/unist-builder@3.0.0", + "pkg:npm/unist-util-generated@2.0.0", + "pkg:npm/unist-util-is@5.1.1", + "pkg:npm/unist-util-position@4.0.3", + "pkg:npm/unist-util-stringify-position@3.0.2", + "pkg:npm/unist-util-visit-parents@5.1.1", + "pkg:npm/unist-util-visit@4.1.1", + "pkg:npm/universalify@0.2.0", + "pkg:npm/unload@2.2.0", + "pkg:npm/uri-js@4.4.1", + "pkg:npm/url-loader@4.1.0", + "pkg:npm/url-parse@1.5.10", + "pkg:npm/url-search-params-polyfill@8.1.1", + "pkg:npm/url-template@2.0.8", + "pkg:npm/use-callback-ref@1.3.0", + "pkg:npm/use-composed-ref@1.3.0", + "pkg:npm/use-isomorphic-layout-effect@1.1.2", + "pkg:npm/use-latest@1.2.1", + "pkg:npm/use-sidecar@1.1.2", + "pkg:npm/use-sync-external-store@1.2.0", + "pkg:npm/util-deprecate@1.0.2", + "pkg:npm/uvu@0.5.6", + "pkg:npm/v8-compile-cache@2.3.0", + "pkg:npm/v8-to-istanbul@8.1.0", + "pkg:npm/validate-npm-package-license@3.0.4", + "pkg:npm/validator@13.9.0", + "pkg:npm/vfile-message@3.1.3", + "pkg:npm/vfile@5.3.6", + "pkg:npm/w3c-hr-time@1.0.2", + "pkg:npm/w3c-xmlserializer@2.0.0", + "pkg:npm/walker@1.0.8", + "pkg:npm/watchpack@2.4.0", + "pkg:npm/web-worker@1.2.0", + "pkg:npm/webidl-conversions@3.0.1", + "pkg:npm/webidl-conversions@5.0.0", + "pkg:npm/webidl-conversions@6.1.0", + "pkg:npm/webpack-cli@4.10.0", + "pkg:npm/webpack-license-plugin@4.2.2", + "pkg:npm/webpack-manifest-plugin@4.1.1", + "pkg:npm/webpack-merge@5.8.0", + "pkg:npm/webpack-sources@1.4.3", + "pkg:npm/webpack-sources@2.3.1", + "pkg:npm/webpack-sources@3.2.3", + "pkg:npm/webpack@5.76.0", + "pkg:npm/whatwg-encoding@1.0.5", + "pkg:npm/whatwg-mimetype@2.3.0", + "pkg:npm/whatwg-url@5.0.0", + "pkg:npm/whatwg-url@8.7.0", + "pkg:npm/which-boxed-primitive@1.0.2", + "pkg:npm/which-typed-array@1.1.9", + "pkg:npm/which@1.3.1", + "pkg:npm/which@2.0.2", + "pkg:npm/wildcard@2.0.0", + "pkg:npm/word-wrap@1.2.4", + "pkg:npm/wrap-ansi@7.0.0", + "pkg:npm/wrappy@1.0.2", + "pkg:npm/write-file-atomic@3.0.3", + "pkg:npm/write-file-atomic@5.0.1", + "pkg:npm/ws@7.5.5", + "pkg:npm/xml-name-validator@3.0.0", + "pkg:npm/xmlchars@2.2.0", + "pkg:npm/xtend@4.0.2", + "pkg:npm/y18n@5.0.8", + "pkg:npm/yallist@4.0.0", + "pkg:npm/yaml-ast-parser@0.0.43", + "pkg:npm/yaml@1.10.2", + "pkg:npm/yargs-parser@20.2.7", + "pkg:npm/yargs-parser@20.2.9", + "pkg:npm/yargs-parser@21.0.1", + "pkg:npm/yargs@16.2.0", + "pkg:npm/yargs@17.0.1", + "pkg:npm/yocto-queue@0.1.0", + "pkg:npm/zrender@5.4.3", + "pkg:npm/zustand@4.3.9", + "pkg:npm/zwitch@2.0.4" + ] + }, + { + "ref": "pkg:pypi/python3.10@latest", + "dependsOn": [] + } + ] +} diff --git a/samples/photon.spdx.json b/samples/photon.spdx.json new file mode 100755 index 0000000..3a988e7 --- /dev/null +++ b/samples/photon.spdx.json @@ -0,0 +1,653 @@ +{ + "SPDXID": "SPDXRef-DOCUMENT", + "spdxVersion": "SPDX-2.2", + "creationInfo": { + "created": "2023-01-12T22:06:03Z", + "creators": ["Tool: tern-b8e13d1780cd3a02204226bba3d0772d95da24a0"], + "licenseListVersion": "3.19" + }, + "name": "Tern report for photon", + "dataLicense": "CC0-1.0", + "comment": "This document was generated by the Tern Project: https://github.com/tern-tools/tern", + "documentNamespace": "https://spdx.org/spdxdocs/tern-report-b8e13d1780cd3a02204226bba3d0772d95da24a0-photon-21d2cd0a-064e-4198-8bf9-99882f2897aa", + "documentDescribes": ["SPDXRef-photon-3.0"], + "packages": [ + { + "name": "photon", + "SPDXID": "SPDXRef-photon-3.0", + "versionInfo": "3.0", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "NOASSERTION", + "copyrightText": "NOASSERTION" + }, + { + "name": "ad1f1c6f4fef6e6208ebc53e701bf9937f4e05dce5f601b20c35d8a0ad7fdeff", + "SPDXID": "SPDXRef-c8a2baeeb2", + "packageFileName": "ad1f1c6f4fef6e6208ebc53e701bf9937f4e05dce5f601b20c35d8a0ad7fdeff", + "downloadLocation": "NONE", + "filesAnalyzed": false, + "checksums": [ + { + "algorithm": "SHA256", + "checksumValue": "c8a2baeeb2639816d78c44738c72246632d712195c634ce53e80fb5cbc0a50c8" + } + ], + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "NOASSERTION", + "copyrightText": "NOASSERTION", + "comment": "Layer 1:\n\tinfo: Layer created by commands: /bin/sh -c #(nop) ADD file:03f8ed1169e4d338a7b5f3f94b3e25379a063f3718bb062533efa2ce61a21d35 in / \n\tinfo: Found 'VMware Photon OS/Linux' in /etc/os-release.\n\tinfo: Retrieved package metadata using tdnf default method. \n\n" + }, + { + "name": "bash", + "SPDXID": "SPDXRef-bash-4.4.18-4.ph3", + "versionInfo": "4.4.18-4.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-92fe666", + "copyrightText": "NONE", + "comment": "bash:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "bzip2-libs", + "SPDXID": "SPDXRef-bzip2-libs-1.0.8-2.ph3", + "versionInfo": "1.0.8-2.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-f266d93", + "copyrightText": "NONE", + "comment": "bzip2-libs:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "ca-certificates", + "SPDXID": "SPDXRef-ca-certificates-20190521-3.ph3", + "versionInfo": "20190521-3.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-e06627e", + "copyrightText": "NONE", + "comment": "ca-certificates:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "ca-certificates-pki", + "SPDXID": "SPDXRef-ca-certificates-pki-20190521-3.ph3", + "versionInfo": "20190521-3.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-e06627e", + "copyrightText": "NONE", + "comment": "ca-certificates-pki:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "curl", + "SPDXID": "SPDXRef-curl-7.86.0-3.ph3", + "versionInfo": "7.86.0-3.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "MIT", + "copyrightText": "NONE", + "comment": "curl:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "curl-libs", + "SPDXID": "SPDXRef-curl-libs-7.86.0-3.ph3", + "versionInfo": "7.86.0-3.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "MIT", + "copyrightText": "NONE", + "comment": "curl-libs:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "e2fsprogs-libs", + "SPDXID": "SPDXRef-e2fsprogs-libs-1.45.5-3.ph3", + "versionInfo": "1.45.5-3.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-1e11d9a", + "copyrightText": "NONE", + "comment": "e2fsprogs-libs:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "elfutils-libelf", + "SPDXID": "SPDXRef-elfutils-libelf-0.176-1.ph3", + "versionInfo": "0.176-1.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-bba2b1d", + "copyrightText": "NONE", + "comment": "elfutils-libelf:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "expat", + "SPDXID": "SPDXRef-expat-2.2.9-11.ph3", + "versionInfo": "2.2.9-11.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "MIT", + "copyrightText": "NONE", + "comment": "expat:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "expat-libs", + "SPDXID": "SPDXRef-expat-libs-2.2.9-11.ph3", + "versionInfo": "2.2.9-11.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "MIT", + "copyrightText": "NONE", + "comment": "expat-libs:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "filesystem", + "SPDXID": "SPDXRef-filesystem-1.1-4.ph3", + "versionInfo": "1.1-4.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-92fe666", + "copyrightText": "NONE", + "comment": "filesystem:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "glibc", + "SPDXID": "SPDXRef-glibc-2.28-22.ph3", + "versionInfo": "2.28-22.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-0a9356a", + "copyrightText": "NONE", + "comment": "glibc:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "krb5", + "SPDXID": "SPDXRef-krb5-1.17-2.ph3", + "versionInfo": "1.17-2.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "MIT", + "copyrightText": "NONE", + "comment": "krb5:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "libcap", + "SPDXID": "SPDXRef-libcap-2.25-8.ph3", + "versionInfo": "2.25-8.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-1e11d9a", + "copyrightText": "NONE", + "comment": "libcap:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "libdb", + "SPDXID": "SPDXRef-libdb-5.3.28-2.ph3", + "versionInfo": "5.3.28-2.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-88cb263", + "copyrightText": "NONE", + "comment": "libdb:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "libgcc", + "SPDXID": "SPDXRef-libgcc-7.3.0-5.ph3", + "versionInfo": "7.3.0-5.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-1e11d9a", + "copyrightText": "NONE", + "comment": "libgcc:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "libmetalink", + "SPDXID": "SPDXRef-libmetalink-0.1.3-2.ph3", + "versionInfo": "0.1.3-2.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "MIT", + "copyrightText": "NONE", + "comment": "libmetalink:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "libsolv", + "SPDXID": "SPDXRef-libsolv-0.6.35-8.ph3", + "versionInfo": "0.6.35-8.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-f266d93", + "copyrightText": "NONE", + "comment": "libsolv:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "libssh2", + "SPDXID": "SPDXRef-libssh2-1.9.0-2.ph3", + "versionInfo": "1.9.0-2.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-f266d93", + "copyrightText": "NONE", + "comment": "libssh2:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "lua", + "SPDXID": "SPDXRef-lua-5.3.5-4.ph3", + "versionInfo": "5.3.5-4.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "MIT", + "copyrightText": "NONE", + "comment": "lua:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "ncurses-libs", + "SPDXID": "SPDXRef-ncurses-libs-6.1-5.ph3", + "versionInfo": "6.1-5.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "MIT", + "copyrightText": "NONE", + "comment": "ncurses-libs:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "nspr", + "SPDXID": "SPDXRef-nspr-4.21-1.ph3", + "versionInfo": "4.21-1.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-4afa27a", + "copyrightText": "NONE", + "comment": "nspr:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "nss-libs", + "SPDXID": "SPDXRef-nss-libs-3.44-8.ph3", + "versionInfo": "3.44-8.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-4afa27a", + "copyrightText": "NONE", + "comment": "nss-libs:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "openssl", + "SPDXID": "SPDXRef-openssl-1.0.2ze-3.ph3", + "versionInfo": "1.0.2ze-3.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "OpenSSL", + "copyrightText": "NONE", + "comment": "openssl:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "photon-release", + "SPDXID": "SPDXRef-photon-release-3.0-6.ph3", + "versionInfo": "3.0-6.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-f124779", + "copyrightText": "NONE", + "comment": "photon-release:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "photon-repos", + "SPDXID": "SPDXRef-photon-repos-3.0-8.ph3", + "versionInfo": "3.0-8.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-f124779", + "copyrightText": "NONE", + "comment": "photon-repos:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "popt", + "SPDXID": "SPDXRef-popt-1.16-5.ph3", + "versionInfo": "1.16-5.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "MIT", + "copyrightText": "NONE", + "comment": "popt:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "readline", + "SPDXID": "SPDXRef-readline-7.0-2.ph3", + "versionInfo": "7.0-2.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-d953b10", + "copyrightText": "NONE", + "comment": "readline:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "rpm-libs", + "SPDXID": "SPDXRef-rpm-libs-4.14.3-6.ph3", + "versionInfo": "4.14.3-6.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-1e11d9a", + "copyrightText": "NONE", + "comment": "rpm-libs:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "sqlite-libs", + "SPDXID": "SPDXRef-sqlite-libs-3.35.5-1.ph3", + "versionInfo": "3.35.5-1.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-116ca55", + "copyrightText": "NONE", + "comment": "sqlite-libs:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "tdnf", + "SPDXID": "SPDXRef-tdnf-3.1.10-1.ph3", + "versionInfo": "3.1.10-1.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-b5ef29a", + "copyrightText": "NONE", + "comment": "tdnf:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "tdnf-cli-libs", + "SPDXID": "SPDXRef-tdnf-cli-libs-3.1.10-1.ph3", + "versionInfo": "3.1.10-1.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-b5ef29a", + "copyrightText": "NONE", + "comment": "tdnf-cli-libs:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "toybox", + "SPDXID": "SPDXRef-toybox-0.8.6-2.ph3", + "versionInfo": "0.8.6-2.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-f266d93", + "copyrightText": "NONE", + "comment": "toybox:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "xz-libs", + "SPDXID": "SPDXRef-xz-libs-5.2.4-2.ph3", + "versionInfo": "5.2.4-2.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-bd8fbda", + "copyrightText": "NONE", + "comment": "xz-libs:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "zlib", + "SPDXID": "SPDXRef-zlib-1.2.11-3.ph3", + "versionInfo": "1.2.11-3.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "zlib", + "copyrightText": "NONE", + "comment": "zlib:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + }, + { + "name": "zstd-libs", + "SPDXID": "SPDXRef-zstd-libs-1.4.5-2.ph3", + "versionInfo": "1.4.5-2.ph3", + "downloadLocation": "NOASSERTION", + "filesAnalyzed": false, + "licenseConcluded": "NOASSERTION", + "licenseDeclared": "LicenseRef-d935702", + "copyrightText": "NONE", + "comment": "zstd-libs:\n\twarning: No metadata for key: copyright\n\twarning: No metadata for key: download_url\n\twarning: No metadata for key: checksum\n\twarning: No metadata for key: files\n\twarning: No metadata for key: pkg_licenses\n\twarning: No metadata for key: pkg_format\n\twarning: No metadata for key: src_name\n\twarning: No metadata for key: src_version\n" + } + ], + "relationships": [ + { + "spdxElementId": "SPDXRef-DOCUMENT", + "relatedSpdxElement": "SPDXRef-photon-3.0", + "relationshipType": "DESCRIBES" + }, + { + "spdxElementId": "SPDXRef-photon-3.0", + "relatedSpdxElement": "SPDXRef-c8a2baeeb2", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-bash-4.4.18-4.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-bzip2-libs-1.0.8-2.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-ca-certificates-20190521-3.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-ca-certificates-pki-20190521-3.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-curl-7.86.0-3.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-curl-libs-7.86.0-3.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-e2fsprogs-libs-1.45.5-3.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-elfutils-libelf-0.176-1.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-expat-2.2.9-11.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-expat-libs-2.2.9-11.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-filesystem-1.1-4.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-glibc-2.28-22.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-krb5-1.17-2.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-libcap-2.25-8.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-libdb-5.3.28-2.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-libgcc-7.3.0-5.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-libmetalink-0.1.3-2.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-libsolv-0.6.35-8.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-libssh2-1.9.0-2.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-lua-5.3.5-4.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-ncurses-libs-6.1-5.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-nspr-4.21-1.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-nss-libs-3.44-8.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-openssl-1.0.2ze-3.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-photon-release-3.0-6.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-photon-repos-3.0-8.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-popt-1.16-5.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-readline-7.0-2.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-rpm-libs-4.14.3-6.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-sqlite-libs-3.35.5-1.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-tdnf-3.1.10-1.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-tdnf-cli-libs-3.1.10-1.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-toybox-0.8.6-2.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-xz-libs-5.2.4-2.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-zlib-1.2.11-3.ph3", + "relationshipType": "CONTAINS" + }, + { + "spdxElementId": "SPDXRef-c8a2baeeb2", + "relatedSpdxElement": "SPDXRef-zstd-libs-1.4.5-2.ph3", + "relationshipType": "CONTAINS" + } + ], + "hasExtractedLicensingInfos": [ + { "extractedText": "BSD and GPLv2", "licenseId": "LicenseRef-d935702" }, + { "extractedText": "MPLv2.0", "licenseId": "LicenseRef-4afa27a" }, + { "extractedText": "GPLv3", "licenseId": "LicenseRef-92fe666" }, + { "extractedText": "GPLv2+", "licenseId": "LicenseRef-1e11d9a" }, + { "extractedText": "BSD", "licenseId": "LicenseRef-f266d93" }, + { "extractedText": "GPLv2+ or LGPLv3+", "licenseId": "LicenseRef-bba2b1d" }, + { "extractedText": "LGPLv2.1,GPLv2", "licenseId": "LicenseRef-b5ef29a" }, + { "extractedText": "LGPLv2+", "licenseId": "LicenseRef-0a9356a" }, + { "extractedText": "Apache License", "licenseId": "LicenseRef-f124779" }, + { "extractedText": "Public Domain", "licenseId": "LicenseRef-116ca55" }, + { "extractedText": "Custom", "licenseId": "LicenseRef-e06627e" }, + { + "extractedText": "GPLv2+ and GPLv3+ and LGPLv2+", + "licenseId": "LicenseRef-bd8fbda" + }, + { "extractedText": "GPLv3+", "licenseId": "LicenseRef-d953b10" }, + { + "extractedText": "BSD and LGPLv2 and Sleepycat", + "licenseId": "LicenseRef-88cb263" + } + ] +} diff --git a/samples/sbomqs-spdx-sbtool.json b/samples/sbomqs-spdx-sbtool.json index 6ef9f78..7679a91 100644 --- a/samples/sbomqs-spdx-sbtool.json +++ b/samples/sbomqs-spdx-sbtool.json @@ -16325,11 +16325,11 @@ "creationInfo": { "created": "2023-05-04T09:27:42Z", "creators": [ - "Organization: Interlynk", + "Organization: Interlynk (support@interlynk.io)", "Tool: Microsoft.SBOMTool-1.0.2" ] }, "documentDescribes": [ "SPDXRef-RootPackage" ] -} \ No newline at end of file +}